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

:root {
    /* Fantasy Medieval Pixel Palette */
    --primary-dark: #1a1410;          /* dark leather */
    --secondary-dark: #2d2419;        /* aged wood */
    --accent-gold: #f4d03f;           /* bright gold */
    --accent-gold-dark: #c9a227;      /* dark gold */
    --accent-green: #7cb342;          /* forest green */
    --accent-brown: #6d4c3d;          /* medieval brown */
    --accent-red: #d32f2f;            /* ruby red */
    --accent-purple: #9c27b0;         /* magic purple */
    --border-wood: #8b7355;           /* wood border */
    --border-dark: #4a3d2a;           /* dark border */
    --text-light: #fff8e7;            /* parchment white */
    --text-gold: #ffd54f;             /* gold text */
    --text-muted: #b8a488;            /* faded parchment */
    --gradient-primary: linear-gradient(135deg, #f4d03f 0%, #c9a227 100%);
    --gradient-secondary: linear-gradient(135deg, #7cb342 0%, #558b2f 100%);
    --gradient-wood: linear-gradient(180deg, #8b7355 0%, #6d4c3d 50%, #8b7355 100%);
    --gradient-dark: linear-gradient(135deg, #1a1410 0%, #2d2419 100%);
    --shadow-glow: 0 0 30px rgba(244, 208, 63, 0.6);
    --shadow-dark: 0 8px 24px rgba(0, 0, 0, 0.8);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.4);
    
    /* Fonts */
    --font-pixel: 'Roboto', sans-serif;
    --font-display-alt: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Medieval Borders */
    --border-pixel: 4px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display-alt);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--shadow-glow);
    font-weight: bold;
}

.highlight-green {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--shadow-glow);
    font-weight: bold;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, #2d2419 0%, #1a1410 100%);
    border-bottom: 4px solid var(--border-wood);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.95),
        0 4px 16px rgba(0, 0, 0, 0.9),
        inset 0 1px 0 rgba(139, 115, 85, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 150px;
    height: 60px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-pixel);
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    font-family: var(--font-display-alt);
}

.nav-link:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

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

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

/* Navbar Social Links */
.nav-social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(214, 182, 107, 0.3);
}

.nav-social-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(214, 182, 107, 0.1);
    border: 1px solid rgba(214, 182, 107, 0.3);
}

.nav-social-link:hover {
    color: var(--accent-gold);
    background: rgba(214, 182, 107, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 182, 107, 0.3);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(0deg, rgba(90, 64, 34, 0.08), rgba(90, 64, 34, 0.08)),
        radial-gradient(80% 60% at 20% 50%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(135deg, rgba(20, 24, 22, 0.6), rgba(45, 45, 45, 0.6));
    backdrop-filter: blur(3px);
    z-index: -1;
}

.hero-content {
    width: 100%;
    height: 100vh;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    font-family: var(--font-display-alt);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-family: var(--font-display-alt);
}

/* Enhance readability of hero text over images */
.hero-text {
    background: rgba(0, 0, 0, 0.75);
    padding: 4rem 2rem;
    border-radius: 0;
    border: none;
    box-shadow: none;
    backdrop-filter: blur(3px);
    width: 100%;
    height: 100%;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.75);
}

