/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Mono', monospace;
    background: #000;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

/* Advanced 3D Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: radial-gradient(ellipse at center, #0f3460 0%, #000 70%);
}

.stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(3px 3px at 20px 30px, #00f5ff, transparent),
        radial-gradient(3px 3px at 40px 70px, rgba(255,255,255,1), transparent),
        radial-gradient(2px 2px at 90px 40px, #ff006e, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(0,245,255,0.8), transparent),
        radial-gradient(2px 2px at 160px 30px, #8338ec, transparent),
        radial-gradient(1px 1px at 300px 120px, #00f5ff, transparent),
        radial-gradient(3px 3px at 250px 180px, rgba(255,255,255,0.9), transparent);
    background-repeat: repeat;
    background-size: 400px 300px;
    animation: starfield 20s linear infinite;
}

.stars::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 100px, #ff006e, transparent),
        radial-gradient(2px 2px at 150px 50px, #8338ec, transparent),
        radial-gradient(1px 1px at 200px 150px, #00f5ff, transparent);
    background-repeat: repeat;
    background-size: 300px 200px;
    animation: starfield 25s linear infinite reverse;
}

@keyframes starfield {
    0% { transform: translateY(0) translateX(0) rotate(0deg); }
    100% { transform: translateY(-300px) translateX(-400px) rotate(360deg); }
}

/* Shooting Stars Enhanced */
.shooting-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.shooting-stars::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: linear-gradient(-45deg, #00f5ff, #ff006e, transparent);
    border-radius: 100%;
    box-shadow: 
        0 0 20px #00f5ff,
        0 0 40px #ff006e,
        0 0 60px #8338ec;
    animation: shooting-star-enhanced 4s linear infinite;
}

.shooting-stars::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 80%;
    width: 4px;
    height: 4px;
    background: linear-gradient(-45deg, #ff006e, #8338ec, transparent);
    border-radius: 100%;
    box-shadow: 
        0 0 15px #ff006e,
        0 0 30px #8338ec;
    animation: shooting-star-enhanced 6s linear infinite 2s;
}

@keyframes shooting-star-enhanced {
    0% {
        transform: translate(-50%, -50%) rotate(-45deg) translateX(-1000px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) rotate(-45deg) translateX(1500px);
        opacity: 0;
    }
}

/* Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Section - Redesigned */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(131, 56, 236, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    animation: hero-entrance 1.5s ease-out;
    position: relative;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: linear-gradient(45deg, transparent, rgba(0, 245, 255, 0.05), transparent);
    border-radius: 20px;
    filter: blur(20px);
    z-index: -1;
}

.hero-title h1 {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.8);
    line-height: 1.1;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Holographic Glitch Effect - Removed */
.glitch {
    position: relative;
}

@keyframes glitch-hologram {
    0%, 14%, 15%, 49%, 50%, 99%, 100% {
        transform: translate3d(0, 0, 0) skew(0deg);
        filter: hue-rotate(0deg);
    }
    1% {
        transform: translate3d(-3px, 0, 0) skew(-2deg);
        filter: hue-rotate(90deg);
    }
    2% {
        transform: translate3d(3px, 0, 0) skew(2deg);
        filter: hue-rotate(180deg);
    }
    48% {
        transform: translate3d(-2px, 0, 0) skew(-1deg);
        filter: hue-rotate(270deg);
    }
    49% {
        transform: translate3d(2px, 0, 0) skew(1deg);
        filter: hue-rotate(360deg);
    }
}

.ticker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    padding: 25px 40px;
    background: 
        linear-gradient(135deg, rgba(0, 245, 255, 0.15), rgba(255, 0, 110, 0.15)),
        rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 245, 255, 0.5);
    border-radius: 60px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 0 30px rgba(0, 245, 255, 0.3),
        inset 0 0 30px rgba(0, 245, 255, 0.1);
}

.ticker-symbol {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-shadow: 
        0 0 20px rgba(0, 245, 255, 0.8),
        0 0 40px rgba(0, 245, 255, 0.6),
        0 0 60px rgba(0, 245, 255, 0.4);
    filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.7));
}

.pulse-ring {
    width: 50px;
    height: 50px;
    border: 3px solid #00f5ff;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.3), transparent);
    animation: simple-pulse 2s infinite;
    box-shadow: 
        0 0 20px rgba(0, 245, 255, 0.6),
        inset 0 0 20px rgba(0, 245, 255, 0.2);
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #00f5ff, #ffffff);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: core-glow 1.5s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.8);
}

