/* style.css */
:root {
    --primary: #6C63FF;
    --secondary: #FF6B6B;
    --dark: #1A1A1A;
    --light: #FFFFFF;
    --accent: #00F0FF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

/* Futuristic Navigation Styling */
.nav-futuristic {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand Styling */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 40px;
    filter: drop-shadow(0 0 10px #00f0ff);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px #00f0ff;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: #00f0ff;
    letter-spacing: 2px;
}

/* Menu Items Styling */
.menu-items {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.menu-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.item-icon {
    font-size: 0.8rem;
    color: #00f0ff;
    transition: all 0.3s ease;
}

.item-text {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.item-hover {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f0ff, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-item:hover .item-hover {
    transform: scaleX(1);
}

.menu-item:hover .item-icon {
    transform: scale(1.2);
    color: #fff;
}

/* CTA Button */
.nav-cta {
    position: relative;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, #6C63FF, #00f0ff);
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: ctaShine 3s infinite;
}

@keyframes ctaShine {
    100% {
        left: 100%;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.toggle-line {
    width: 30px;
    height: 2px;
    background: #00f0ff;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-items {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .toggle-line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active .toggle-line:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .toggle-line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}
/* Modern Futuristic Styling */
:root {
    --primary: #00f0ff;
    --secondary: #6C63FF;
    --accent: #FF3366;
    --dark: #0A0A14;
    --light: #FFFFFF;
    --gradient: linear-gradient(45deg, var(--primary), var(--secondary));
}

/* Hero Section Styling */
/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

/* Video Background */
.hero video {
    position: fixed; /* Changed to fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

/* Overlay with Gradient */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(10, 10, 20, 0.4) 0%,
        rgba(10, 10, 20, 0.95) 100%
    );
    z-index: 1;
}

/* Content Container */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 2;
}

/* Content Grid */
.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* Text Elements */
.hero-text {
    animation: fadeIn 1s ease-out;
}

.cyber-glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--light);
    text-shadow: 0 0 10px var(--primary);
    position: relative;
    animation: glitch 3s infinite;
}

.cyber-text {
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 1.5rem 0;
    opacity: 0;
    animation: slideIn 0.8s ease forwards 0.5s;
}

/* Stats Section */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-box {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--primary);
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 240, 255, 0.2),
        transparent
    );
    animation: shine 3s infinite;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animations */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    100% { left: 100%; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .cyber-glitch {
        font-size: 3.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat-box {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 6rem 1rem 2rem;
    }

    .cyber-glitch {
        font-size: 2.5rem;
    }

    .cyber-text {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
}

/* Features Section */
.features {
    background: linear-gradient(135deg, var(--dark) 0%, #141428 100%);
    padding: 100px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

/* Tokenomics Section */
.tokenomics {
    background: var(--dark);
    padding: 100px 0;
}

.metric-card {
    background: rgba(0, 240, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--primary);
}

.metric-value {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.metric-label {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animations */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* Button and Social Media Styles */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

/* Primary Buy Button */
.cyber-button.primary {
    position: relative;
    padding: 1.2rem 2.8rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cyber-button.primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary), 
        var(--secondary), 
        var(--accent));
    border-radius: 5px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

.btn-content {
    position: relative;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, 
        rgba(0, 240, 255, 0.8) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.cyber-button.primary:hover .btn-glow {
    opacity: 0.2;
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    gap: 1.5rem;
}

.cyber-button.social {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
    transition: all 0.3s ease;
}

.cyber-button.social i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(0, 240, 255, 0.3) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-button.social:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
}

.cyber-button.social:hover i {
    color: var(--light);
}

.cyber-button.social:hover .social-glow {
    opacity: 1;
}

/* Button Animations */
@keyframes borderGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes buttonPulse {
    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);
    }
}