/* Reset dan Base/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Optimize logo specifically */
.logo-image {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

:root {
    --primary-gold: #FFD700;
    --dark-gold: #B8860B;
    --light-gold: #FFF8DC;
    --accent-black: #1a1a1a;
    --pure-white: #ffffff;
    --gradient-gold: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    --gradient-dark: linear-gradient(135deg, #2c2c2c, #1a1a1a, #000000);
    --shadow-gold: 0 10px 30px rgba(255, 215, 0, 0.3);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--accent-black);
    overflow-x: hidden;
    background: var(--gradient-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--primary-gold);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: var(--shadow-gold);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    cursor: pointer;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }
}

.nav-logo i {
    font-size: 2rem;
    margin-right: 10px;
    animation: trollGlow 2s ease-in-out infinite alternate;
}

@keyframes trollGlow {
    from { text-shadow: 0 0 10px var(--primary-gold); }
    to { text-shadow: 0 0 20px var(--primary-gold), 0 0 30px var(--primary-gold); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 215, 0, 0.8), rgba(255, 165, 0, 0.8)), url('banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    opacity: 0.7;
    animation: cloudFloat 20s ease-in-out infinite;
}

.cloud1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cloud2 {
    width: 150px;
    height: 60px;
    top: 30%;
    right: 15%;
    animation-delay: -7s;
}

.cloud3 {
    width: 120px;
    height: 50px;
    top: 60%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes cloudFloat {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(-10px) translateY(5px); }
    75% { transform: translateX(15px) translateY(-5px); }
}

.golden-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: raysPulse 4s ease-in-out infinite;
}

@keyframes raysPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Hero Logo */
.hero-logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-image {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    animation: logoFloat 3s ease-in-out infinite;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-10px) scale(1.05); }
    50% { transform: translateY(0) scale(1); }
    75% { transform: translateY(-5px) scale(1.02); }
}

.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.coin {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-gold);
    animation: coinFloat 4s ease-in-out infinite;
    text-shadow: 0 0 10px var(--primary-gold);
}

.coin1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.coin2 {
    top: 20%;
    right: 15%;
    animation-delay: -1.5s;
}

.coin3 {
    bottom: 15%;
    left: 20%;
    animation-delay: -3s;
}

@keyframes coinFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-15px) rotate(270deg); }
}

/* Hero Text */
.hero-text {
    text-align: left;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line1 {
    display: block;
    font-size: 4rem;
    color: var(--primary-gold);
    text-shadow: 3px 3px 0 var(--accent-black);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.title-line2 {
    display: block;
    font-size: 2.5rem;
    color: var(--pure-white);
    text-shadow: 2px 2px 0 var(--accent-black);
}

.title-line3 {
    display: block;
    font-size: 2.5rem;
    color: var(--pure-white);
    text-shadow: 2px 2px 0 var(--accent-black);
}

@keyframes titleGlow {
    from { text-shadow: 3px 3px 0 var(--accent-black), 0 0 20px var(--primary-gold); }
    to { text-shadow: 3px 3px 0 var(--accent-black), 0 0 40px var(--primary-gold), 0 0 60px var(--primary-gold); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-gold);
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--accent-black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--accent-black);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--accent-black);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 var(--accent-black);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--light-gold);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23FFD700" opacity="0.1"/></svg>') repeat;
    animation: starTwinkle 10s linear infinite;
}

@keyframes starTwinkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--pure-white);
    margin-bottom: 30px;
    line-height: 1.8;
}

.story-intro {
    margin-bottom: 40px;
    text-align: center;
}

.story-intro h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.story-intro p {
    font-size: 1.2rem;
    color: var(--pure-white);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.story-timeline {
    position: relative;
    padding-left: 40px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-gold), var(--light-gold));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -8px;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: 3px solid var(--accent-black);
}

.chapter-number {
    font-family: 'Fredoka One', cursive;
    font-size: 0.9rem;
    color: var(--accent-black);
    font-weight: bold;
}

.timeline-content {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
}

.timeline-content h4 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'Fredoka One', cursive;
}

.timeline-content p {
    color: var(--pure-white);
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
}

.about-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* Rotating Logos */
.rotating-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.logo-orbit {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.ytroll-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--gradient-gold);
    padding: 10px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.3);
    animation: centerLogoSpin 4s ease-in-out infinite;
}

@keyframes centerLogoSpin {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(90deg); }
    50% { transform: scale(1.05) rotate(180deg); }
    75% { transform: scale(1.1) rotate(270deg); }
}

