/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #050f05;
    --secondary-bg: #0a1a0a;
    --accent-bg: #324c33;
    --button-bg: #324c33;
    --button-hover: #3d5a3e;
    --text-primary: #ffffff;
    --text-secondary: #b8c5b8;
    --text-accent: #4a7c59;
    --border-color: #2a3f2a;
    --gradient-primary: linear-gradient(135deg, #324c33 0%, #4a7c59 100%);
    --gradient-secondary: linear-gradient(135deg, #050f05 0%, #0a1a0a 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 15, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.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%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Trench lines */
        linear-gradient(90deg, transparent 0%, rgba(50, 76, 51, 0.1) 2%, transparent 4%),
        linear-gradient(90deg, transparent 0%, rgba(50, 76, 51, 0.1) 2%, transparent 4%),
        linear-gradient(90deg, transparent 0%, rgba(50, 76, 51, 0.1) 2%, transparent 4%),
        /* Barbed wire */
        repeating-linear-gradient(45deg, transparent 0%, rgba(50, 76, 51, 0.2) 1px, transparent 2px, transparent 20px),
        /* Explosion craters */
        radial-gradient(circle at 20% 30%, rgba(50, 76, 51, 0.1) 0%, transparent 15%),
        radial-gradient(circle at 80% 70%, rgba(50, 76, 51, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 60% 20%, rgba(50, 76, 51, 0.1) 0%, transparent 12%),
        /* Smoke clouds */
        radial-gradient(ellipse at 30% 10%, rgba(50, 76, 51, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 15%, rgba(50, 76, 51, 0.05) 0%, transparent 35%),
        /* Sandbags */
        linear-gradient(45deg, transparent 0%, rgba(50, 76, 51, 0.1) 1px, transparent 2px),
        /* Battlefield debris */
        linear-gradient(135deg, transparent 0%, rgba(50, 76, 51, 0.05) 1px, transparent 2px);
    background-size: 
        100% 100%,
        100% 100%,
        100% 100%,
        50px 50px,
        200px 200px,
        150px 150px,
        180px 180px,
        300px 200px,
        250px 180px,
        30px 30px,
        40px 40px;
    background-position: 
        0% 60%,
        0% 80%,
        0% 40%,
        0% 0%,
        0% 0%,
        0% 0%,
        0% 0%,
        0% 0%,
        0% 0%,
        0% 0%,
        0% 0%;
    animation: battlefieldMove 30s linear infinite;
}

@keyframes battlefieldMove {
    0% { 
        background-position: 
            0% 60%, 0% 80%, 0% 40%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    100% { 
        background-position: 
            100% 60%, 100% 80%, 100% 40%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(50, 76, 51, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Cartoon-style war zone decorations */
        /* Tanks with simple shapes */
        radial-gradient(circle at 20% 90%, rgba(50, 76, 51, 0.08) 0%, rgba(50, 76, 51, 0.08) 4%, transparent 4%),
        radial-gradient(circle at 80% 85%, rgba(50, 76, 51, 0.08) 0%, rgba(50, 76, 51, 0.08) 4%, transparent 4%),
        /* Soldier silhouettes */
        radial-gradient(ellipse at 30% 80%, rgba(50, 76, 51, 0.06) 0%, rgba(50, 76, 51, 0.06) 3%, transparent 3%),
        radial-gradient(ellipse at 70% 85%, rgba(50, 76, 51, 0.06) 0%, rgba(50, 76, 51, 0.06) 3%, transparent 3%),
        /* Cartoon explosions */
        radial-gradient(circle at 15% 25%, rgba(50, 76, 51, 0.12) 0%, transparent 10%),
        radial-gradient(circle at 85% 35%, rgba(50, 76, 51, 0.12) 0%, transparent 8%),
        /* Gun muzzles (simple dots) */
        radial-gradient(circle at 25% 75%, rgba(50, 76, 51, 0.1) 0%, rgba(50, 76, 51, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 80%, rgba(50, 76, 51, 0.1) 0%, rgba(50, 76, 51, 0.1) 1px, transparent 1px),
        /* Cartoon-style smoke puffs */
        radial-gradient(ellipse at 35% 10%, rgba(50, 76, 51, 0.05) 0%, transparent 30%),
        radial-gradient(ellipse at 65% 12%, rgba(50, 76, 51, 0.05) 0%, transparent 25%),
        /* Battlefield craters */
        radial-gradient(circle at 10% 60%, rgba(50, 76, 51, 0.08) 0%, transparent 12%),
        radial-gradient(circle at 90% 70%, rgba(50, 76, 51, 0.08) 0%, transparent 10%);
    background-size: 
        120px 120px,
        120px 120px,
        100px 100px,
        100px 100px,
        150px 150px,
        130px 130px,
        50px 50px,
        50px 50px,
        200px 100px,
        180px 90px,
        160px 160px,
        140px 140px;
    background-position: 
        0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    animation: warzoneDecorations 20s linear infinite;
}

@keyframes warzoneDecorations {
    0% { 
        background-position: 
            0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    100% { 
        background-position: 
            100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%;
    }
}

.military-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Cartoon-style war zone elements */
        /* Tanks (simplified cartoon shapes) */
        radial-gradient(circle at 15% 85%, rgba(50, 76, 51, 0.1) 0%, rgba(50, 76, 51, 0.1) 3%, transparent 3%),
        radial-gradient(circle at 85% 90%, rgba(50, 76, 51, 0.1) 0%, rgba(50, 76, 51, 0.1) 3%, transparent 3%),
        /* Soldier helmets */
        radial-gradient(circle at 25% 75%, rgba(50, 76, 51, 0.08) 0%, rgba(50, 76, 51, 0.08) 2%, transparent 2%),
        radial-gradient(circle at 75% 80%, rgba(50, 76, 51, 0.08) 0%, rgba(50, 76, 51, 0.08) 2%, transparent 2%),
        /* Gun barrels (simple lines) */
        linear-gradient(45deg, transparent 0%, rgba(50, 76, 51, 0.1) 1px, transparent 1px),
        linear-gradient(-45deg, transparent 0%, rgba(50, 76, 51, 0.1) 1px, transparent 1px),
        /* Explosion effects */
        radial-gradient(circle at 10% 20%, rgba(50, 76, 51, 0.15) 0%, transparent 8%),
        radial-gradient(circle at 90% 30%, rgba(50, 76, 51, 0.15) 0%, transparent 6%),
        /* Cartoon-style clouds of smoke */
        radial-gradient(ellipse at 40% 5%, rgba(50, 76, 51, 0.08) 0%, transparent 25%),
        radial-gradient(ellipse at 60% 8%, rgba(50, 76, 51, 0.08) 0%, transparent 20%),
        /* Battlefield trenches */
        linear-gradient(90deg, transparent 0%, rgba(50, 76, 51, 0.1) 1px, transparent 2px),
        linear-gradient(90deg, transparent 0%, rgba(50, 76, 51, 0.1) 1px, transparent 2px),
        /* Cartoon-style barbed wire */
        repeating-linear-gradient(45deg, transparent 0%, rgba(50, 76, 51, 0.1) 1px, transparent 2px, transparent 15px),
        /* Sandbag walls */
        linear-gradient(45deg, transparent 0%, rgba(50, 76, 51, 0.05) 1px, transparent 2px),
        linear-gradient(-45deg, transparent 0%, rgba(50, 76, 51, 0.05) 1px, transparent 2px);
    background-size: 
        100px 100px,
        100px 100px,
        80px 80px,
        80px 80px,
        200px 200px,
        200px 200px,
        120px 120px,
        100px 100px,
        300px 150px,
        250px 120px,
        100% 100%,
        100% 100%,
        40px 40px,
        50px 50px,
        50px 50px;
    z-index: -1;
    animation: cartoonWarzone 25s linear infinite;
}

@keyframes cartoonWarzone {
    0% { 
        background-position: 
            0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    100% { 
        background-position: 
            100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%;
    }
}

/* War Zone Image Container */
.warzone-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.image-placeholder-warzone {
    width: 100%;
    height: 100%;
    background: url('img/bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgba(50, 76, 51, 0.8);
    text-align: center;
    padding: 2rem;
    backdrop-filter: blur(1px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-placeholder-warzone::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to bottom, transparent 0%, #050f05 100%);
    border-radius: 15px;
    pointer-events: none;
    z-index: 1;
}

.image-placeholder-warzone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Cartoon-style war zone elements */
        /* Tanks (simplified cartoon shapes) */
        radial-gradient(circle at 15% 85%, rgba(50, 76, 51, 0.15) 0%, rgba(50, 76, 51, 0.15) 3%, transparent 3%),
        radial-gradient(circle at 85% 90%, rgba(50, 76, 51, 0.15) 0%, rgba(50, 76, 51, 0.15) 3%, transparent 3%),
        /* Soldier helmets */
        radial-gradient(circle at 25% 75%, rgba(50, 76, 51, 0.12) 0%, rgba(50, 76, 51, 0.12) 2%, transparent 2%),
        radial-gradient(circle at 75% 80%, rgba(50, 76, 51, 0.12) 0%, rgba(50, 76, 51, 0.12) 2%, transparent 2%),
        /* Gun barrels (simple lines) */
        linear-gradient(45deg, transparent 0%, rgba(50, 76, 51, 0.15) 1px, transparent 1px),
        linear-gradient(-45deg, transparent 0%, rgba(50, 76, 51, 0.15) 1px, transparent 1px),
        /* Explosion effects */
        radial-gradient(circle at 10% 20%, rgba(50, 76, 51, 0.2) 0%, transparent 8%),
        radial-gradient(circle at 90% 30%, rgba(50, 76, 51, 0.2) 0%, transparent 6%),
        /* Cartoon-style clouds of smoke */
        radial-gradient(ellipse at 40% 5%, rgba(50, 76, 51, 0.1) 0%, transparent 25%),
        radial-gradient(ellipse at 60% 8%, rgba(50, 76, 51, 0.1) 0%, transparent 20%),
        /* Battlefield trenches */
        linear-gradient(90deg, transparent 0%, rgba(50, 76, 51, 0.15) 1px, transparent 2px),
        linear-gradient(90deg, transparent 0%, rgba(50, 76, 51, 0.15) 1px, transparent 2px),
        /* Cartoon-style barbed wire */
        repeating-linear-gradient(45deg, transparent 0%, rgba(50, 76, 51, 0.15) 1px, transparent 2px, transparent 15px),
        /* Sandbag walls */
        linear-gradient(45deg, transparent 0%, rgba(50, 76, 51, 0.08) 1px, transparent 2px),
        linear-gradient(-45deg, transparent 0%, rgba(50, 76, 51, 0.08) 1px, transparent 2px);
    background-size: 
        100px 100px,
        100px 100px,
        80px 80px,
        80px 80px,
        200px 200px,
        200px 200px,
        120px 120px,
        100px 100px,
        300px 150px,
        250px 120px,
        100% 100%,
        100% 100%,
        40px 40px,
        50px 50px,
        50px 50px;
    border-radius: 15px;
    pointer-events: none;
    z-index: 2;
    animation: cartoonWarzone 25s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.image-placeholder-warzone:hover {
    border-color: rgba(50, 76, 51, 0.6);
    opacity: 0.9;
    transform: scale(1.02);
}

.placeholder-content {
    position: relative;
    z-index: 1;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.placeholder-content p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(50, 76, 51, 0.9);
}

.placeholder-content small {
    font-size: 0.9rem;
    color: rgba(50, 76, 51, 0.7);
    font-style: italic;
}

/* When you add your image, replace the placeholder with this: */
/*
.warzone-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.warzone-image-container img:hover {
    opacity: 1;
}
*/

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: #70a981;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(50, 76, 51, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 30px rgba(50, 76, 51, 0.5); }
    to { text-shadow: 0 0 40px rgba(50, 76, 51, 0.8); }
}

.hero-slogan {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #a3b1a7;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-mystery {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-bg);
}

.btn-mystery:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 76, 51, 0.4);
}

.btn-trade {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(50, 76, 51, 0.3);
}

.btn-trade:hover {
    background: var(--accent-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 76, 51, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--text-accent);
    border-bottom: 2px solid var(--text-accent);
    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); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Memecoin Tinder Section */
.memecoin-tinder {
    padding: 6rem 0;
    background: var(--primary-bg);
    position: relative;
}

.memecoin-tinder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.tinder-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tinder-feature {
    text-align: center;
    padding: 2rem;
    background: rgba(50, 76, 51, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tinder-feature:hover {
    transform: translateY(-5px);
    border-color: var(--accent-bg);
    box-shadow: 0 10px 30px rgba(50, 76, 51, 0.2);
}

.tinder-icon {
    font-size: 2.5rem;
    color: var(--text-accent);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.tinder-feature:hover .tinder-icon {
    color: var(--text-primary);
    transform: scale(1.1);
}

.tinder-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tinder-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.tinder-demo {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.demo-card {
    background: var(--gradient-secondary);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.demo-token-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.demo-token-logo {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-token-details h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.demo-token-details p {
    color: var(--text-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.demo-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
}

.demo-description {
    margin-bottom: 2rem;
}

.demo-description p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

.demo-actions {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.demo-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-pass {
    background: rgba(220, 38, 38, 0.2);
    color: #dc2626;
    border: 2px solid #dc2626;
}

.demo-pass:hover {
    background: #dc2626;
    color: white;
    transform: scale(1.1);
}

.demo-like {
    background: rgba(50, 76, 51, 0.2);
    color: var(--accent-bg);
    border: 2px solid var(--accent-bg);
}

.demo-like:hover {
    background: var(--accent-bg);
    color: white;
    transform: scale(1.1);
}

.demo-super {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 2px solid #fbbf24;
}

.demo-super:hover {
    background: #fbbf24;
    color: white;
    transform: scale(1.1);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--secondary-bg);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(50, 76, 51, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-bg);
    box-shadow: 0 10px 30px rgba(50, 76, 51, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--text-accent);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: inherit;
    color: inherit;
}

.feature-card:hover .feature-icon {
    color: var(--text-primary);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--primary-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: url('img/bull.png') center no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-secondary);
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Roadmap Section */
.roadmap {
    padding: 6rem 0;
    background: var(--secondary-bg);
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: var(--accent-bg);
    border-radius: 50%;
    border: 4px solid var(--primary-bg);
    z-index: 1;
}

.timeline-marker.active {
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(50, 76, 51, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(50, 76, 51, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(50, 76, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(50, 76, 51, 0); }
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
