/* ================= ZIPEX TOKEN - COMPLETE STYLESHEET ================= */

:root {
    --primary-color: #f8a601;
    --secondary-color: #ff6b35;
    --accent-purple: #9d4edd;
    --accent-blue: #4cc9f0;
    --dark-bg: #0a0e27;
    --light-bg: #ffffff;
    --text-dark: #1a1a2e;
    --text-light: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-gold: linear-gradient(135deg, #f8a601 0%, #ffd700 100%);
    --gradient-purple: linear-gradient(135deg, #9d4edd 0%, #c77dff 100%);
    --gradient-rainbow: linear-gradient(90deg, #ff0080, #ff8c00, #40e0d0, #8a2be2);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 40px rgba(248, 166, 1, 0.4);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #0a0e27;
}

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

/* ================= ENHANCED PARTICLES ================= */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

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

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(248, 166, 1, 0.4),
                   0 0 40px rgba(248, 166, 1, 0.2);
    }
    50% { 
        box-shadow: 0 0 30px rgba(248, 166, 1, 0.6),
                   0 0 60px rgba(248, 166, 1, 0.4);
    }
}

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

@keyframes holographic {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

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

/* ================= UTILITY CLASSES ================= */
.gradient-bg {
    background: linear-gradient(-45deg, #0a0e27, #1a1f3a, #2d1b69, #1e3a5f);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.card-3d:hover {
    transform: rotateY(5deg) rotateX(5deg) scale(1.05);
}

.neon-text {
    text-shadow: 
        0 0 10px rgba(248, 166, 1, 0.8),
        0 0 20px rgba(248, 166, 1, 0.6),
        0 0 30px rgba(248, 166, 1, 0.4),
        0 0 40px rgba(248, 166, 1, 0.2);
}

.neon-border {
    box-shadow: 
        0 0 5px rgba(248, 166, 1, 0.5),
        0 0 10px rgba(248, 166, 1, 0.4),
        0 0 15px rgba(248, 166, 1, 0.3),
        0 0 20px rgba(248, 166, 1, 0.2),
        inset 0 0 5px rgba(248, 166, 1, 0.2);
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* ================= PRELOADER ================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #0a0e27, #1a1f3a, #2d1b69, #1e3a5f);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

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

.logo-loader {
    margin-bottom: 40px;
    animation: float-medium 3s ease-in-out infinite;
}

.loader-animation {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: var(--accent-purple);
    animation-delay: 0.2s;
    animation-duration: 1.2s;
}

.loader-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: var(--accent-blue);
    animation-delay: 0.4s;
    animation-duration: 0.9s;
}

.loading-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* ================= HEADER ================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                0 0 100px rgba(248, 166, 1, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 0;
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(248, 166, 1, 0.2);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    position: absolute;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-icon .top { top: 0; }
.menu-icon .middle { top: 50%; transform: translateY(-50%); }
.menu-icon .bottom { bottom: 0; }

.menu-icon.active .top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-icon.active .middle {
    opacity: 0;
}

.menu-icon.active .bottom {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.logo {
    position: relative;
    z-index: 1001;
}

.logo img {
    max-width: 120px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(248, 166, 1, 0.3));
}

.logo img:hover {
    filter: drop-shadow(0 0 30px rgba(248, 166, 1, 0.6));
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    list-style: none;
}

.main-nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: block;
}

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

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.nav-btn a {
    background: var(--gradient-gold);
    padding: 12px 30px !important;
    border-radius: 50px;
    color: #fff !important;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(248, 166, 1, 0.3),
                0 0 30px rgba(248, 166, 1, 0.1);
    transition: all 0.3s ease;
}

.nav-btn:nth-child(6) a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4),
                0 0 30px rgba(118, 75, 162, 0.2);
}

.nav-btn:nth-child(7) a {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 5px 15px rgba(240, 147, 251, 0.4),
                0 0 30px rgba(245, 87, 108, 0.2);
}

.nav-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.nav-btn a:hover::before {
    left: 100%;
}

.nav-btn a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(248, 166, 1, 0.6),
                0 0 50px rgba(248, 166, 1, 0.4);
}

.nav-btn:nth-child(6) a:hover {
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.6),
                0 0 50px rgba(118, 75, 162, 0.4);
}