.hero-title {
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-info .info-item span {
    color: #f0f0f0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-pixel);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--border-wood);
    box-shadow: 
        0 4px 0 var(--border-dark),
        0 6px 12px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
    pointer-events: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-dark);
    box-shadow: 
        0 4px 0 var(--accent-gold-dark),
        0 6px 12px rgba(0, 0, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 var(--accent-gold-dark),
        0 8px 16px rgba(244, 208, 63, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(180deg, #7cb342 0%, #558b2f 100%);
    color: var(--text-light);
    border-color: var(--accent-green);
    box-shadow: 
        0 4px 0 #558b2f,
        0 6px 12px rgba(0, 0, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(180deg, #8bc34a 0%, #689f38 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 #558b2f,
        0 8px 16px rgba(124, 179, 66, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.btn-play {
    background: linear-gradient(180deg, #6b8e23, #4a7c59);
    color: var(--text-light);
    border: 2px solid rgba(74, 124, 89, 0.5);
    box-shadow: 0 0 20px rgba(74, 124, 89, 0.3);
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 26px rgba(74,124,89,0.55);
}

.btn-play i {
    transition: transform 0.3s ease;
}

.btn-play:hover i {
    transform: scale(1.1);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: var(--shadow-glow);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    }
}

.hero-info {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.info-item i {
    color: var(--accent-gold);
}


.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-gold);
    text-shadow: 
        3px 3px 0 rgba(0, 0, 0, 0.8),
        0 0 20px rgba(244, 208, 63, 0.5);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    box-shadow: 0 2px 8px rgba(244, 208, 63, 0.6);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome-section {
    padding: var(--section-padding);
    background: var(--secondary-dark);
    margin-top: 0;
    position: relative;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.welcome-description strong {
    color: var(--accent-gold);
}

.farmers-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.farmer-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: transform 0.3s ease;
}

.farmer-card:hover {
    transform: translateY(-5px);
}

.farmer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Farmers Section */
.farmers-section {
    padding: var(--section-padding);
}

.nft-gallery {
    position: relative;
}

.gallery-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-dark);
}

.nft-grid {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    transition: transform 0.5s ease;
}

.nft-item {
    flex: 0 0 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: transform 0.3s ease;
}

.nft-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.nft-item .nft-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-gold);
    background: transparent;
    color: var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* Utility Section */
.utility-section {
    padding: var(--section-padding);
    background: var(--secondary-dark);
    position: relative;
}

.utility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.utility-card {
    background: linear-gradient(180deg, #2d2419 0%, #1a1410 100%);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 
        0 8px 0 var(--border-dark),
        0 10px 24px rgba(0, 0, 0, 0.8),
        inset 0 2px 0 rgba(139, 115, 85, 0.3);
    transition: all 0.3s ease;
    border: 4px solid var(--border-wood);
    position: relative;
}

.utility-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.utility-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 0 var(--border-dark),
        0 14px 32px rgba(244, 208, 63, 0.4),
        inset 0 2px 0 rgba(139, 115, 85, 0.4);
}

.utility-card:hover::before {
    opacity: 1;
}

.utility-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
}

.utility-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.utility-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Whitelist Section */
.whitelist-section {
    padding: var(--section-padding);
}

.whitelist-content {
    max-width: 800px;
    margin: 0 auto;
}

.steps-container {
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--secondary-dark);
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-pixel);
    font-weight: 900;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.step-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.step-description a {
    color: var(--accent-gold);
    text-decoration: none;
}

.step-description a:hover {
    text-decoration: underline;
}

.whitelist-cta {
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--secondary-dark);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--primary-dark);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0;
}

.faq-question i {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 150px;
    height: 60px;
    border-radius: 8px;
}