@keyframes simple-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(0, 245, 255, 0.6),
            inset 0 0 20px rgba(0, 245, 255, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 
            0 0 40px rgba(0, 245, 255, 0.8),
            inset 0 0 30px rgba(0, 245, 255, 0.3);
    }
}

@keyframes core-glow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Advanced Contract Section */
.contract-section {
    margin-bottom: 50px;
    position: relative;
}

.contract-label {
    font-size: 1rem;
    color: #00f5ff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: 
        linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 110, 0.1)),
        rgba(0, 0, 0, 0.3);
    border: 2px solid;
    border-image: linear-gradient(45deg, #00f5ff, #ff006e, #8338ec) 1;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contract-address::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: scan-line 3s linear infinite;
}

@keyframes scan-line {
    0% { left: -100%; }
    100% { left: 100%; }
}

.contract-address span {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    color: #00f5ff;
    word-break: break-all;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.copy-btn {
    background: linear-gradient(45deg, #00f5ff, #ff006e);
    border: none;
    padding: 12px 16px;
    border-radius: 10px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.copy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-btn:hover::before {
    opacity: 1;
}

.copy-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 245, 255, 0.5);
}

/* Futuristic Action Buttons */
.action-buttons {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.btn {
    position: relative;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    overflow: hidden;
    display: inline-block;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.btn-primary {
    background: linear-gradient(45deg, #ff006e, #8338ec, #00f5ff);
    background-size: 300% 300%;
    color: #fff;
    animation: gradient-shift 4s ease-in-out infinite;
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.3);
    color: #00f5ff;
    border: 2px solid #00f5ff;
    backdrop-filter: blur(10px);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(255, 0, 110, 0.4),
        0 0 50px rgba(0, 245, 255, 0.3);
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff006e, #8338ec, #00f5ff);
    border-radius: 50px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover .btn-glow {
    opacity: 0.7;
}

/* Enhanced Social Links */
.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid;
    border-image: linear-gradient(45deg, #00f5ff, #ff006e) 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f5ff;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00f5ff, #ff006e);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-link:hover::before {
    opacity: 0.2;
}

.social-link:hover {
    color: #fff;
    transform: scale(1.2) rotate(360deg);
    box-shadow: 
        0 0 30px rgba(0, 245, 255, 0.6),
        0 0 60px rgba(255, 0, 110, 0.4);
}

/* Hero Right - 3D Logo */
.hero-right {
    display: flex;
    justify-content: center;
    animation: hero-entrance 1.5s ease-out 0.5s both;
    perspective: 1000px;
}

.logo-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.main-logo {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 50px rgba(0, 245, 255, 0.8))
        drop-shadow(0 0 100px rgba(255, 0, 110, 0.6));
    animation: logo-3d-float 4s ease-in-out infinite;
    z-index: 2;
    transition: all 0.5s ease;
}

.logo-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle, rgba(0, 245, 255, 0.3) 0%, transparent 30%),
        radial-gradient(circle, rgba(255, 0, 110, 0.2) 0%, transparent 50%);
    border-radius: 50%;
    animation: logo-glow-pulse 3s ease-in-out infinite;
    filter: blur(20px);
}

.orbit-ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: orbit-rotation 15s linear infinite;
}

