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

:root {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    font-weight: 400;
    color: #e5e7eb;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.content {
    text-align: center;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chart-icon {
    width: 200px;
    height: 120px;
    margin: 0 auto 40px;
    color: #64748b;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.3));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 50px;
}

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

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(100, 116, 139, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
    min-width: 180px;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
}

.info-card p {
    font-size: 0.95rem;
    color: #cbd5e1;
}

.candle {
    width: 30px;
    height: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.candle .wick {
    width: 2px;
    height: 100%;
    position: absolute;
}

.candle .body {
    width: 100%;
    height: 40px;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.green-candle .wick {
    background: #10b981;
}

.green-candle .body {
    background: #10b981;
}

.red-candle .wick {
    background: #ef4444;
}

.red-candle .body {
    background: #ef4444;
}

.status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #10b981;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
    box-shadow: 0 0 10px #10b981;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.contact {
    font-size: 1rem;
    color: #94a3b8;
}

.contact a {
    color: #10b981;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact a:hover {
    border-bottom-color: #10b981;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .info {
        gap: 20px;
    }

    .info-card {
        min-width: 140px;
    }

    .chart-icon {
        width: 150px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .info {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        width: 100%;
        max-width: 250px;
    }
}