.footer-logo-text {
    font-family: var(--font-pixel);
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-quote {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--secondary-dark);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    border-color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Trailer Modal Styles */
.trailer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--primary-dark);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    box-shadow: var(--shadow-dark);
    border: 2px solid var(--accent-gold);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-red);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    background: #a00000;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        margin-top: 1rem;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .farmers-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }
    
    .navbar {
        box-shadow: 
            0 12px 48px rgba(0, 0, 0, 0.95),
            0 6px 24px rgba(0, 0, 0, 0.9),
            inset 0 1px 0 rgba(139, 115, 85, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    }
    
    .navbar::after {
        height: 24px;
        bottom: -24px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    }
    
    .hero-text {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .hero-section {
        padding-top: 0;
    }
    
    .hero-background {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-overlay {
        height: 100vh;
        min-height: 100vh;
        background:
            linear-gradient(0deg, rgba(90, 64, 34, 0.1), rgba(90, 64, 34, 0.1)),
            radial-gradient(85% 70% at 20% 50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.9) 100%),
            linear-gradient(135deg, rgba(20, 24, 22, 0.7), rgba(45, 45, 45, 0.7));
    }
    
    .hero-content {
        height: auto;
        min-height: 100vh;
        padding: 4rem 0 2rem 0;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 8rem;
        z-index: 2;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        display: block;
        visibility: visible;
    }
    
    .hero-title .highlight {
        display: block;
        margin-top: 0.25rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-dark);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-social-links {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(214, 182, 107, 0.3);
        padding-top: 1rem;
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }
    
    .nav-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-info {
        justify-content: center;
    }
    
    .farmers-showcase {
        grid-template-columns: 1fr;
    }
    
    .utility-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .nft-grid {
        gap: 0.5rem;
    }
    
    .nft-item {
        flex: 0 0 200px;
    }
    
    .nft-item .nft-image {
        height: 200px;
    }
}

/* iPad Mini and mid-range tablets */
@media (max-width: 820px) and (min-width: 769px) {
    .navbar {
        box-shadow: 
            0 14px 52px rgba(0, 0, 0, 0.96),
            0 7px 28px rgba(0, 0, 0, 0.92),
            inset 0 1px 0 rgba(139, 115, 85, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    }
    
    .navbar::after {
        height: 32px;
        bottom: -32px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.75) 40%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    }
}

@media (max-width: 480px) {
    .navbar {
        box-shadow: 
            0 16px 56px rgba(0, 0, 0, 0.98),
            0 8px 32px rgba(0, 0, 0, 0.95),
            inset 0 1px 0 rgba(139, 115, 85, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    }
    
    .navbar::after {
        height: 28px;
        bottom: -28px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    }
    
    .hero-section {
        padding-top: 0;
    }
    
    .hero-background {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-overlay {
        height: 100vh;
        min-height: 100vh;
        background:
            linear-gradient(0deg, rgba(90, 64, 34, 0.12), rgba(90, 64, 34, 0.12)),
            radial-gradient(90% 80% at 20% 50%, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 60%, rgba(0, 0, 0, 0.95) 100%),
            linear-gradient(135deg, rgba(20, 24, 22, 0.8), rgba(45, 45, 45, 0.8));
    }
    
    .hero-content {
        padding-top: 4rem;
        padding-bottom: 2rem;
        z-index: 2;
    }
    
    .hero-text {
        padding: 1.5rem 1rem;
        width: 100%;
        height: auto;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        display: block;
        visibility: visible;
    }
    
    .hero-title .highlight {
        display: block;
        margin-top: 0.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    
    .utility-card {
        padding: 1.5rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .nft-item {
        flex: 0 0 150px;
    }
    
    .nft-item .nft-image {
        height: 150px;
    }
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0 1rem;
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 999px;
    font-family: var(--font-display-alt);
    font-weight: 700;
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.12);
}

.launch-badge i {
    color: var(--accent-gold);
}

.launch-badge .solana-logo {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    display: inline-block;
    object-fit: contain;
}

/* Listing strip under hero */
.listing-strip {
    margin: 1rem auto 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
}

.listing-label {
    color: var(--text-muted);
    font-weight: 600;
}

.listing-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    text-decoration: none;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.25s ease;
    font-weight: 600;
}

.listing-badge:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent-gold);
}

@media (max-width: 480px) {
    .listing-strip {
        gap: 0.4rem;
    }
    .listing-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.9rem;
    }
}

/* Compact hero meta and listings */
/* Hero Counter - Professional Design */
.hero-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    position: relative;
}

.counter-badge {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(180deg, #2d2419 0%, #1a1410 100%);
    border: 4px solid var(--border-wood);
    border-radius: 8px;
    box-shadow: 
        0 6px 0 var(--border-dark),
        0 8px 24px rgba(0, 0, 0, 0.8),
        inset 0 2px 0 rgba(139, 115, 85, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    transition: all 0.3s ease;
}

.counter-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(214, 182, 107, 0.1), transparent);
    transition: left 0.5s ease;
}

.counter-badge:hover::before {
    left: 100%;
}

