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

/* ── GROUP ────────────────────────────────────────────────────── */
.am-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.am-group-label {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.38em;
    color: #6a6258;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.am-group-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(201, 169, 110, 0.1);
}

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

/* ── CARD ─────────────────────────────────────────────────────── */
.am-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;
}

.am-card--highlight {
    border-left-color: #c9a96e;
}

.am-card--dimmed {
    opacity: 0.45;
}

/* ── CARD TITLE ───────────────────────────────────────────────── */
.am-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;
    flex-wrap: wrap;
    row-gap: 4px;
}

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

.am-players {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: #6a6258;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 2px 8px;
    margin-left: auto;
}

.am-new-badge {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    color: #c9a96e;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 4px;
    padding: 2px 7px;
}

.am-soon-badge {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    color: #6a6258;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    padding: 2px 7px;
}

/* ── VARIANTS (chips) ─────────────────────────────────────────── */
.am-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.am-variant-chip {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #c0b0a0;
    background: rgba(201, 169, 110, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 6px;
    padding: 5px 12px;
}

/* ── BODY TEXT ────────────────────────────────────────────────── */
.am-text {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.875rem;
    color: #b0a898;
    line-height: 1.7;
    letter-spacing: 0.025em;
    margin: 0;
}

/* ── BULLET LIST ──────────────────────────────────────────────── */
.am-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.am-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;
}

.am-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);
}

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

/* ── STEP LIST ────────────────────────────────────────────────── */
.am-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    counter-reset: step-counter;
}

.am-steps li {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.875rem;
    color: #b0a898;
    line-height: 1.65;
    letter-spacing: 0.025em;
    padding-left: 28px;
    position: relative;
    counter-increment: step-counter;
}

.am-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.25);
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0;
    color: #c9a96e;
    line-height: 18px;
    text-align: center;
    box-sizing: border-box;
}

.am-steps strong {
    color: #ddd0b8;
    font-weight: normal;
}

/* ── RULES BOX ────────────────────────────────────────────────── */
.am-rules-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(201, 169, 110, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 8px;
}

.am-rules-box-title {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    color: #6a6258;
    text-transform: uppercase;
    margin: 0;
}

/* ── TIP BOX ──────────────────────────────────────────────────── */
.am-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(201, 169, 110, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 7px;
}

.am-tip i {
    color: #c9a96e;
    opacity: 0.6;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.am-tip p {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.78rem;
    color: #8a8070;
    line-height: 1.65;
    letter-spacing: 0.025em;
    margin: 0;
    font-style: italic;
}

/* ── FOOTNOTE ─────────────────────────────────────────────────── */
.am-footnote {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.78rem;
    color: #5a5248;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin: 0;
    font-style: italic;
    padding-top: 6px;
    border-top: 1px solid rgba(201, 169, 110, 0.07);
}

/* ── PLAYTIME ─────────────────────────────────────────────────── */
.am-playtime {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: #5a5248;
    margin-top: auto;
    padding-top: 6px;
}

/* ── BACK LINK ────────────────────────────────────────────────── */
.am-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;
}

.am-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)) {
    .am-page {
        padding: 24px 16px 48px;
        gap: 20px;
    }

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