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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: -2;
}

.trading-chart-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

/* Grid lines */
.grid-line {
    position: absolute;
    background: rgba(200, 200, 200, 0.3);
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
}

/* Price levels */
.price-level {
    position: absolute;
    right: 5px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: #666;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 4px;
    border-radius: 2px;
}

/* Realistic candlesticks */
.candle {
    position: absolute;
    width: 8px;
    animation: candleMove 12s linear infinite;
}

.wick {
    position: absolute;
    width: 1px;
    background: #333;
    left: 50%;
    transform: translateX(-50%);
}

.body {
    width: 100%;
    position: relative;
}

.body.green {
    background: #26a69a;
    border: 1px solid #00695c;
}

.body.red {
    background: #ef5350;
    border: 1px solid #c62828;
}

/* Moving average line */
.ma-line {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* Volume bars */
.volume-bar {
    position: absolute;
    width: 6px;
    background: rgba(100, 100, 100, 0.4);
    animation: volumePulse 4s ease-in-out infinite;
}

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

@keyframes volumePulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes chartMove {
    0% { transform: translateX(-100%) scaleY(1); }
    25% { transform: translateX(-50%) scaleY(1.2); }
    50% { transform: translateX(0%) scaleY(0.8); }
    75% { transform: translateX(50%) scaleY(1.1); }
    100% { transform: translateX(100%) scaleY(1); }
}

@keyframes candleFloat {
    0%, 100% { transform: translateY(0px) scaleY(1); }
    25% { transform: translateY(-10px) scaleY(1.1); }
    50% { transform: translateY(5px) scaleY(0.9); }
    75% { transform: translateY(-5px) scaleY(1.05); }
}

.price-numbers {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #333;
    font-weight: bold;
    animation: priceUpdate 3s ease-in-out infinite;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.price-numbers:nth-child(11) {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.price-numbers:nth-child(12) {
    top: 35%;
    right: 15%;
    animation-delay: 1s;
}

.price-numbers:nth-child(13) {
    top: 55%;
    right: 8%;
    animation-delay: 2s;
}

@keyframes priceUpdate {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; transform: scale(1.1); }
}

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

main {
    text-align: center;
}

.logo-section {
    margin-bottom: 2rem;
}

.coin-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: block;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 3rem;
    font-weight: 400;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.links a {
    color: #0066cc;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.links a:hover {
    color: #0052a3;
}

.disclaimer-link {
    color: #999999 !important;
    font-size: 0.9rem !important;
}

.disclaimer {
    font-size: 0.85rem;
    color: #999999;
    line-height: 1.5;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
    border-left: 3px solid #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 20px 15px;
    }
}