.nav-btn:nth-child(7) a:hover {
    box-shadow: 0 10px 25px rgba(240, 147, 251, 0.6),
                0 0 50px rgba(245, 87, 108, 0.4);
}

.nav-btn a::after {
    display: none;
}

/* ================= HERO SECTION ================= */
.hero-main {
    background: linear-gradient(-45deg, #0a0e27, #1a1f3a, #2d1b69, #1e3a5f);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(248, 166, 1, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(157, 78, 221, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(76, 201, 240, 0.1) 0%, transparent 50%);
    animation: pulse-glow 8s ease-in-out infinite;
}

.hero-main::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f8a601" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.6;
    pointer-events: none;
}

.hero-main .shape {
    position: absolute;
    opacity: 0.1;
    animation: float-slow 20s ease-in-out infinite;
}

.hero-main .shape-1 {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.hero-main .shape-2 {
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 50%;
    animation-delay: 2s;
}

.hero-main .shape-3 {
    bottom: 20%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    transform: rotate(45deg);
    animation-delay: 4s;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
    position: relative;
}

.hero-content h1 span {
    background: linear-gradient(90deg, #f8a601, #ffd700, #f8a601);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holographic 3s linear infinite;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(248, 166, 1, 0.6);
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    animation: fadeInUp 1s ease 0.4s both;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 166, 1, 0.1) 0%, transparent 70%);
    animation: float-slow 10s ease-in-out infinite;
    pointer-events: none;
}

.stat-box::after {
    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;
}

.stat-box:hover::after {
    left: 100%;
}

.stat-box:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(248, 166, 1, 0.3),
        inset 0 0 20px rgba(248, 166, 1, 0.1);
    border-color: rgba(248, 166, 1, 0.5);
}

.stat-box h3 {
    font-size: 42px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #f8a601 0%, #ffd700 50%, #f8a601 100%);
    background-size: 200% auto;
    color: #fff;
    box-shadow: 
        0 5px 20px rgba(248, 166, 1, 0.4),
        0 0 40px rgba(248, 166, 1, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(248, 166, 1, 0.6),
        0 0 60px rgba(248, 166, 1, 0.4);
    background-position: right center;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn-outline:hover::after {
    width: 100%;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(248, 166, 1, 0.4),
        0 0 40px rgba(248, 166, 1, 0.2);
}

.hero-graphics {
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

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

/* ================= SECTIONS ================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(248, 166, 1, 0.6);
}

.section-header h2 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-header h2 span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ================= FEATURES SECTION ================= */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 166, 1, 0.05) 0%, rgba(157, 78, 221, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.feature-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 25px 50px rgba(248, 166, 1, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 60px rgba(248, 166, 1, 0.1);
    border-color: rgba(248, 166, 1, 0.3);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 166, 1, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.feature-card:hover::after {
    opacity: 1;
    top: -100%;
    right: -100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 10px 30px rgba(248, 166, 1, 0.3),
        0 0 40px rgba(248, 166, 1, 0.2);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-gold);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
    animation: pulse-glow 3s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
    transform: rotate(15deg) scale(1.15);
    box-shadow: 
        0 15px 40px rgba(248, 166, 1, 0.5),
        0 0 60px rgba(248, 166, 1, 0.3);
}

.feature-icon i {
    font-size: 36px;
    color: #fff;
}

.feature-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 100px 0;
    background: var(--dark-bg);
    color: #fff;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.about-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.about-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ================= TOKENOMICS SECTION ================= */
.tokenomics-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    z-index: 1;
}

.token-allocation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.allocation-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.allocation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 166, 1, 0.1), transparent);
    transition: left 0.5s ease;
}

.allocation-item:hover::before {
    left: 100%;
}

.allocation-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
    border-left-color: #ffd700;
}

.allocation-item h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.allocation-percentage {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.allocation-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ================= ROADMAP SECTION ================= */
.roadmap-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(248, 166, 1, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(157, 78, 221, 0.05) 0%, transparent 50%);
}

.roadmap-section .section-header h2,
.roadmap-section .section-header p {
    color: #fff;
}