.counter-badge:hover {
    border-color: var(--accent-gold);
    box-shadow: 
        0 8px 0 var(--border-dark),
        0 10px 32px rgba(244, 208, 63, 0.4),
        inset 0 2px 0 rgba(139, 115, 85, 0.4);
    transform: translateY(-2px);
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 0 var(--accent-gold-dark),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid var(--accent-gold);
    position: relative;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 1.4rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.badge-content {
    flex: 1;
    text-align: left;
}

.badge-number {
    font-family: var(--font-display-alt);
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-gold);
    line-height: 1.1;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.badge-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.badge-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(108, 143, 61, 0.2);
    border: 1px solid rgba(108, 143, 61, 0.4);
    border-radius: 20px;
    flex-shrink: 0;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.status-text {
    font-size: 0.75rem;
    color: var(--accent-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin: 0.75rem 0 1rem;
    opacity: 0.9;
}

.meta-item {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.meta-sep {
    color: rgba(255,255,255,0.25);
}

.listing-strip {
    margin: 0.25rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
}

.listing-label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.listing-badge {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--text-light);
    text-decoration: none;
    background: rgba(0, 0, 0, 0.35);
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.listing-badge:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent-gold);
}

@media (max-width: 768px) {
    .counter-badge {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1.5rem;
        min-width: auto;
    }
    
    .badge-content {
        text-align: center;
    }
    
    .badge-number {
        font-size: 1.8rem;
    }
    
    .badge-label {
        font-size: 0.85rem;
    }
    
    .badge-icon {
        width: 44px;
        height: 44px;
    }
    
    .badge-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .counter-badge {
        padding: 1.25rem 1rem;
        margin: 0 1rem;
    }
    
    .badge-number {
        font-size: 1.6rem;
    }
    
    .badge-label {
        font-size: 0.8rem;
    }
    
    .badge-icon {
        width: 40px;
        height: 40px;
    }
    
    .badge-icon i {
        font-size: 1.2rem;
    }
    
    .badge-status {
        padding: 0.3rem 0.6rem;
    }
    
    .status-text {
        font-size: 0.7rem;
    }
    
    .hero-meta {
        gap: 0.5rem;
        flex-direction: column;
        font-size: 0.85rem;
    }
    
    .meta-item {
        font-size: 0.8rem;
    }
    .listing-badge {
        font-size: 0.85rem;
        padding: 0.25rem 0.55rem;
    }
}

/* Decorative separators */
.section-header::after {
    content: '';
    display: block;
    width: 140px;
    height: 4px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
    border-radius: 2px;
}

/* Parchment cards feel */
.step, .faq-item, .utility-card {
    backdrop-filter: blur(2px);
}

.faq-question {
    font-family: var(--font-display-alt);
}

/* Roboto Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* Whitelist eligibility card */
.eligibility-card {
    margin: 2rem auto 3rem;
    padding: 1.5rem;
    background: var(--secondary-dark);
    border: 1px solid rgba(214, 182, 107, 0.25);
    border-radius: 14px;
    box-shadow: var(--shadow-dark);
}

.eligibility-title {
    font-family: var(--font-display-alt);
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 0.5rem;
}

.eligibility-hint {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1rem;
}

.eligibility-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.eligibility-input {
    width: 100%;
    max-width: 520px;
    padding: 0.9rem 1rem;
    border-radius: 4px;
    border: 3px solid var(--border-wood);
    background: linear-gradient(180deg, #0f0f10 0%, #1a1410 100%);
    color: var(--text-light);
    outline: none;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.6),
        0 4px 0 var(--border-dark);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.eligibility-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.6),
        0 4px 0 var(--accent-gold-dark),
        0 0 20px rgba(244, 208, 63, 0.3);
}

.eligibility-input::placeholder {
    color: #9e987f;
}

.eligibility-result {
    margin-top: 1rem;
    text-align: center;
    font-weight: 700;
}

.eligibility-result.ok {
    color: #7ddc7a;
}

.eligibility-result.no {
    color: #ff7a7a;
}

/* Daily Tasks card */
.tasks-card {
    margin: 0 auto 3rem;
    padding: 1.5rem 1.25rem;
    background: var(--secondary-dark);
    border: 1px solid rgba(214, 182, 107, 0.25);
    border-radius: 14px;
    box-shadow: var(--shadow-dark);
}

.tasks-title {
    font-family: var(--font-display-alt);
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 0.5rem;
}

.tasks-hint {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1rem;
}

