/* =========================================
   VARIABLES & SETUP
   ========================================= */
   :root {
    /* Color Palette */
    --clr-bg: #09090b; /* Deep Obsidian */
    --clr-surface: #18181b;
    --clr-primary: #FFD700; /* Gold */
    --clr-primary-glow: rgba(255, 215, 0, 0.4);
    --clr-secondary: #00F0FF; /* Neon Cyan */
    --clr-accent: #FF00FF; /* Neon Magenta */
    --clr-text: #FAFAFA;
    --clr-text-muted: #A1A1AA;
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Spacing */
    --nav-height: 80px;
    --section-pad: 100px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   UTILITIES & EFFECTS
   ========================================= */
.glassmorphism {
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gradient-text {
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent {
    color: var(--clr-primary);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 64px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), #FF8C00);
    color: #000;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--clr-primary-glow);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--clr-text);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--clr-primary);
    background: rgba(255, 215, 0, 0.1);
}

/* =========================================
   HEADER
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

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

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--clr-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--clr-primary);
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--clr-primary);
    color: #000;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--clr-text);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--clr-surface);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 600;
}

.mobile-btn {
    text-align: center;
    margin-top: 10px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: var(--nav-height);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.3) 0%, rgba(9, 9, 11, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text .subheadline {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
    padding: var(--section-pad) 0;
    background-color: var(--clr-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hover-scale {
    transition: transform 0.5s ease;
    border-radius: 20px;
    overflow: hidden;
}

.hover-scale:hover {
    transform: scale(1.02);
}

.about-content {
    margin-top: 32px;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
}

.about-content .highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text);
    border-left: 4px solid var(--clr-primary);
    padding-left: 20px;
    margin-top: 32px;
}

/* =========================================
   MEME SECTION
   ========================================= */
.meme-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--clr-bg) 0%, rgba(24, 24, 27, 0.8) 100%);
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.meme-card {
    background: var(--clr-surface);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.meme-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.meme-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.meme-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.meme-card:hover .meme-img-wrapper img {
    transform: scale(1.05);
}

.meme-caption {
    padding: 30px;
}

.meme-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.meme-caption p {
    color: var(--clr-text-muted);
}

/* =========================================
   ROADMAP SECTION
   ========================================= */
.roadmap {
    padding: var(--section-pad) 0;
    position: relative;
    background-color: var(--clr-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--clr-surface);
    border: 4px solid var(--clr-primary);
    border-radius: 50%;
    top: 20px;
    right: -10px;
    z-index: 10;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 30px;
    border-radius: 16px;
    position: relative;
}

.phase-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--clr-primary);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.neon-badge {
    background: rgba(0, 240, 255, 0.1);
    color: var(--clr-secondary);
    box-shadow: 0 0 10px var(--clr-secondary);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--clr-text-muted);
}

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

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

.active-phase {
    border: 1px solid rgba(0, 240, 255, 0.3);
}

/* =========================================
   COMMUNITY SECTION
   ========================================= */
.community {
    padding: var(--section-pad) 0;
    background: linear-gradient(0deg, var(--clr-bg) 0%, rgba(24, 24, 27, 0.5) 100%);
}

.community-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.community-desc {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
}

.social-cards {
    display: flex;
    gap: 20px;
}

.social-card {
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 320px;
}

.x-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.social-icon-large {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon-large svg {
    width: 24px;
    height: 24px;
}

.social-info h4 {
    font-size: 1.125rem;
}

.social-info span {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
}

.border-glow {
    border-radius: 24px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
}

.rounded-img {
    border-radius: 24px;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer .tagline {
    color: var(--clr-text-muted);
    margin-top: 16px;
    font-size: 1.1rem;
}

.footer h4 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--clr-text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--clr-primary);
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--clr-primary);
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--clr-text-muted);
    font-size: 0.875rem;
}

/* =========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================= */
@media (max-width: 992px) {
    .hero-content, .about-container, .community-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .about-content .highlight-text {
        text-align: left;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .header-actions .btn-primary {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .timeline::before {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
        text-align: left !important;
    }

    .timeline-item:nth-child(even), .timeline-item:nth-child(odd) {
        left: 0;
    }

    .timeline-dot {
        left: 21px !important;
    }
}

/* =========================================
   ANIMATIONS UTILS (JS Triggered)
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.active.reveal-up,
.active.reveal-left,
.active.reveal-right {
    opacity: 1;
    transform: translate(0, 0);
}

.fade-in {
    animation: fadeIn 1.5s ease-out forwards;
}

.slide-up {
    animation: slideUp 1.5s cubic-bezier(0.5, 0, 0, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
