* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

body {
    background-color: #2e1c0b;
    color: white;
    overflow-x: hidden;
}

/* Background and Animations */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.soybean-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2e1c0b 0%, #4a2f1a 50%, #8bc34a 100%);
    opacity: 0.8;
}

.soybean-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M30,10 Q50,0 70,10 T90,30 T70,50 T30,70 T10,50 T30,30 T50,10" fill="none" stroke="rgba(139,195,74,0.2)" stroke-width="2"/></svg>');
    background-size: 400px 400px;
    animation: soybean-swirl 15s linear infinite;
}

.soybean-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.soybean-pod {
    position: absolute;
    width: 8px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), #8bc34a);
    border-radius: 5px;
    animation: soybean-fall linear infinite;
}

.soybean-ripple {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid rgba(139,195,74,0.6);
    border-radius: 50%;
    animation: ripple-expand 2s linear infinite;
    opacity: 0;
}

.soybean-grain {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: rgba(255,235,205,0.5);
    border-radius: 50%;
    box-shadow: inset 0 0 5px rgba(255,255,255,0.8);
    animation: grain-fall linear infinite;
    opacity: 0.6;
}

.soil-particle {
    position: absolute;
    bottom: -20px;
    background: radial-gradient(circle at 30% 30%, #4a2f1a, #2e1c0b);
    border-radius: 50%;
    animation: particle-rise linear infinite;
    opacity: 0.5;
}

@keyframes soybean-swirl {
    0% { background-position: 0 0; }
    100% { background-position: 400px 400px; }
}

@keyframes soybean-fall {
    0% { transform: translateY(-100px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(calc(100vh + 100px)); opacity: 0; }
}

@keyframes ripple-expand {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(10); opacity: 0; }
}

@keyframes grain-fall {
    0% { transform: translateY(-50px) rotate(0deg); opacity: 0.6; }
    100% { transform: translateY(calc(100vh + 50px)) rotate(360deg); opacity: 0; }
}

@keyframes particle-rise {
    0% { transform: translateY(0) scale(1); opacity: 0.5; }
    100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}

/* Content */
.container {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

header {
    padding: 50px 0 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    font-family: 'Pacifico', cursive;
    color: #8bc34a;
    text-shadow: 0 0 10px rgba(139,195,74,0.5);
    letter-spacing: 1px;
    margin: 0 0 0 20px;
}

.logo-icon {
    height: 1em;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    margin-right: 20px; 
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: #8bc34a;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8bc34a;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    margin: 0 20px 0 0;
}

.site-stripe {
    background: rgba(139,195,74,0.8);
    color: white;
    padding: 20px 0 10px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin: 0 0 20px 0;
}

.site-stripe:hover {
    background: rgba(139,255,74,1);
    transform: translateY(-3px);
}

.tooltip {
    position: fixed;
    background-color: #689f38;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.banner {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
}

.banner h1 {
    font-size: 70px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #8bc34a;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.banner h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, rgba(139,255,74,0), rgba(139,195,74,1), rgba(139,0,74,0));
}

.banner p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #8bc34a;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    padding: 10px;
    background-color: rgba(0,0,0,0.4);
    border-radius: 8px;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: linear-gradient(45deg, #8bc34a, #4a2f1a);
    color: white;
    border: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #8bc34a;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139,195,74,0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #9ccc65, #5a3f2a);
}

.btn-secondary:hover {
    background: rgba(139,255,74,0.1);
}

.community-highlights {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #8bc34a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 75vw;
    margin: 0 auto;
}

.highlight-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 1px solid rgba(139,255,74,0.2);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: #8bc34a;
}

.highlight-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #8bc34a;
}

.highlight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8bc34a;
}

.highlight-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* Roadmap Section */
.roadmap {
    padding: 10px 0;
}

.roadmap-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 75vw;
    margin: 0 auto;
}

.roadmap-card {
    background: rgba(139, 195, 74, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid #d4a017;
    transition: all 0.3s ease;
}

.roadmap-card:hover {
    transform: scale(1.05);
    border-color: #f1c40f;
    background: rgba(255, 159, 56, 0.);
}

.roadmap-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8bc34a;
}

.roadmap-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 16px;
}

/* Token Price and Soybean Prices Layout */
.token-price-card {
    width: calc(50% - 20px); /* Matches soybean price card width */
    min-width: 250px;
    max-width: 500px;
    margin-bottom: 30px;
}

.soybean-prices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.soybean-prices .roadmap-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    max-width: 400px;
}

/* Fine Print Styling */
.roadmap-card .fine-print {
    font-size: 12px;
    font-style: italic;
    color: #d4a017;
    margin-top: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 45px;
    }

    .banner h1::after {
        width: 100px;
        bottom: -10px;
    }

    .banner p {
        font-size: 18px;
    }

    .highlight-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 95vw;
    }

    .highlight-card {
        padding: 20px 15px;
    }

    .highlight-card h3 {
        font-size: 20px;
    }

    .highlight-card p {
        font-size: 14px;
    }

    nav {
        display: none;
    }

    nav.active {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(46,28,11,0.9);
        padding: 20px;
        z-index: 1000;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
        margin: 0 20px 0 0;
    }

    body {
        padding-bottom: 180px; /* Ensures 80px extra scrollable space on mobile */
    }

    .roadmap-items {
        max-width: 95vw;
    }

    .soybean-prices {
        flex-direction: column;
        align-items: center;
    }

    .soybean-prices .roadmap-card {
        flex: 1 1 100%;
        min-width: 200px;
        max-width: 95vw;
    }

    .token-price-card {
        width: 100%;
        min-width: 200px;
        max-width: 95vw;
    }
}

@media (max-width: 480px) {
    .highlight-items {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        padding: 25px 20px;
        max-width: 95vw;
    }

    .roadmap-card {
        padding: 25px;
        max-width: 95vw;
    }
}

.site-stripe {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: nowrap;
    margin: 0 0 20px 0;
}

@media (max-width: 768px) {
    .site-stripe {
        font-size: 16px;
        padding: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: nowrap;
        margin: 0 0 20px 0;
    }
}

@media (max-width: 480px) {
    .site-stripe {
        font-size: 14px;
        padding: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: nowrap;
    }
}