/* Whitelist Steps */
.whitelist-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(139, 115, 85, 0.1);
    border-radius: 8px;
    border: 2px solid rgba(139, 115, 85, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(139, 115, 85, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-pixel);
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-dark);
    box-shadow: 
        0 4px 0 var(--accent-gold-dark),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid var(--accent-gold);
    flex-shrink: 0;
}

.verification-step .step-number {
    background: var(--gradient-success);
    color: var(--primary-dark);
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: var(--font-pixel);
    font-size: 1.3rem;
    color: var(--text-gold);
    margin-bottom: 0.5rem;
    text-shadow: 
        1px 1px 0 rgba(0, 0, 0, 0.8),
        0 0 10px rgba(244, 208, 63, 0.3);
}

.step-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.step-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(244, 208, 63, 0.1);
    border: 2px solid rgba(244, 208, 63, 0.3);
    border-radius: 6px;
    color: var(--text-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-link:hover {
    background: rgba(244, 208, 63, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-1px);
}

.step-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.step-tasks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mini-task {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-wood);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.verification-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(124, 179, 66, 0.1);
    border: 2px solid rgba(124, 179, 66, 0.3);
    border-radius: 6px;
    margin-top: 1rem;
}

.verification-note i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.verification-note span {
    color: var(--text-light);
    font-weight: 600;
}

.tasks-note {
    color: var(--text-muted);
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.95rem;
}

.task-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    object-fit: contain;
    margin-top: 2px;
}

/* Review application form */
.review-card {
    margin: 0 auto 3rem;
    padding: 1.5rem 1.25rem;
    background: var(--secondary-dark);
    border: 1px solid rgba(214, 182, 107, 0.25);
    border-radius: 14px;
    box-shadow: var(--shadow-dark);
}

.review-title {
    font-family: var(--font-display-alt);
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 0.5rem;
}

.review-hint {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1rem;
}

.review-form {
    max-width: 820px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
}

.form-row label {
    color: var(--text-light);
    font-weight: 600;
}

.form-row input,
.form-row textarea {
    padding: 0.9rem 1rem;
    border-radius: 4px;
    border: 3px solid var(--border-wood);
    background: linear-gradient(180deg, #0f0f10 0%, #1a1410 100%);
    color: var(--text-light);
    outline: none;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.6),
        0 4px 0 var(--border-dark);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.6),
        0 4px 0 var(--accent-gold-dark),
        0 0 20px rgba(244, 208, 63, 0.3);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #9e987f;
}

