/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #05080f;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Loading Screen ===== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #05080f 0%, #0a1628 50%, #120a28 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.lightning-icon {
    font-size: 5rem;
    animation: flash 0.5s ease-in-out infinite;
    text-shadow:
        0 0 30px #00ffd5,
        0 0 60px #00ffd5,
        0 0 100px #00ffd5;
}

@keyframes flash {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.loading-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 20px;
    background: linear-gradient(90deg, #00ffd5, #a855f7, #00ffd5);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s linear infinite;
    letter-spacing: 0.15em;
}

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

.loading-bar {
    width: 280px;
    height: 4px;
    background: rgba(0, 255, 213, 0.2);
    margin: 30px auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00ffd5, #a855f7);
    animation: loading 2.5s ease-in-out;
    box-shadow: 0 0 30px rgba(0, 255, 213, 0.8);
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

/* ===== Fade In Animation ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 20px;
    background: linear-gradient(180deg, #05080f 0%, #0a1628 30%, #120a28 60%, #0a1628 80%, #05080f 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Lightning Effects */
.lightning {
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #00ffd5, transparent);
    opacity: 0;
    filter: blur(1px);
}

.l1 {
    left: 20%;
    animation: lightning 4s ease-in-out infinite;
}

.l2 {
    left: 50%;
    animation: lightning 5s ease-in-out infinite 1s;
}

.l3 {
    left: 80%;
    animation: lightning 6s ease-in-out infinite 2s;
}

@keyframes lightning {
    0%, 90%, 100% { opacity: 0; }
    92%, 94%, 96% { opacity: 1; }
    93%, 95% { opacity: 0.3; }
}

/* Electric Particles */
.electric-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.electric-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00ffd5;
    border-radius: 50%;
    box-shadow:
        0 0 10px #00ffd5,
        0 0 20px #00ffd5,
        0 0 40px #00ffd5;
    animation: particle 8s linear infinite;
}

.electric-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.electric-particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; }
.electric-particles span:nth-child(3) { left: 40%; top: 30%; animation-delay: 2s; }
.electric-particles span:nth-child(4) { left: 55%; top: 70%; animation-delay: 0.5s; }
.electric-particles span:nth-child(5) { left: 70%; top: 40%; animation-delay: 1.5s; }
.electric-particles span:nth-child(6) { left: 85%; top: 80%; animation-delay: 2.5s; }
.electric-particles span:nth-child(7) { left: 15%; top: 85%; animation-delay: 3s; }
.electric-particles span:nth-child(8) { left: 60%; top: 15%; animation-delay: 0.8s; }
.electric-particles span:nth-child(9) { left: 90%; top: 50%; animation-delay: 1.8s; }
.electric-particles span:nth-child(10) { left: 35%; top: 90%; animation-delay: 2.8s; }

@keyframes particle {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-30px) scale(1.5);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-40px) scale(1.2);
        opacity: 0.9;
    }
}

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

.hero-image {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 30px;
    animation: heroFloat 5s ease-in-out infinite, heroGlow 3s ease-in-out infinite;
    border: 4px solid rgba(0, 255, 213, 0.5);
    box-shadow:
        0 0 60px rgba(0, 255, 213, 0.5),
        0 0 120px rgba(168, 85, 247, 0.3),
        inset 0 0 60px rgba(0, 100, 100, 0.2);
}

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

@keyframes heroGlow {
    0%, 100% {
        box-shadow:
            0 0 60px rgba(0, 255, 213, 0.5),
            0 0 120px rgba(168, 85, 247, 0.3);
    }
    50% {
        box-shadow:
            0 0 100px rgba(0, 255, 213, 0.8),
            0 0 180px rgba(168, 85, 247, 0.5);
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #00ffd5, #a855f7, #00ffd5);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    text-shadow: none;
    letter-spacing: 0.1em;
}

.hero-tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #00ffd5;
    text-shadow: 0 0 30px rgba(0, 255, 213, 0.8);
    letter-spacing: 0.2em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 20px 55px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s ease;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.btn::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.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00ffd5 0%, #00b396 50%, #008f77 100%);
    color: #000;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 255, 213, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 60px rgba(0, 255, 213, 0.6),
        0 0 100px rgba(0, 255, 213, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #a855f7;
    border: 2px solid #a855f7;
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.15);
    box-shadow:
        0 0 40px rgba(168, 85, 247, 0.4),
        inset 0 0 20px rgba(168, 85, 247, 0.1);
    transform: translateY(-5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    font-size: 2rem;
    color: #00ffd5;
    animation: bounce 2s infinite;
    text-shadow: 0 0 20px rgba(0, 255, 213, 0.8);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(20px); opacity: 0.3; }
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #00ffd5, #a855f7, #00ffd5);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.4em;
}

