/* ============================================
   ZillionXec Website Styles
   ============================================ */

/* Variables */
:root {
    --primary-color: #FFD700;
    --secondary-color: #1E90FF;
    --dark-bg: #0a0e27;
    --darker-bg: #050811;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-secondary: linear-gradient(135deg, #1E90FF 0%, #4169E1 100%);
    --circuit-pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 215, 0, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.loader::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 4px solid rgba(30, 144, 255, 0.2);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite reverse;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Particle Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { width: 5px; height: 5px; left: 40%; animation-delay: 1s; }
.particle:nth-child(5) { width: 4px; height: 4px; left: 50%; animation-delay: 3s; }
.particle:nth-child(6) { width: 6px; height: 6px; left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-delay: 2s; }
.particle:nth-child(8) { width: 5px; height: 5px; left: 80%; animation-delay: 4s; }
.particle:nth-child(9) { width: 4px; height: 4px; left: 90%; animation-delay: 1s; }
.particle:nth-child(10) { width: 6px; height: 6px; left: 95%; animation-delay: 3s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Floating Animation */
@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: floatUp 3s ease-in-out infinite;
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient {
    background: linear-gradient(-45deg, #FFD700, #FFA500, #1E90FF, #4169E1);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* Navigation */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.btn-connect {
    background: var(--gradient-primary) !important;
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    color: var(--dark-bg) !important;
    font-weight: 600;
}

.btn-connect:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    background-image: var(--circuit-pattern);
    opacity: 0.3;
    z-index: -1;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 200px;
    }
}

/* Parallax Effect */
.parallax-element {
    transition: transform 0.3s ease-out;
}

/* Glow Effects */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.glow-effect:hover::before {
    opacity: 1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-outline-light {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.hero-stats {
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Token Visual */
.token-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.token-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border: 5px solid var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
    animation: pulse 3s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.token-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 100px rgba(255, 215, 0, 0.6);
}

.token-circle:hover .token-x img {
    animation-duration: 1.5s;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.token-x {
    font-size: 8rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #1E90FF 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
    position: relative;
    /*animation: gradientShift 3s ease infinite, floatUp 4s ease-in-out infinite;*/
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    transform-style: preserve-3d;
    perspective: 1000px;
}


/* 3D Coin Animation for Token Image */
.token-x img {
    display: block;
    width: 350px !important;
    height: 350px !important;
    border-radius: 50%;
    object-fit: cover;
    transform-style: preserve-3d;
    animation: coinRotate3D 4s linear infinite;
    /*box-shadow: 0 0 50px rgba(255, 215, 0, 0.5), 
                0 0 100px rgba(255, 215, 0, 0.3),
                inset 0 0 50px rgba(0, 0, 0, 0.3);*/
    transition: all 0.3s ease;
    backface-visibility: visible;
}

.token-x:hover img {
    animation-duration: 2s;
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.8), 
                0 0 150px rgba(255, 215, 0, 0.5),
                inset 0 0 80px rgba(0, 0, 0, 0.5);
}

@keyframes coinRotate3D {
    0% {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: perspective(1000px) rotateY(90deg) rotateX(10deg);
    }
    50% {
        transform: perspective(1000px) rotateY(180deg) rotateX(0deg);
    }
    75% {
        transform: perspective(1000px) rotateY(270deg) rotateX(-10deg);
    }
    100% {
        transform: perspective(1000px) rotateY(360deg) rotateX(0deg);
    }
}

/* Alternative: More realistic coin flip animation */
.token-x img.flip-coin {
    animation: coinFlip3D 3s ease-in-out infinite;
}

@keyframes coinFlip3D {
    0% {
        transform: perspective(1000px) rotateY(0deg) scale(1);
    }
    25% {
        transform: perspective(1000px) rotateY(90deg) scaleX(0.8);
    }
    50% {
        transform: perspective(1000px) rotateY(180deg) scaleX(0.1);
    }
    75% {
        transform: perspective(1000px) rotateY(270deg) scaleX(0.8);
    }
    100% {
        transform: perspective(1000px) rotateY(360deg) scale(1);
    }
}


@keyframes coinRotate3D {
    0% {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: perspective(1000px) rotateY(90deg) rotateX(10deg);
    }
    50% {
        transform: perspective(1000px) rotateY(180deg) rotateX(0deg);
    }
    75% {
        transform: perspective(1000px) rotateY(270deg) rotateX(-10deg);
    }
    100% {
        transform: perspective(1000px) rotateY(360deg) rotateX(0deg);
    }
}

/* Alternative: Flip coin animation (more realistic coin flip) */
.token-x img.flip-coin {
    animation: coinFlip3D 3s ease-in-out infinite;
}

@keyframes coinFlip3D {
    0% {
        transform: perspective(1000px) rotateY(0deg);
    }
    50% {
        transform: perspective(1000px) rotateY(180deg) scaleX(0.1);
    }
    100% {
        transform: perspective(1000px) rotateY(360deg);
    }
}

.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: var(--circuit-pattern);
    opacity: 0.5;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(255, 215, 0, 0.5);
    }
}

/* Features Section */
.features-section {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
    animation: rotate 10s linear infinite;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--dark-bg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 15px;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.5;
}

.feature-card h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Tokenomics Section */
.tokenomics-section {
    background: var(--darker-bg);
    padding: 5rem 0;
}

.tokenomics-chart {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.tokenomics-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tokenomics-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid;
}

.tokenomics-color {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    flex-shrink: 0;
}

.tokenomics-content h5 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.tokenomics-content p {
    color: var(--text-muted);
    margin: 0;
}

/* How to Buy Section */
.how-to-buy-section {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.step-card:hover::after {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.step-card:hover .step-number {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-bg);
    font-family: 'Orbitron', sans-serif;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.step-card:hover .step-number::before {
    opacity: 0.6;
}

.step-card h5 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    background: var(--darker-bg);
    padding: 5rem 0;
}

.cta-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 4rem 2rem;
    backdrop-filter: blur(10px);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer h5, .footer h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 215, 0, 0.2);
    margin: 2rem 0 1rem;
}

