/* ── PAGE WRAPPER ─────────────────────────────────────────────── */
.tr-page {
    max-width: 1080px;
    margin: 0 auto;
    padding: 32px 24px 64px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── HEADER ───────────────────────────────────────────────────── */
.tr-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding-bottom: 8px;
}

.tr-notice-bar {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: #6a6258;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
}

.tr-preamble {
    font-family: 'HwyGothic', sans-serif;
    font-size: 1rem;
    color: #c0b8a8;
    letter-spacing: 0.05em;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    max-width: 560px;
}

/* ── 2-COLUMN GRID ────────────────────────────────────────────── */
.tr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── RULE CARDS ───────────────────────────────────────────────── */
.tr-card {
    background: rgba(14, 14, 14, 0.82);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-left: 3px solid rgba(201, 169, 110, 0.45);
    border-radius: 10px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tr-card--notice {
    border-left-color: #c9a96e;
}

.tr-card--warning {
    border-left-color: rgba(190, 80, 60, 0.7);
}

.tr-card-title {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    color: #c9a96e;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
    text-transform: uppercase;
    flex-shrink: 0;
}

.tr-card--warning .tr-card-title {
    color: #c87060;
    border-bottom-color: rgba(190, 80, 60, 0.15);
}

.tr-card-icon {
    font-size: 0.8rem;
    opacity: 0.85;
}

.tr-card-intro {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.875rem;
    color: #8a8070;
    margin: 0;
    letter-spacing: 0.03em;
    line-height: 1.65;
}

/* ── RULE LIST ────────────────────────────────────────────────── */
.tr-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.tr-list li {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.875rem;
    color: #b0a898;
    line-height: 1.7;
    letter-spacing: 0.025em;
    padding-left: 15px;
    position: relative;
}

.tr-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.45);
}

.tr-card--warning .tr-list li::before {
    background: rgba(190, 80, 60, 0.5);
}

.tr-list strong {
    color: #ddd0b8;
    font-weight: normal;
}

/* ── CHEATING SECTION ─────────────────────────────────────────── */
.tr-cheating {
    /* inherits tr-card, spans full width automatically outside the grid */
}

.tr-expulsion-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(190, 60, 40, 0.08);
    border: 1px solid rgba(190, 80, 60, 0.22);
    border-radius: 8px;
    margin-top: 2px;
}

.tr-expulsion-notice i {
    font-size: 1.1rem;
    color: rgba(190, 90, 70, 0.8);
    flex-shrink: 0;
    margin-top: 3px;
}

.tr-expulsion-notice p {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.875rem;
    color: #c0a098;
    line-height: 1.7;
    letter-spacing: 0.025em;
    margin: 0;
}

.tr-expulsion-notice strong {
    color: #ddb8a8;
    font-weight: normal;
}

/* ── BACK LINK ────────────────────────────────────────────────── */
.tr-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 8px 18px;
    background: rgba(201, 169, 110, 0.07);
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 8px;
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: #c9a96e;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.tr-back:hover {
    background: rgba(201, 169, 110, 0.14);
    border-color: rgba(201, 169, 110, 0.5);
}

/* ── MOBILE ───────────────────────────────────────────────────── */
@media only screen and ((max-width: 767px) or (hover: none)) {
    .tr-page {
        padding: 24px 16px 48px;
        gap: 14px;
    }

    .tr-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