.form-row + .form-row {
    margin-top: 0.4rem;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-feedback {
    color: var(--text-muted);
}

/* Partnership Section */
.partnership-section {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.partnership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d6b66b" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%236c8f3d" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d6b66b" opacity="0.2"/><circle cx="10" cy="90" r="0.5" fill="%236c8f3d" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.partnership-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Existing Partners */
.existing-partners {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-title {
    font-family: var(--font-display-alt);
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.partners-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.partner-item {
    background: rgba(214, 182, 107, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 182, 107, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.partner-item:hover::before {
    opacity: 1;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(214, 182, 107, 0.3);
    border-color: var(--accent-green);
}

.partner-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.partner-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    padding: 8px;
}

.partner-logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-fallback i {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.partner-name {
    font-family: var(--font-display-alt);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.partnership-card {
    background: var(--secondary-dark);
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 182, 107, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.partnership-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
}

.partnership-icon i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.partnership-title {
    font-family: var(--font-display-alt);
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.partnership-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.partnership-description strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.partnership-email {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.partnership-email:hover {
    color: var(--text-light);
    border-bottom-color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(214, 182, 107, 0.5);
}

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

/* Responsive Partnership Section */
@media (max-width: 768px) {
    .partnership-content {
        max-width: 100%;
    }
    
    .existing-partners {
        margin-bottom: 2rem;
    }
    
    .partners-title {
        font-size: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .partner-item {
        padding: 1rem 0.5rem;
    }
    
    .partner-logo {
        width: 50px;
        height: 50px;
    }
    
    .partner-logo-img {
        padding: 6px;
    }
    
    .partner-logo-fallback i {
        font-size: 1.2rem;
    }
    
    .partner-name {
        font-size: 0.8rem;
    }
    
    .partnership-card {
        padding: 2rem 1.5rem;
    }
    
    .partnership-icon {
        width: 60px;
        height: 60px;
    }
    
    .partnership-icon i {
        font-size: 1.5rem;
    }
    
    .partnership-title {
        font-size: 1.5rem;
    }
    
    .partnership-description {
        font-size: 1rem;
    }
}

/* Game Preview Section */
.game-preview-section {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.game-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gamePattern" width="50" height="50" patternUnits="userSpaceOnUse"><rect width="50" height="50" fill="transparent"/><circle cx="25" cy="25" r="1" fill="%236c8f3d" opacity="0.3"/><rect x="20" y="20" width="10" height="10" fill="%23d6b66b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23gamePattern)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.game-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.game-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-item {
    background: var(--secondary-dark);
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(214, 182, 107, 0.3);
    border-color: var(--accent-green);
}

.game-image-container {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-item:hover .game-image {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-item:hover .game-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-left: 3px;
}

.game-title {
    font-family: var(--font-display-alt);
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.game-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.game-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-highlight {
    background: rgba(214, 182, 107, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(214, 182, 107, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(214, 182, 107, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-glow);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.feature-highlight h4 {
    font-family: var(--font-display-alt);
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-highlight p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Game Preview */
@media (max-width: 768px) {
    .game-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-item {
        padding: 1rem;
    }
    
    .game-image {
        height: 150px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 1.2rem;
    }
    
    .game-title {
        font-size: 1.1rem;
    }
    
    .game-description {
        font-size: 0.9rem;
    }
    
    .game-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-highlight {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
}

/* Daily Tasks System */
.participation-counter {
    text-align: center;
    margin-bottom: 2rem;
}

.counter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(214, 182, 107, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 25px;
    padding: 1rem 1.5rem;
    font-family: var(--font-display-alt);
    position: relative;
    overflow: hidden;
}

.counter-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.counter-badge i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.counter-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.daily-progress {
    background: rgba(214, 182, 107, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.daily-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(214, 182, 107, 0.3);
}

.stat-number {
    display: block;
    font-family: var(--font-display-alt);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(214, 182, 107, 0.3);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.daily-tasks-list {
    margin-bottom: 2rem;
}

.task-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(214, 182, 107, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.task-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.task-item.completed::before {
    transform: scaleX(1);
}

.task-item.completed {
    border-color: var(--accent-green);
    background: rgba(34, 139, 34, 0.1);
}

.task-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 182, 107, 0.2);
}

.task-checkbox {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.task-checkbox input[type="checkbox"] {
    display: none;
}

.task-checkbox label {
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent-gold);
    border-radius: 6px;
    display: block;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(26, 26, 26, 0.8);
}

.task-checkbox label::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--primary-dark);
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.task-checkbox input[type="checkbox"]:checked + label {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.task-checkbox input[type="checkbox"]:checked + label::after {
    transform: translate(-50%, -50%) scale(1);
}

.task-content {
    flex: 1;
}

.task-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.task-title {
    font-family: var(--font-display-alt);
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.task-points {
    background: var(--gradient-primary);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-display-alt);
}

.task-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.task-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-display-alt);
}

.task-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 182, 107, 0.4);
}

.task-link.manual-complete {
    background: var(--gradient-primary);
}

.task-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.task-submission {
    background: rgba(214, 182, 107, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.task-submission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.submission-title {
    font-family: var(--font-display-alt);
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.submission-hint {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.task-form {
    max-width: 500px;
    margin: 0 auto;
}

.daily-feedback {
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 1rem;
}

.daily-feedback.success {
    color: var(--accent-green);
}

.daily-feedback.error {
    color: var(--accent-red);
}

/* Responsive Daily Tasks */
@media (max-width: 768px) {
    .progress-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .task-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .task-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .task-checkbox {
        margin-top: 0;
    }
    
    .daily-progress {
        padding: 1.5rem;
    }
    
    .task-submission {
        padding: 1.5rem;
    }
}
