* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Yeet.com Dark Theme Colors */
    --primary-color: #0A0A0A;
    --secondary-color: #1A1A1A;
    --accent-color: #8B5CF6;
    --highlight-color: #8B5CF6;
    --text-light: #FFFFFF;
    --text-dark: #E5E7EB;
    --text-muted: #9CA3AF;
    --bg-light: #1A1A1A;
    --bg-dark: #0A0A0A;
    --purple: #8B5CF6;
    --purple-light: #A78BFA;
    --purple-dark: #6D28D9;
    --gradient: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    --gradient-hero: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
}

/* Font Face Declarations */

/* Aeonik - Primary Font */
@font-face {
    font-family: 'Aeonik';
    src: url('/fonts/AeonikTRIAL-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('/fonts/AeonikTRIAL-RegularItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('/fonts/AeonikTRIAL-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('/fonts/AeonikTRIAL-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('/fonts/AeonikTRIAL-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('/fonts/AeonikTRIAL-SemiBoldItalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('/fonts/AeonikTRIAL-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('/fonts/AeonikTRIAL-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* IBM Plex Sans - Secondary Font (Local Files) */
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/fonts/static/IBMPlexSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}


body {
    font-family: 'Aeonik', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(139, 92, 246, 0.1);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 769px) {
    .header-social {
        display: none;
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--highlight-color);
    display: flex;
    align-items: center;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FF1493;
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.3);
}

@media (max-width: 768px) {
    .header .container {
        align-items: center;
    }
    
    .logo {
        display: flex;
        align-items: center;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
}

.nav {
    display: flex;
    gap: 3rem;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--purple-light);
    transition: color 0.3s;
}

/* Header Social Icons */
.header-social {
    display: none; /* Hidden on desktop, shown on mobile */
    gap: 1.25rem;
    align-items: center;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s;
    opacity: 0.8;
}

.header-social-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--purple);
    opacity: 1;
    transform: translateY(-2px);
}

.header-social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .header-center {
        position: static;
        transform: none;
        justify-content: flex-end;
        gap: 0.75rem;
        flex: 0;
    }
    
    .nav {
        display: none; /* Hide navigation links on mobile */
    }
    
    .header-social {
        gap: 0.75rem;
        margin-left: 0;
        display: flex;
        align-items: center;
    }
    
    .header-social-link {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-social-link img {
        width: 20px;
        height: 20px;
    }
}

/* Hero Section */
.hero {
    background: var(--bg-dark);
    background-image: var(--gradient-hero);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 4rem;
    max-width: 1400px;
}

.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-name {
    color: var(--purple-light);
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.hero-giveaway {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(109, 40, 217, 0.2) 100%);
    border: 2px solid var(--accent-color);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.giveaway-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--purple-light);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.giveaway-text {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.giveaway-text strong {
    color: var(--purple-light);
    font-size: 1.3rem;
    font-weight: 700;
}

.schedule-card {
    /* Uses same styling as hero-bonus-card */
}

.schedule-list {
    margin-bottom: 2rem;
}

.hero-embed {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
}

/* Join & Schedule Section */
.join-schedule {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.join-schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-bonus-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(109, 40, 217, 0.15) 100%);
    border: 2px solid var(--accent-color);
    padding: 2rem;
    border-radius: 16px;
    margin: 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-bonus-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 700;
    flex-shrink: 0;
}

.hero-bonus-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-shrink: 0;
}

.hero-bonus-list {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    text-align: left;
    flex-grow: 1;
}

.hero-bonus-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.hero-bonus-list li:last-child {
    border-bottom: none;
}

.hero-bonus-card .cta-button {
    width: 100%;
    text-align: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: auto;
}

.hero-video {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
    background: var(--secondary-color);
    object-fit: cover;
}

/* Fix fullscreen scaling for video */
.hero-video:fullscreen {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    object-fit: contain;
    border-radius: 0;
    background: #000;
}

.hero-video::-webkit-media-controls-fullscreen-button {
    display: block;
}

