* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="15" r="12" fill="%23654321" opacity="0.4"/><circle cx="45" cy="25" r="8" fill="%23654321" opacity="0.3"/><circle cx="75" cy="35" r="10" fill="%23654321" opacity="0.5"/><circle cx="25" cy="55" r="6" fill="%23654321" opacity="0.3"/><circle cx="65" cy="65" r="14" fill="%23654321" opacity="0.4"/><circle cx="85" cy="85" r="9" fill="%23654321" opacity="0.3"/><circle cx="35" cy="85" r="7" fill="%23654321" opacity="0.2"/></svg>');
    background-size: 150px 150px;
    background-color: #2c1810;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    object-fit: cover;
}

.logo-text {
    font-size: 22px;
    font-weight: bold;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-btn.active, .lang-btn:hover {
    background: #d4af37;
    color: #2c1810;
}

.connect-wallet {
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: white;
    padding: 8px 18px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.connect-wallet:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 30px 30px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

.mascot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mascot-circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2), rgba(44, 24, 16, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #d4af37;
    box-shadow: 
        0 0 60px rgba(212, 175, 55, 0.4),
        inset 0 0 40px rgba(212, 175, 55, 0.1);
    animation: glow 4s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

.mascot-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: rotate 8s linear infinite;
}

.mascot-circle img {
    width: 320px;
    height: 320px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

@keyframes glow {
    from { 
        box-shadow: 
            0 0 60px rgba(212, 175, 55, 0.4),
            inset 0 0 40px rgba(212, 175, 55, 0.1);
    }
    to { 
        box-shadow: 
            0 0 100px rgba(212, 175, 55, 0.6),
            inset 0 0 60px rgba(212, 175, 55, 0.2);
    }
}

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

.hero-text {
    text-align: left;
    padding-left: 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #d4af37;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 35px;
    color: #f0e68c;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.cta-button {
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.cta-button::before {
    content: "🍫";
    font-size: 1.5rem;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 12px 25px;
    border: 2px solid #d4af37;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-contact {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25d366;
    color: #25d366;
}

.btn-contact:hover {
    background: rgba(37, 211, 102, 0.3);
    color: white;
}

.btn-email {
    background: rgba(52, 73, 94, 0.2);
    border-color: #34495e;
    color: #ecf0f1;
}

.btn-email:hover {
    background: rgba(52, 73, 94, 0.4);
    color: white;
}

/* Stats Section */
.stats {
    background: rgba(0,0,0,0.9);
    padding: 40px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Sections */
.content-section {
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.farmer-section {
    background: rgba(0,0,0,0.5);
}

.roadmap-section {
    background: rgba(0,0,0,0.5);
}

.section-title {
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.card p {
    color: #ccc;
    line-height: 1.6;
}

.card ul {
    color: #ccc;
    margin-left: 20px;
    margin-top: 15px;
}

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

/* Farmer Cards */
.farmer-card-organic {
    border-color: #25d366;
}

.farmer-card-organic h3 {
    color: #25d366;
}

/* Tokenomics Cards */
.tokenomics-card {
    text-align: center;
}

.token-supply {
    font-size: 2rem;
    color: white;
    margin: 15px 0 10px;
    font-weight: bold;
}

.supply-label {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Roadmap */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.roadmap-item {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #d4af37;
    backdrop-filter: blur(10px);
}

.roadmap-item.active {
    border-left-color: #25d366;
}

.roadmap-item h4 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.roadmap-item.active h4 {
    color: #25d366;
}

.roadmap-item p {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 80px 20px 30px;
    }

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

    .mascot-circle {
        width: 280px;
        height: 280px;
    }

    .mascot-circle img {
        width: 220px;
        height: 220px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .content-section {
        padding: 60px 20px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-container {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

