body {
    margin: 0;
    padding: 20px;
    font-family: 'Inter', sans-serif;
    background: #0f0f1f;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(40, 100, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(40, 220, 160, 0.1) 0%, transparent 50%);
}

.container {
    background: rgba(15, 22, 36, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

h1 {
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
    font-weight: 600;
    font-size: 2.2em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s;
}

.info-box:hover {
    transform: translateY(-2px);
}

.price {
    color: #2ae8b8;
    font-weight: 600;
    font-size: 1.4em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

th, td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    background: rgba(255, 255, 255, 0.08);
    color: #2ae8b8;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9em;
}

td {
    font-size: 0.9em;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.update-time {
    text-align: right;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 10px;
    }
    
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Анимации */
@keyframes priceUpdate {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.price-update {
    animation: priceUpdate 0.3s ease-out;
}