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

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
}

.site-header {
    background-color: #0d0d0d;
    border-bottom: 3px solid #4da6ff;
    padding: 20px 0;
    margin-bottom: 20px;
}

.site-title {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 2.5em;
    color: #4da6ff;
    font-weight: bold;
    text-align: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 1200px) {
    .container {
        grid-template-columns: 1fr 300px;
    }

    .promo-sidebar {
        grid-column: 2;
        grid-row: 1 / 4;
    }
}

header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #333;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #fff;
}

.subtitle {
    color: #aaa;
    font-size: 1.1em;
}

.table-container {
    overflow-x: auto;
    background-color: #252525;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: #333;
}

th {
    padding: 15px;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    border-bottom: 2px solid #444;
    position: relative;
    transition: background-color 0.2s;
}

th:hover {
    background-color: #3a3a3a;
}

.sort-arrow {
    font-size: 0.8em;
    margin-left: 5px;
    opacity: 0.3;
    transition: opacity 0.2s;
}

th.active .sort-arrow {
    opacity: 1;
}

tbody tr {
    border-bottom: 1px solid #333;
    transition: background-color 0.2s;
}

tbody tr:hover {
    background-color: #2a2a2a;
}

td {
    padding: 12px 15px;
}

td:first-child {
    font-weight: 500;
    color: #4da6ff;
}

td:nth-child(2),
td:nth-child(3),
td:nth-child(5) {
    color: #ffd700;
}

td:nth-child(4) {
    color: #aaa;
}

td:nth-child(6) {
    color: #888;
    font-family: monospace;
    font-size: 0.9em;
}

/* Promo Blocks */
.promo-block {
    background-color: #2a2a2a;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.2em;
    min-height: 250px;
}

.promo-top {
    width: 100%;
    min-height: 120px;
}

.promo-sidebar {
    min-height: 600px;
    position: sticky;
    top: 20px;
}

.promo-bottom {
    width: 100%;
    min-height: 120px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 1.8em;
    }

    th, td {
        padding: 8px 10px;
        font-size: 0.9em;
    }

    .promo-block {
        min-height: 150px;
    }

    .promo-sidebar {
        position: static;
    }
}