/* ===== About Section ===== */
.about {
    padding: 150px 0;
    background: linear-gradient(180deg, #05080f 0%, #0a1628 50%, #05080f 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffd5, #a855f7, transparent);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 400px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow:
        0 30px 80px rgba(0, 255, 213, 0.2),
        0 0 60px rgba(168, 85, 247, 0.2);
}

.electric-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    border: 2px solid rgba(0, 255, 213, 0.3);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

.electric-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid rgba(168, 85, 247, 0.2);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite 0.5s;
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.2; }
}

.about-text {
    flex: 1;
}

.about-text .main-text {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.8;
    font-weight: 600;
}

.about-text .sub-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.stat {
    text-align: center;
    padding: 30px 40px;
    background: rgba(0, 255, 213, 0.03);
    border: 1px solid rgba(0, 255, 213, 0.15);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.stat:hover {
    background: rgba(0, 255, 213, 0.08);
    border-color: rgba(0, 255, 213, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 213, 0.15);
}

.stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #00ffd5;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 213, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

/* ===== Banner Section ===== */
.banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(5, 8, 15, 1) 0%,
        rgba(5, 8, 15, 0) 20%,
        rgba(5, 8, 15, 0) 80%,
        rgba(5, 8, 15, 1) 100%);
    pointer-events: none;
}

/* ===== Tokenomics Section ===== */
.tokenomics {
    padding: 150px 0;
    background: #05080f;
    position: relative;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.token-card {
    background: linear-gradient(135deg, rgba(0, 255, 213, 0.03) 0%, rgba(168, 85, 247, 0.03) 100%);
    border: 1px solid rgba(0, 255, 213, 0.15);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00ffd5, #a855f7);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.token-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 213, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.token-card:hover {
    border-color: #00ffd5;
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0, 255, 213, 0.15),
        0 0 60px rgba(168, 85, 247, 0.1);
}

.token-card:hover::before {
    transform: scaleX(1);
}

.token-card:hover::after {
    opacity: 1;
}

.token-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.token-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.token-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* ===== How to Buy Section ===== */
.buy {
    padding: 150px 0;
    background: linear-gradient(180deg, #05080f 0%, #0a1628 50%, #05080f 100%);
}

.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 40px 50px;
    background: rgba(0, 255, 213, 0.02);
    border: 1px solid rgba(0, 255, 213, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00ffd5, #a855f7);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.step:hover {
    border-color: rgba(0, 255, 213, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 255, 213, 0.1);
}

.step:hover::before {
    transform: scaleY(1);
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00ffd5, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #fff;
}

.step-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.ca-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: rgba(0, 255, 213, 0.02);
    border: 2px solid rgba(0, 255, 213, 0.3);
    border-radius: 20px;
    position: relative;
}

.ca-box::before {
    content: '⚡';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 1.5rem;
    opacity: 0.3;
}

.ca-box::after {
    content: '⚡';
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.3;
}

.ca-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: #00ffd5;
    letter-spacing: 0.3em;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.ca-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: monospace;
    font-size: 1.1rem;
    color: #fff;
    word-break: break-all;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 213, 0.15);
}

.copy-btn {
    background: linear-gradient(135deg, #00ffd5, #00b396);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    box-shadow: 0 0 30px rgba(0, 255, 213, 0.6);
    transform: scale(1.05);
}

/* ===== Community Section ===== */
.community {
    padding: 150px 0;
    background: #05080f;
    text-align: center;
}

.community-text {
    font-size: 1.6rem;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 60px 100px;
    background: linear-gradient(135deg, rgba(0, 255, 213, 0.03) 0%, rgba(168, 85, 247, 0.03) 100%);
    border: 1px solid rgba(0, 255, 213, 0.2);
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 213, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover {
    border-color: #00ffd5;
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0, 255, 213, 0.2),
        0 0 80px rgba(168, 85, 247, 0.15);
}

.social-link:hover::before {
    opacity: 1;
}

.social-icon {
    font-size: 5rem;
    position: relative;
    z-index: 1;
}

.social-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.social-cta {
    font-size: 1rem;
    color: #00ffd5;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(0, 255, 213, 0.5);
}

/* ===== Footer ===== */
.footer {
    padding: 100px 0;
    background: linear-gradient(180deg, #05080f 0%, #030508 100%);
    text-align: center;
    border-top: 1px solid rgba(0, 255, 213, 0.1);
}

.footer-logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 30px;
    opacity: 0.8;
    border: 2px solid rgba(0, 255, 213, 0.2);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(0, 255, 213, 0.4);
}

.footer-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    max-width: 550px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.copyright {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    
    .about-image {
        flex: none;
        width: 320px;
    }
    
    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .banner {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-image {
        width: 280px;
        height: 280px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 16px 40px;
        font-size: 0.9rem;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        width: 100%;
        max-width: 400px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-link {
        padding: 50px 70px;
    }
    
    .banner {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        width: 220px;
        height: 220px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .ca-address {
        flex-direction: column;
    }
    
    .token-card {
        padding: 40px 20px;
    }
    
    .banner {
        height: 200px;
    }
}
