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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a1628 0%, #0d1b2a 50%, #1b263b 100%);
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    position: relative;
}

/* Canvas for candlesticks */
#tradingCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(10, 22, 40, 0.8) 100%);
    z-index: 2;
}

/* Stats Container */
.stats-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    padding: 0 15px;
}

.stat-card {
    background: rgba(15, 30, 50, 0.7);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 10px;
    padding: 15px 25px;
    backdrop-filter: blur(10px);
    animation: statFloat 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.1);
}

.stat-card.profit {
    border-color: rgba(0, 255, 157, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
}

.stat-card:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-card:nth-child(3) {
    animation-delay: 1s;
}

.stat-card:nth-child(4) {
    animation-delay: 1.5s;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #00bfff;
}

.stat-card.profit .stat-value {
    color: #00ff9d;
}

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

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 140px 20px 20px 20px;
}

.logo-container {
    margin-bottom: 20px;
    animation: logoGlow 2s ease-in-out infinite;
}

.logo {
    width: 180px;
    height: 180px;
    filter: drop-shadow(0 0 30px rgba(0, 191, 255, 0.6));
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(0, 191, 255, 0.6)); }
    50% { filter: drop-shadow(0 0 50px rgba(0, 191, 255, 0.9)); }
}

/* Brand Name with Animated Letters */
.brand-name {
    font-size: 72px;
    font-weight: 900;
    margin: 10px 0;
    letter-spacing: 8px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
}

.letter {
    display: inline-block;
    color: #00bfff;
    text-shadow:
        0 0 5px rgba(0, 191, 255, 0.5),
        0 0 10px rgba(0, 191, 255, 0.3),
        0 0 15px rgba(0, 191, 255, 0.2);
    animation: neonFlicker 3s ease-in-out infinite;
}

.letter:nth-child(1) { animation-delay: 0s; }
.letter:nth-child(2) { animation-delay: 0.1s; }
.letter:nth-child(3) { animation-delay: 0.2s; }
.letter:nth-child(4) { animation-delay: 0.3s; }
.letter:nth-child(5) { animation-delay: 0.4s; }
.letter:nth-child(6) { animation-delay: 0.5s; }
.letter:nth-child(7) { animation-delay: 0.6s; }
.letter:nth-child(8) { animation-delay: 0.7s; }
.letter:nth-child(9) { animation-delay: 0.8s; }

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 5px rgba(0, 191, 255, 0.6),
            0 0 10px rgba(0, 191, 255, 0.4),
            0 0 20px rgba(0, 191, 255, 0.3);
    }
    20%, 24%, 55% {
        text-shadow:
            0 0 3px rgba(0, 191, 255, 0.4),
            0 0 5px rgba(0, 191, 255, 0.2);
    }
}

.tagline {
    font-size: 18px;
    color: rgba(0, 191, 255, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Coming Soon with Neon Effect */
.coming-soon {
    font-size: 48px;
    font-weight: 900;
    margin: 20px 0;
    letter-spacing: 6px;
}

.neon-text {
    color: #fff;
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(0, 191, 255, 0.6),
        0 0 20px rgba(0, 191, 255, 0.4),
        0 0 30px rgba(0, 191, 255, 0.3);
    animation: neonPulse 1.5s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow:
            0 0 5px rgba(255, 255, 255, 0.8),
            0 0 10px rgba(0, 191, 255, 0.6),
            0 0 20px rgba(0, 191, 255, 0.4),
            0 0 30px rgba(0, 191, 255, 0.3);
    }
    to {
        text-shadow:
            0 0 3px rgba(255, 255, 255, 0.6),
            0 0 8px rgba(0, 191, 255, 0.4),
            0 0 15px rgba(0, 191, 255, 0.3),
            0 0 20px rgba(0, 191, 255, 0.2);
    }
}

.description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 25px;
}

/* Launch Info */
.launch-info {
    margin-top: 5px;
    margin-bottom: 25px;
}

.launch-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.launch-date {
    font-size: 28px;
    font-weight: 700;
    color: #00ff9d;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.4);
    letter-spacing: 4px;
}

/* Stay Tuned Section */
.stay-tuned-section {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 10px;
}

.stay-tuned-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(15, 30, 50, 0.7);
    border: 1px solid rgba(0, 191, 255, 0.4);
    border-radius: 8px;
    color: #00bfff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
    transform: translateY(-2px);
}

.social-icon {
    width: 20px;
    height: 20px;
    color: #00bfff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 160px 20px 100px;
    }

    .brand-name {
        font-size: 42px;
        letter-spacing: 3px;
        white-space: nowrap;
    }

    .coming-soon {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .stay-tuned-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .social-link {
        padding: 10px 20px;
        font-size: 13px;
    }

    .social-icon {
        width: 18px;
        height: 18px;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .logo-container {
        margin-bottom: 25px;
    }

    .stats-container {
        top: 15px;
        gap: 10px;
        padding: 0 15px;
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        padding: 12px 18px;
    }

    .stat-label {
        font-size: 10px;
    }

    .stat-value {
        font-size: 20px;
    }

    .description {
        font-size: 14px;
        padding: 0 20px;
    }

    .tagline {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .launch-date {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    body {
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
    }

    .main-content {
        padding: 150px 15px 90px;
        height: auto;
        min-height: 100vh;
        justify-content: flex-start;
    }

    .brand-name {
        font-size: 28px;
        letter-spacing: 1px;
        margin: 15px 0;
        white-space: nowrap;
    }

    .coming-soon {
        font-size: 22px;
        letter-spacing: 1.5px;
        margin: 20px 0;
    }

    .stay-tuned-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .social-link {
        padding: 8px 16px;
        font-size: 12px;
    }

    .social-icon {
        width: 16px;
        height: 16px;
    }

    .tagline {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 25px;
    }

    .logo {
        width: 70px;
        height: 70px;
    }

    .logo-container {
        margin-bottom: 15px;
    }

    .stats-container {
        top: 10px;
        gap: 8px;
        padding: 0 10px;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        padding: 10px 12px;
    }

    .stat-label {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .stat-value {
        font-size: 16px;
    }

    .description {
        font-size: 13px;
        line-height: 1.6;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .launch-date {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .launch-text {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .main-content {
        padding: 140px 10px 80px;
    }

    .brand-name {
        font-size: 24px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .coming-soon {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .stay-tuned-title {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .social-link {
        padding: 6px 12px;
        font-size: 11px;
        gap: 6px;
    }

    .social-icon {
        width: 14px;
        height: 14px;
    }

    .tagline {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .stat-card {
        padding: 8px 10px;
    }

    .stat-value {
        font-size: 14px;
    }

    .stat-label {
        font-size: 8px;
    }

    .description {
        font-size: 12px;
        line-height: 1.5;
    }

    .launch-date {
        font-size: 20px;
        letter-spacing: 2px;
    }
}