.ring-1 {
    width: 450px;
    height: 450px;
    border-top: 3px solid #00f5ff;
    border-right: 3px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.ring-2 {
    width: 380px;
    height: 380px;
    border-right: 3px solid #ff006e;
    border-bottom: 3px solid rgba(255, 0, 110, 0.3);
    animation-duration: 20s;
    animation-direction: reverse;
    box-shadow: 0 0 25px rgba(255, 0, 110, 0.5);
}

.ring-3 {
    width: 320px;
    height: 320px;
    border-bottom: 3px solid #8338ec;
    border-left: 3px solid rgba(131, 56, 236, 0.3);
    animation-duration: 25s;
    box-shadow: 0 0 20px rgba(131, 56, 236, 0.5);
}

@keyframes logo-3d-float {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
    25% { 
        transform: translateY(-20px) rotateX(5deg) rotateY(90deg);
    }
    50% { 
        transform: translateY(-30px) rotateX(0deg) rotateY(180deg);
    }
    75% { 
        transform: translateY(-20px) rotateX(-5deg) rotateY(270deg);
    }
}

@keyframes logo-glow-pulse {
    0%, 100% { 
        opacity: 0.5; 
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.9; 
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes orbit-rotation {
    0% { transform: rotate(0deg) rotateX(0deg); }
    25% { transform: rotate(90deg) rotateX(10deg); }
    50% { transform: rotate(180deg) rotateX(0deg); }
    75% { transform: rotate(270deg) rotateX(-10deg); }
    100% { transform: rotate(360deg) rotateX(0deg); }
}

@keyframes hero-entrance {
    0% { 
        transform: translateY(100px) rotateX(-30deg);
        opacity: 0;
    }
    100% { 
        transform: translateY(0) rotateX(0deg);
        opacity: 1;
    }
}

/* Section Base Styles */
section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 245, 255, 0.02) 0%,
        transparent 50%,
        rgba(255, 0, 110, 0.02) 100%
    );
    z-index: -1;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(45deg, #00f5ff, #ff006e, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: title-hologram 3s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00f5ff, #ff006e, #8338ec, transparent);
    animation: title-underline 2s ease-in-out infinite;
}

@keyframes title-hologram {
    0%, 100% { 
        text-shadow: 
            0 0 20px rgba(0, 245, 255, 0.5),
            0 0 40px rgba(255, 0, 110, 0.3);
    }
    50% { 
        text-shadow: 
            0 0 30px rgba(255, 0, 110, 0.7),
            0 0 60px rgba(131, 56, 236, 0.5);
    }
}

@keyframes title-underline {
    0%, 100% { width: 100px; opacity: 0.5; }
    50% { width: 300px; opacity: 1; }
}

/* About Section */
.about {
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 245, 255, 0.05) 0%, transparent 50%),
        rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.about-content p {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 40px;
    color: #e0e0e0;
    text-align: justify;
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    backdrop-filter: blur(15px);
}

.about-content p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 245, 255, 0.05), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-content p:hover::before {
    opacity: 1;
}

/* Vision & Mission - 3D Cards */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    perspective: 1000px;
}

.vm-card {
    background: 
        linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 110, 0.1)),
        rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 50px;
    backdrop-filter: blur(20px);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #00f5ff, #ff006e, #8338ec, #00f5ff);
    animation: border-rotation 4s linear infinite;
    z-index: -1;
}

.vm-card::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 23px;
    z-index: -1;
}

@keyframes border-rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vm-card:hover {
    transform: translateY(-20px) rotateX(10deg) rotateY(5deg);
    box-shadow: 
        0 30px 60px rgba(0, 245, 255, 0.3),
        0 0 100px rgba(255, 0, 110, 0.2);
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #00f5ff, #ff006e, #8338ec);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #000;
    position: relative;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

.vm-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #00f5ff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vm-card p {
    line-height: 1.8;
    color: #e0e0e0;
    font-size: 1.1rem;
}

/* Core Values - Advanced Grid */
.core-values {
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 0, 110, 0.05) 0%, transparent 50%),
        rgba(0, 0, 0, 0.1);
}

.values-intro {
    text-align: center;
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 80px;
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(15px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.value-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: #00f5ff;
    box-shadow: 
        0 25px 50px rgba(0, 245, 255, 0.3),
        0 0 80px rgba(255, 0, 110, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff006e, #8338ec, #00f5ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #fff;
    animation: value-icon-pulse 2s ease-in-out infinite;
}

@keyframes value-icon-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(0, 245, 255, 0.7);
    }
}

.value-card h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #00f5ff;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.value-card p {
    line-height: 1.8;
    color: #e0e0e0;
    font-size: 1rem;
}

/* ICO Section - Holographic Display */
.ico-content {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.ico-card {
    background: 
        linear-gradient(135deg, rgba(0, 245, 255, 0.15), rgba(255, 0, 110, 0.15)),
        rgba(0, 0, 0, 0.5);
    border: 3px solid;
    border-image: linear-gradient(45deg, #00f5ff, #ff006e, #8338ec, #00f5ff) 1;
    border-radius: 30px;
    padding: 80px;
    text-align: center;
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.6s ease;
}

.ico-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    animation: hologram-rotation 6s linear infinite;
}

@keyframes hologram-rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ico-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 30px 80px rgba(0, 245, 255, 0.4),
        0 0 120px rgba(255, 0, 110, 0.3);
}