.orbiting-logo {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bnb-coin {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f3ba2f, #f0b90b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    color: #000;
    box-shadow: 0 4px 15px rgba(243, 186, 47, 0.4);
    animation: bnbPulse 2s ease-in-out infinite;
}

@keyframes bnbPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.bnb-logo {
    animation: orbitRotate 8s linear infinite;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bnb-logo-2 {
    animation: orbitRotate 8s linear infinite;
    animation-delay: -2.67s;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.bnb-logo-3 {
    animation: orbitRotate 8s linear infinite;
    animation-delay: -5.33s;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes orbitRotate {
    0% { 
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }
    100% { 
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

.crypto-icons {
    position: relative;
    width: 200px;
    height: 200px;
}

.crypto-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-black);
    box-shadow: var(--shadow-gold);
    animation: iconOrbit 8s linear infinite;
}

.crypto-icon.bitcoin {
    animation-delay: 0s;
}

.crypto-icon.ethereum {
    animation-delay: -2s;
}

.crypto-icon.troll {
    animation-delay: -4s;
}

.crypto-icon.doge {
    animation-delay: -6s;
}

@keyframes iconOrbit {
    0% { transform: rotate(0deg) translateX(80px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--gradient-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.meme-card {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1/1;
}

.meme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.meme-card:hover::before {
    opacity: 0.1;
}

.meme-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.meme-image {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.meme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.meme-card:hover .meme-image img {
    transform: scale(1.1);
}

/* Community Section */
.community {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #2c2c2c);
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.community-character {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chatting-troll {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.troll-avatar {
    width: 180px;
    height: 180px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3), 0 0 0 4px rgba(255, 215, 0, 0.1);
    animation: trollChat 4s ease-in-out infinite;
    position: relative;
}

.troll-avatar::before {
    content: '';
    background-image: url('logo.png');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.troll-avatar::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes trollChat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.05) rotate(-2deg); }
    50% { transform: scale(1.1) rotate(0deg); }
    75% { transform: scale(1.05) rotate(2deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.chat-bubbles {
    position: absolute;
    top: -30px;
    left: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    color: #1a1a1a;
    padding: 14px 20px;
    border-radius: 18px 18px 18px 4px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 215, 0, 0.2);
    animation: bubbleAppear 3s ease-in-out infinite;
    opacity: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.chat-bubble:nth-child(1) { animation-delay: 0s; }
.chat-bubble:nth-child(2) { animation-delay: 1s; }
.chat-bubble:nth-child(3) { animation-delay: 2s; }

@keyframes bubbleAppear {
    0%, 15%, 85%, 100% { opacity: 0; transform: translateY(15px) scale(0.9); }
    20%, 80% { opacity: 1; transform: translateY(0) scale(1); }
}

.community-cta {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cta-description {
    text-align: left;
}

.cta-description h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-description p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
    max-width: 520px;
}

.main-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
}

.cta-btn {
    display: flex;
    align-items: center;
    padding: 24px 28px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.04));
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.1));
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.cta-btn:hover::before {
    left: 0;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15), 0 0 0 1px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.cta-btn:hover .cta-content h4 {
    color: var(--primary-gold);
}

.cta-btn:hover .cta-content p {
    color: rgba(255, 255, 255, 0.95);
}

.cta-btn:hover .cta-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-btn:hover .cta-arrow {
    color: var(--primary-gold);
}

.cta-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-black);
    margin-right: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.25);
    transition: all 0.3s ease;
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-content h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 6px;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    transition: color 0.3s ease;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
}

.cta-arrow {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 15px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.cta-btn:hover .cta-arrow {
    transform: translateX(4px);
}

.primary-cta {
    background: rgba(29, 161, 242, 0.1);
    border-color: #1DA1F2;
}

.primary-cta .cta-icon {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    color: white;
}

.primary-cta .cta-content h4 {
    color: #1DA1F2;
}

.primary-cta:hover .cta-content h4,
.primary-cta:hover .cta-content p {
    color: var(--accent-black);
}

.secondary-cta {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-gold);
}

.secondary-cta .cta-content h4 {
    color: var(--primary-gold);
}

/* Footer */
.footer {
    background: var(--accent-black);
    padding: 60px 0 20px;
    border-top: 3px solid var(--primary-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    text-align: center;
}

.footer-troll {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    box-shadow: var(--shadow-gold);
    padding: 10px;
}

.footer-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.footer-logo h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--light-gold);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-section h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--pure-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--primary-gold);
    color: var(--light-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--accent-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-dark);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
    }

    .title-line1 {
        font-size: 3rem;
    }

    .title-line2,
    .title-line3 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .troll-face {
        width: 250px;
        height: 250px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .community-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chat-bubbles {
        position: static;
        margin-top: 20px;
    }

    .main-cta-buttons {
        max-width: 100%;
        padding: 0 10px;
    }

    .cta-btn {
        padding: 20px 25px;
    }

    .cta-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 15px;
    }

    .cta-content h4 {
        font-size: 1.2rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .title-line1 {
        font-size: 2.5rem;
    }

    .title-line2,
    .title-line3 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .troll-face {
        width: 200px;
        height: 200px;
    }

    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
