* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a1f12;
    color: #ffffff;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    background: #0a1f12;
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0a1f12;
        flex-direction: column;
        align-items: center;
        padding: 0.1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-item {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
}

/* Main Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Value Proposition */
.value-prop {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    opacity: 0.8;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(76, 175, 80, 0.4);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.value-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #4CAF50;
}

.value-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #4CAF50, #8BC34A);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 100px 0;
}

.timeline-content {
    position: relative;
    width: 45%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 25px;
    padding: 45px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: #4CAF50;
    border: 6px solid #0a1f12;
    border-radius: 50%;
    z-index: 2;
}

.quarter {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(45deg, #FF6B35, #FF8E53);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
}

.phase-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #4CAF50;
}

.phase-description {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
}

.milestones {
    list-style: none;
}

.milestones li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    opacity: 0.85;
    font-size: 1.05rem;
}

.milestones li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.milestones__x {
  list-style: none;
}

.milestones__x li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    opacity: 0.85;
    font-size: 1.05rem;
}

.milestones__x li::before{
        content: '✗';
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
}

.status {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status.completed {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.status.in-progress {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.status.upcoming {
    background: rgba(158, 158, 158, 0.2);
    color: #9E9E9E;
}

.status.whitepaper {
    background:#ffffff;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
}

/* Social Media Section */
        .social-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(139, 195, 74, 0.08) 100%);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .social-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 195, 74, 0.1) 0%, transparent 50%);
            animation: socialGlow 8s ease-in-out infinite alternate;
        }

        @keyframes socialGlow {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }

        .social-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .social-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .social-title {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 25px;
            background: linear-gradient(45deg, #4CAF50, #8BC34A, #CDDC39);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .social-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 60px;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        @media (max-width: 1024px) {
            .social-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (min-width: 768px) and (max-width: 1024px) {
            .social-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .social-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(76, 175, 80, 0.2);
            border-radius: 20px;
            padding: 35px 25px;
            text-decoration: none;
            color: inherit;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(15px);
            cursor: pointer;
            min-height: 160px;
            justify-content: center;
        }

        .social-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .social-card:hover::before {
            left: 100%;
        }

        .social-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(76, 175, 80, 0.5);
            box-shadow: 0 25px 50px rgba(76, 175, 80, 0.2);
        }

        .social-card.twitter:hover {
            border-color: rgba(29, 161, 242, 0.5);
            box-shadow: 0 25px 50px rgba(29, 161, 242, 0.2);
        }

        .social-card.instagram:hover {
            border-color: rgba(225, 48, 108, 0.5);
            box-shadow: 0 25px 50px rgba(225, 48, 108, 0.2);
        }

        .social-card.discord:hover {
            border-color: rgba(114, 137, 218, 0.5);
            box-shadow: 0 25px 50px rgba(114, 137, 218, 0.2);
        }

        .social-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .social-card.twitter .social-icon {
            background: linear-gradient(45deg, #1DA1F2, #0d8bd9);
            color: white;
        }

        .social-card.instagram .social-icon {
            background: linear-gradient(45deg, #E1306C, #F56040, #FFDC80);
            color: white;
        }

        .social-card.discord .social-icon {
            background: linear-gradient(45deg, #7289DA, #5865F2);
            color: white;
        }

        .social-card:hover .social-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .social-info {
            text-align: center;
        }

        .social-info h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #4CAF50;
        }

        .social-card.twitter .social-info h3 {
            color: #1DA1F2;
        }

        .social-card.instagram .social-info h3 {
            color: #E1306C;
        }

        .social-card.discord .social-info h3 {
            color: #7289DA;
        }

        .social-info p {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .social-cta {
            font-size: 0.95rem;
            font-weight: 600;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .social-card:hover .social-cta {
            opacity: 1;
            transform: translateY(-2px);
        }

        .social-glow {
            position: absolute;
            top: 50%;
            right: -50px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .social-card.twitter .social-glow {
            background: radial-gradient(circle, rgba(29, 161, 242, 0.3) 0%, transparent 70%);
        }

        .social-card.instagram .social-glow {
            background: radial-gradient(circle, rgba(225, 48, 108, 0.3) 0%, transparent 70%);
        }

        .social-card.discord .social-glow {
            background: radial-gradient(circle, rgba(114, 137, 218, 0.3) 0%, transparent 70%);
        }

        .social-card:hover .social-glow {
            opacity: 1;
            right: -30px;
        }

        .social-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid rgba(76, 175, 80, 0.2);
        }

        .benefit-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .benefit-item:hover {
            background: rgba(76, 175, 80, 0.1);
            transform: translateY(-3px);
        }

        .benefit-icon {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        
        @media (max-width: 768px) {
                       .social-grid { grid-template-columns: 1fr; }
            .social-card { flex-direction: column; text-align: center; }
            .social-icon { margin-right: 0; margin-bottom: 20px; }
            .social-info { text-align: center; }
            .social-benefits { grid-template-columns: repeat(2, 1fr); }
        

        }

 

        @media (max-width: 480px) {
            .social-benefits { grid-template-columns: 1fr; }
            .social-title { font-size: 2.5rem; }
        }