.ico-price,
.ico-allocation {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.price-label,
.allocation-label {
    display: block;
    font-size: 1.2rem;
    color: #00f5ff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.price-value,
.allocation-value {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00f5ff, #ff006e, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: value-glow 2s ease-in-out infinite;
}

@keyframes value-glow {
    0%, 100% { 
        text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 60px rgba(255, 0, 110, 0.7);
        transform: scale(1.05);
    }
}

.allocation-note {
    display: block;
    font-size: 1rem;
    color: #ff006e;
    margin-top: 15px;
    font-style: italic;
    animation: blink-glow 3s ease-in-out infinite;
}

@keyframes blink-glow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; text-shadow: 0 0 20px rgba(255, 0, 110, 0.8); }
}

/* Coin Details - Matrix Style */
.coin-details {
    background: 
        radial-gradient(circle at 50% 50%, rgba(131, 56, 236, 0.05) 0%, transparent 50%),
        rgba(0, 0, 0, 0.2);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.detail-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 245, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.detail-item:hover::before {
    transform: translateX(100%);
}

.detail-item:hover {
    border-color: #00f5ff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.3);
}

.detail-label {
    font-weight: 700;
    color: #ff006e;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
}

.detail-value {
    font-family: 'Space Mono', monospace;
    color: #00f5ff;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

/* Enhanced Roadmap */
.roadmap-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, #00f5ff, #ff006e, #8338ec, #00f5ff);
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #00f5ff, #ff006e);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 
        0 0 0 8px rgba(0, 245, 255, 0.3),
        0 0 30px rgba(0, 245, 255, 0.6);
    border: 4px solid #000;
    animation: marker-pulse 3s ease-in-out infinite;
}

@keyframes marker-pulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 
            0 0 0 8px rgba(0, 245, 255, 0.3),
            0 0 30px rgba(0, 245, 255, 0.6);
    }
    50% { 
        transform: translateX(-50%) scale(1.2);
        box-shadow: 
            0 0 0 15px rgba(255, 0, 110, 0.4),
            0 0 50px rgba(255, 0, 110, 0.8);
    }
}

.timeline-content {
    background: 
        linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 110, 0.1)),
        rgba(0, 0, 0, 0.6);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 40px;
    width: 45%;
    backdrop-filter: blur(20px);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00f5ff, #ff006e, #8338ec, #00f5ff);
    border-radius: 25px;
    z-index: -1;
    animation: border-glow 3s linear infinite;
}

@keyframes border-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -40px;
    border-left-color: rgba(0, 245, 255, 0.5);
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -40px;
    border-right-color: rgba(0, 245, 255, 0.5);
    transform: translateY(-50%);
}

.timeline-content:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 245, 255, 0.3);
}

.timeline-content h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    background: linear-gradient(45deg, #00f5ff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.timeline-content h5 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #00f5ff;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.8);
}

.timeline-content p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1rem;
}

/* Tokenomics */
.tokenomics {
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 245, 255, 0.05) 0%, transparent 50%),
        rgba(0, 0, 0, 0.2);
}

.tokenomics-content {
    text-align: center;
    position: relative;
}

.tokenomics-chart {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 25px;
    border: 3px solid;
    border-image: linear-gradient(45deg, #00f5ff, #ff006e, #8338ec) 1;
    backdrop-filter: blur(20px);
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 50px rgba(0, 245, 255, 0.5));
}

.tokenomics-chart:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 80px rgba(255, 0, 110, 0.7));
}

/* Burning Section */
.burning-content {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.burn-card {
    background: 
        linear-gradient(135deg, rgba(255, 0, 110, 0.15), rgba(255, 69, 0, 0.15)),
        rgba(0, 0, 0, 0.6);
    border: 3px solid #ff006e;
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    max-width: 600px;
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease;
}

.burn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 69, 0, 0.1), transparent);
    animation: fire-flicker 2s ease-in-out infinite;
}

@keyframes fire-flicker {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.02); }
}

.burn-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 80px rgba(255, 0, 110, 0.4);
}

.burn-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff006e, #ff4500, #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: #fff;
    animation: fire-pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes fire-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 69, 0, 0.6);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 60px rgba(255, 0, 110, 0.8);
    }
}

.burn-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #ff006e, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.burn-card p {
    line-height: 1.8;
    color: #e0e0e0;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Exchanges - Futuristic Grid */
.exchanges {
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 0, 110, 0.05) 0%, transparent 50%),
        rgba(0, 0, 0, 0.1);
}