/* Fix fullscreen scaling for video */
.hero-video:fullscreen {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    object-fit: contain;
    border-radius: 0;
    background: #000;
}

.hero-video::-webkit-media-controls-fullscreen-button {
    display: block;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 2rem 0 0 0;
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-embed {
        order: -1;
        margin-bottom: 0;
        gap: 1.5rem;
    }
    
    .join-schedule-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-bonus-card {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .hero-bonus-card h3 {
        font-size: 1.5rem;
    }
    
    .hero-video {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .hero .container {
        gap: 2rem;
    }
    
    .hero-video {
        max-width: 280px;
    }
    
    .affiliate-content {
        padding: 0 1rem;
    }
    
    .affiliate-highlight {
        padding: 2rem 1.5rem;
    }
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    margin: 0.5rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--purple);
    color: var(--purple-light);
}

.cta-button.secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--purple-light);
    color: var(--purple-light);
}

.trust-badge {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--bg-light);
}

/* Social Media Section - distinct from features */
#social.features {
    background: var(--bg-dark);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.features .section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    border-color: var(--purple);
    background: rgba(139, 92, 246, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Games Section */
.games {
    padding: 4rem 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

.games h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.games .section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.game-card {
    background: rgba(139, 92, 246, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.game-card:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
    border-color: var(--purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.game-card h3 {
    margin-bottom: 1rem;
    color: var(--purple-light);
}

.game-card p {
    color: var(--text-muted);
}

/* Leaderboard Section */
.leaderboard-content {
    max-width: 900px;
    margin: 0 auto;
}

.leaderboard-highlight {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    text-align: center;
}

.leaderboard-highlight h3 {
    color: var(--purple-light);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.leaderboard-highlight > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.leaderboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
    text-align: left;
}

.leaderboard-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.feature-badge {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.leaderboard-feature h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.leaderboard-feature p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.leaderboard-highlight .cta-button {
    margin-top: 2rem;
}

/* Bonus Section */
.bonus {
    padding: 4rem 0;
    background: var(--bg-light);
}

.bonus h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.bonus .section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.bonus-highlight {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--purple);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.bonus-highlight h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.bonus-highlight p {
    color: var(--text-muted);
}

.bonus-list {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 1.5rem auto;
}

.bonus-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.bonus-list li::marker {
    color: var(--purple);
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.faq .section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--secondary-color);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--purple);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

.faq-item h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-muted);
}

/* Stream Section */
.stream-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stream-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.kick-embed-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
    background: var(--bg-dark);
}

.kick-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: contain;
}

/* Fix fullscreen scaling */
.kick-embed:fullscreen {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.kick-embed-container:fullscreen {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    padding-bottom: 0;
    border-radius: 0;
}

.kick-embed-container:fullscreen .kick-embed {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Section Description - Global */
.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.social-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s;
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.05);
}

.social-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.social-card:hover .social-icon img {
    transform: scale(1.1);
}

.social-card h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.social-card p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.social-handle {
    color: var(--purple-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: var(--bg-dark);
    background-image: var(--gradient-hero);
    color: var(--text-light);
    text-align: center;
    position: relative;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Instagram Reel Section */
.instagram-reel-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Instagram embed styling */
.instagram-reel-container .instagram-media {
    margin: 0 auto !important;
    max-width: 100% !important;
    background: transparent !important;
}

.instagram-reel-container iframe {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    max-width: 100%;
}

@media (max-width: 768px) {
    .instagram-reel-container {
        padding: 1rem;
    }
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--text-muted);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-giveaway {
        padding: 1.25rem 1.5rem;
    }
    
    .giveaway-title {
        font-size: 1.3rem;
    }
    
    .giveaway-text {
        font-size: 1rem;
    }
    
    .giveaway-text strong {
        font-size: 1.2rem;
    }
    
    .leaderboard-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .leaderboard-highlight {
        padding: 2rem 1.5rem;
    }
    
    .leaderboard-highlight h3 {
        font-size: 1.5rem;
    }
    
    .features-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