.timeline {
    position: relative;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(180deg, 
        rgba(248, 166, 1, 0.8) 0%, 
        rgba(248, 166, 1, 0.4) 30%,
        rgba(157, 78, 221, 0.4) 70%,
        rgba(157, 78, 221, 0.8) 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(248, 166, 1, 0.5);
}

.timeline-year {
    position: relative;
    margin: 60px 0;
    text-align: center;
}

.year-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(248, 166, 1, 0.1);
    backdrop-filter: blur(20px);
    border: 3px solid var(--primary-color);
    border-radius: 30px;
    padding: 20px 40px;
    position: relative;
    z-index: 10;
    box-shadow: 
        0 10px 40px rgba(248, 166, 1, 0.3),
        0 0 60px rgba(248, 166, 1, 0.2);
}

.year-badge.active {
    border-color: var(--primary-color);
    animation: pulse-glow 2s ease-in-out infinite;
}

.year-badge.future {
    border-color: var(--accent-purple);
    box-shadow: 
        0 10px 40px rgba(157, 78, 221, 0.3),
        0 0 60px rgba(157, 78, 221, 0.2);
}

.year-badge.future-bright {
    border-color: var(--accent-blue);
    box-shadow: 
        0 10px 40px rgba(76, 201, 240, 0.3),
        0 0 60px rgba(76, 201, 240, 0.2);
}