.audit-badge {
    text-align: right;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.audit-label {
    font-size: 1.2rem;
    color: #00f5ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.audit-logo {
    background: linear-gradient(45deg, #000, #333);
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    border: 2px solid #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    animation: audit-glow 3s ease-in-out infinite;
}

@keyframes audit-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
        border-color: #00f5ff;
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 0, 110, 0.7);
        border-color: #ff006e;
    }
}

.exchanges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.exchange-item {
    background: 
        linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 110, 0.1)),
        rgba(0, 0, 0, 0.6);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.6s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.exchange-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from 0deg, #00f5ff, #ff006e, #8338ec, #00f5ff);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: exchange-border 4s linear infinite;
}

.exchange-item:hover::before {
    opacity: 1;
}

@keyframes exchange-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.exchange-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.exchange-item:hover::after {
    transform: translateX(100%);
}

.exchange-item:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(5deg);
    box-shadow: 
        0 30px 80px rgba(0, 245, 255, 0.3),
        0 0 100px rgba(255, 0, 110, 0.2);
}

.exchange-logo {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.exchange-logo span {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.3rem;
    display: block;
    transition: all 0.3s ease;
}

/* Individual Exchange Styling Enhanced */
.binance span {
    background: linear-gradient(45deg, #f3ba2f, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(243, 186, 47, 0.5);
}

.bitfinex span {
    background: linear-gradient(45deg, #00d4aa, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

.coinbase span {
    background: linear-gradient(45deg, #0052ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 82, 255, 0.5);
}

.bybit span {
    background: linear-gradient(45deg, #f7a600, #ffbb00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(247, 166, 0, 0.5);
}

.coinex span {
    background: linear-gradient(45deg, #00d4aa, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

.gateio span {
    background: linear-gradient(45deg, #00d4aa, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

.bingx span {
    background: linear-gradient(45deg, #5cbddb, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(91, 189, 219, 0.5);
}

.kucoin span {
    background: linear-gradient(45deg, #24ae8f, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(36, 174, 143, 0.5);
}

.mexc span {
    background: linear-gradient(45deg, #00d4aa, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

/* Footer - Cyberpunk Style */
.footer {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 20, 40, 0.9)),
        rgba(0, 0, 0, 0.8);
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #00f5ff, #ff006e, #8338ec) 1;
    padding: 80px 0 30px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 245, 255, 0.02), transparent);
    animation: footer-scan 8s linear infinite;
}

@keyframes footer-scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-brand h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    background: linear-gradient(45deg, #00f5ff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    animation: brand-glow 3s ease-in-out infinite;
}

@keyframes brand-glow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    }
    50% { 
        text-shadow: 0 0 40px rgba(255, 0, 110, 0.7);
    }
}

.footer-brand p {
    color: #8a8a8a;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 245, 255, 0.3);
    padding-top: 30px;
    text-align: center;
    color: #8a8a8a;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 50px 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
    }
    
    .hero-title h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .ticker {
        padding: 20px 25px;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .ticker-symbol {
        font-size: 2.5rem;
    }
    
    .pulse-ring {
        width: 40px;
        height: 40px;
    }
    
    .contract-section {
        margin-bottom: 30px;
    }
    
    .contract-address {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contract-address span {
        font-size: 0.8rem;
        word-break: break-all;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 15px 30px;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        margin-bottom: 40px;
    }
    
    .timeline-content {
        width: 90% !important;
        margin: 20px 0 !important;
    }
    
    .roadmap-timeline::before {
        left: 20px;
        transform: none;
    }
    
    .timeline-marker {
        left: 20px;
        transform: none;
    }
    
    .timeline-content::before,
    .timeline-content::after {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .logo-container {
        width: 300px;
        height: 300px;
    }
    
    .main-logo {
        width: 200px;
        height: 200px;
    }
    
    .ring-1 {
        width: 320px;
        height: 320px;
    }
    
    .ring-2 {
        width: 280px;
        height: 280px;
    }
    
    .ring-3 {
        width: 240px;
        height: 240px;
    }
    
    .exchanges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .ico-card {
        padding: 40px 20px;
    }
    
    .price-value,
    .allocation-value {
        font-size: 3rem;
    }
    
    .burn-card {
        padding: 40px 20px;
        margin: 0 10px;
    }
    
    .audit-badge {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .floating-nav {
        display: none;
    }
    
    /* Mobile specific animations */
    .hero-left {
        animation: mobileSlideUp 1s ease-out;
    }
    
    .hero-right {
        animation: mobileSlideDown 1s ease-out;
    }
}

@keyframes mobileSlideUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes mobileSlideDown {
    0% { transform: translateY(-50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}