html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    background: #000;
}

/* ================= BACKGROUND ================= */

.bg {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 0;
    transition: opacity 1.5s ease;
}

.bg-shade {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 1;
}

/* ================= CENTER ================= */

.center-wrap {
    position: absolute;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 1360px;
}

.server-title {
    margin: 0 0 34px 0;
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* ================= PANELS ================= */

.ui-block {
    display: flex;
    justify-content: center;
    gap: 34px;
}

.panel {
    background: rgba(0, 0, 0, 0.48);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 1px 8px rgba(0,0,0,0.15);

    overflow: hidden;

    display: flex;
    flex-direction: column;
}

/* ================= LEFT PANEL ================= */

.left-panel {
    width: 530px;
    height: 620px;

    display: flex;
    flex-direction: column;
}

/* ================= RIGHT PANEL ================= */

.right-panel {
    width: 620px;
    height: 620px;

    display: flex;
    flex-direction: column;
}

/* ================= SECTIONS ================= */

.section {
    margin: 0;
}

.player-section {
    margin-top: 14px;

    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* ================= HEADERS ================= */

.section-header {
    background: rgba(0, 0, 0, 0.55);
    padding: 20px 18px;
    font-size: 30px;
    text-align: center;

    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ================= BODIES ================= */

.section-body {
    padding: 12px 18px 10px;
}

.player-body {
    flex-grow: 1;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* ================= INFO ROWS ================= */

.info-row {
    display: grid;
    grid-template-columns: 24px auto 1fr;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 6px;
}

.icon {
    font-size: 16px;
    text-align: center;
}

.label {
    font-size: 17px;
    font-weight: 700;
    text-align: left;
}

.value {
    font-size: 17px;
    font-weight: 500;
    color: #f3f3f3;
}

/* ================= FOOTER ================= */

.footer-text {
    margin-top: auto;

    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255,255,255,0.08);

    text-align: center;
    font-size: 13px;
    line-height: 1.4;

    padding: 12px;
}

/* ================= RULES ================= */

.rules-body {
    padding: 14px 20px;

    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.rule {
    position: relative;
    padding-left: 44px;

    margin-bottom: 4px;

    font-size: 20px;
    line-height: 1.2;
}

.rule span {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;

    text-align: right;
    font-weight: 800;
}