.year-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.year-status {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.timeline-item {
    padding: 20px 60px;
    position: relative;
    background-color: transparent;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item.left {
    left: 0;
    padding-right: 80px;
}

.timeline-item.right {
    left: 50%;
    padding-left: 80px;
}

.timeline-badge {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border: 5px solid #0a0e27;
    border-radius: 50%;
    top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 
        0 0 0 8px rgba(248, 166, 1, 0.2),
        0 0 30px rgba(248, 166, 1, 0.4);
}

.timeline-item.left .timeline-badge {
    right: -30px;
}

.timeline-item.right .timeline-badge {
    left: -30px;
}

.timeline-badge i {
    color: #fff;
    font-size: 24px;
}

.timeline-badge.active {
    background: linear-gradient(135deg, #f8a601, #ffd700);
    animation: pulse-glow 2s ease-in-out infinite;
}

.timeline-badge.upcoming {
    background: linear-gradient(135deg, #9d4edd, #c77dff);
}

.timeline-badge.future {
    background: linear-gradient(135deg, #4cc9f0, #00f2fe);
}

.timeline-badge.future-bright {
    background: linear-gradient(135deg, #4cc9f0, #00f2fe);
    animation: holographic 3s linear infinite;
}

.timeline-content {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 25px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(248, 166, 1, 0.3),
        0 0 80px rgba(248, 166, 1, 0.2);
    border-color: rgba(248, 166, 1, 0.3);
}

.timeline-content.neon-border {
    border-color: rgba(248, 166, 1, 0.5);
    box-shadow: 
        0 10px 40px rgba(248, 166, 1, 0.4),
        0 0 60px rgba(248, 166, 1, 0.3);
}

.timeline-content.holographic-border {
    border: 2px solid;
    border-image: linear-gradient(45deg, #ff0080, #ff8c00, #40e0d0, #8a2be2) 1;
    animation: holographic 3s linear infinite;
}

.timeline-date {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(248, 166, 1, 0.3);
}

.timeline-icon i {
    font-size: 32px;
    color: #fff;
}

.timeline-content h4 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.timeline-list li {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
}

.timeline-list li i {
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--primary-color);
    font-size: 14px;
}

.timeline-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-item.completed .timeline-content {
    border-color: rgba(76, 175, 80, 0.3);
}

.timeline-item.completed .timeline-icon {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.timeline-item.active .timeline-icon {
    background: linear-gradient(135deg, #f8a601, #ffd700);
}

.timeline-item.upcoming .timeline-icon {
    background: linear-gradient(135deg, #9d4edd, #c77dff);
}

.timeline-item.future .timeline-icon {
    background: linear-gradient(135deg, #4cc9f0, #00f2fe);
}

.timeline-item.future-bright .timeline-icon {
    background: linear-gradient(135deg, #4cc9f0, #00f2fe);
    animation: holographic 3s linear infinite;
}

/* ================= PARTNERS SECTION ================= */
.partners-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
    z-index: 1;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
    margin-top: 50px;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(248, 166, 1, 0.2);
    border-color: rgba(248, 166, 1, 0.3);
}

.partner-logo img {
    max-width: 120px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
    filter: brightness(1) invert(0);
}

/* ================= CTA SECTION ================= */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8a601 0%, #ffd700 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse-glow 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.03) 50px,
        rgba(255, 255, 255, 0.03) 100px
    );
    animation: float-slow 30s linear infinite;
    pointer-events: none;
}

.cta-section h2 {
    font-size: 52px;
    margin-bottom: 25px;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-section .hero-btns {
    position: relative;
    z-index: 1;
    justify-content: center;
}

.cta-btn-signup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5) !important;
}

.cta-btn-signup:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.7) !important;
}

.cta-btn-whitepaper {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.5) !important;
}

.cta-btn-whitepaper:hover {
    box-shadow: 0 15px 40px rgba(240, 147, 251, 0.7) !important;
}

/* ================= FLOATING SOCIAL BAR ================= */
.floating-social {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.floating-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-social a:nth-child(1) {
    background: linear-gradient(135deg, #3b5998, #5875b9);
}

.floating-social a:nth-child(2) {
    background: linear-gradient(135deg, #1da1f2, #5bb6f5);
}

.floating-social a:nth-child(3) {
    background: linear-gradient(135deg, #0088cc, #33a3d6);
}

.floating-social a:nth-child(4) {
    background: linear-gradient(135deg, #5865f2, #7983f5);
}

.floating-social a:nth-child(5) {
    background: linear-gradient(135deg, #333, #555);
}

.floating-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.floating-social a:hover::before {
    left: 100%;
}

.floating-social a:hover {
    transform: scale(1.2) rotate(360deg);
}

.floating-social a i {
    font-size: 20px;
    position: relative;
    z-index: 1;
}

/* ================= SCROLL TO TOP ================= */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8a601, #ffd700);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(248, 166, 1, 0.4);
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.scroll-top::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-gold);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    filter: blur(15px);
}

.scroll-top i {
    font-size: 24px;
    animation: float-medium 2s ease-in-out infinite;
}

.scroll-top:hover {
    transform: translateY(-10px) scale(1.1) rotate(360deg);
    box-shadow: 0 20px 50px rgba(248, 166, 1, 0.6);
}

.scroll-top.show {
    display: flex;
}

/* ================= FOOTER ================= */
footer {
    background: #0a0e27;
    color: #fff;
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

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

.footer-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-box h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

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

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 30px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 166, 1, 0.3);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

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

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .section-header h2 {
        font-size: 38px;
    }

    .token-allocation {
        grid-template-columns: 1fr;
    }

    .timeline::after {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 90px !important;
        padding-right: 20px !important;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0%;
    }

    .timeline-item.left .timeline-badge,
    .timeline-item.right .timeline-badge {
        left: 0px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
        position: fixed;
        right: 20px;
        top: 20px;
    }

    .logo img {
        max-width: 80px;
    }

    .main-nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        align-items: flex-start;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .main-nav ul.active {
        right: 0;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav ul li a {
        padding: 15px 0;
        font-size: 16px;
        width: 100%;
    }

    .nav-btn {
        width: 100%;
    }

    .nav-btn a {
        width: 100%;
        display: flex !important;
        justify-content: center;
        padding: 15px 20px !important;
        margin-top: 10px;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 998;
        animation: fadeIn 0.3s ease;
    }

    .hero-main {
        padding: 140px 0 60px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

    .floating-social {
        right: 15px;
    }

    .floating-social a {
        width: 50px;
        height: 50px;
    }

    .timeline-content {
        padding: 25px;
    }

    .timeline-content h4 {
        font-size: 20px;
    }

    .year-badge {
        padding: 15px 30px;
    }

    .year-number {
        font-size: 36px;
    }

    .timeline-stats {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .cta-section p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .stat-box h3 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .allocation-item {
        padding: 20px;
    }

    .allocation-percentage {
        font-size: 28px;
    }

    .timeline-item {
        padding-left: 70px !important;
    }

    .timeline-badge {
        width: 50px;
        height: 50px;
    }

    .timeline-content {
        padding: 20px;
    }

    .year-number {
        font-size: 28px;
    }

    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .floating-social a {
        width: 45px;
        height: 45px;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
    }
}