/* Page Header */
.page-header {
    background: var(--darker-bg);
    padding: 150px 0 80px;
    text-align: center;
    background-image: var(--circuit-pattern);
    background-size: 200px;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
}

/* Whitepaper Styles */
.whitepaper-content {
    background: var(--dark-bg);
}

.whitepaper-nav {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    top: 100px;
}

.whitepaper-nav h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.nav-list {
    list-style: none;
    padding: 0;
}

.nav-list li {
    margin-bottom: 0.5rem;
}

.nav-list li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
}

.nav-list li a:hover {
    color: var(--primary-color);
    background: rgba(255, 215, 0, 0.1);
}

.whitepaper-body {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.whitepaper-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.whitepaper-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.whitepaper-section h3 {
    color: var(--text-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.whitepaper-section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.whitepaper-section ul {
    color: var(--text-muted);
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.whitepaper-section ul li {
    margin-bottom: 0.5rem;
}

.whitepaper-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.whitepaper-section a:hover {
    text-decoration: underline;
}

.whitepaper-section a:hover {
    text-decoration: underline;
}

.whitepaper-download {
    margin-top: 3rem;
}

/* Roadmap Styles */
.roadmap-section {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.roadmap-timeline {
    position: relative;
    padding: 2rem 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
}

.roadmap-phase {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.phase-marker {
    position: absolute;
    left: 0;
    top: 0;
}

.marker-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    border: 3px solid var(--text-muted);
}

.marker-icon.active {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border-color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.phase-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.phase-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.phase-content:hover::before {
    left: 100%;
}

.phase-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-left-width: 6px;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.phase-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.phase-badge.completed {
    background: rgba(50, 205, 50, 0.2);
    color: #32CD32;
}

.phase-badge.active {
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-color);
}

.phase-badge.upcoming {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.phase-content h2 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin: 0;
}

.phase-body ul {
    list-style: none;
    padding: 0;
}

.phase-body ul li {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.phase-body ul li i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.milestones-section {
    background: var(--darker-bg);
    padding: 5rem 0;
}

.milestone-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.milestone-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 215, 0, 0.1), transparent 30%);
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.milestone-card:hover::before {
    opacity: 1;
}

.milestone-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.milestone-card:hover .milestone-icon {
    transform: rotateY(360deg) scale(1.2);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
}

.milestone-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark-bg);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.milestone-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.3s ease;
}

.milestone-card:hover .milestone-icon::after {
    opacity: 0.7;
}

.milestone-card h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.milestone-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
}

.milestone-card p {
    color: var(--text-muted);
    margin: 0;
}

/* Airdrop Styles */
.airdrop-section {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.airdrop-info .card,
.airdrop-form .card,
.airdrop-tasks .card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.airdrop-info .card-body,
.airdrop-form .card-body,
.airdrop-tasks .card-body {
    padding: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.info-item h5 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-muted);
    margin: 0;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--text-light);
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25), 0 0 20px rgba(255, 215, 0, 0.2);
    transform: scale(1.02);
}

.form-control:valid {
    border-color: rgba(50, 205, 50, 0.5);
}

.form-control:invalid:not(:placeholder-shown) {
    border-color: rgba(255, 99, 71, 0.5);
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-muted);
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.task-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.task-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.task-content {
    flex: 1;
}

.task-content h5 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.task-content p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.task-reward {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.airdrop-stats .stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.airdrop-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
}

.airdrop-stats p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Modal Styles */
.modal-content {
    background: var(--dark-bg);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.modal-title {
    color: var(--primary-color);
}

.modal-body {
    color: var(--text-muted);
}

.modal-body h6 {
    color: var(--text-light);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.modal-footer {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.btn-close {
    filter: invert(1);
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

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

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
}

/* Button Enhancements */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

/* Card Tilt Effect */
.card-tilt {
    transition: transform 0.3s ease;
}

.card-tilt:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: revealText 0.6s ease forwards;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress Bar Animation */
.progress-bar {
    height: 4px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 1s ease;
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Selection Color */
::selection {
    background: rgba(255, 215, 0, 0.3);
    color: var(--text-light);
}

/* Focus Visible */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .token-circle {
        width: 300px;
        height: 300px;
    }
    
    .token-x {
        font-size: 5rem;
    }
    
    .token-x img {
        width: 300px !important;
        height: 300px !important;
    }
    
    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .roadmap-phase {
        padding-left: 60px;
    }
    
    .marker-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .whitepaper-nav {
        position: relative !important;
        margin-bottom: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
    }
}

.text-muted{color: #b0b0b0 !important;}
.table thead th{background: none!important;}
.table thead td{background: none!important; color:#ffffff!important}
h1,h2,h3,h4,h5,h6{color: #FFD700 !important;transform: none!important;}
h1 span,h2 span,h3 span,h4 span,h5 span,h6 span{color: #FFD700 !important;transform: none!important;}