.section {
    text-align: center;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.offer-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 16px 32px var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.offer-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
}

.offer-card h3 {
    margin: 0;
    font-size: 1.55rem;
    letter-spacing: 0.05em;
    font-weight: 800;
    color: var(--text-strong);
}

.badge {
    background: var(--panel-strong);
    color: var(--text);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 14px var(--shadow);
}

.offer-desc {
    margin: 0;
    line-height: 1.5;
    color: var(--muted);
}

.perks-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.25rem 0 0.35rem;
    table-layout: fixed;
}

.perks-table td {
    padding: 0.35rem 0.2rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    vertical-align: middle;
}

.perks-table tr:last-child td {
    border-bottom: none;
}

.perks-table .feature {
    text-align: left;
    color: var(--text);
    width: 70%;
}

.perks-table .status {
    text-align: center;
    font-weight: 800;
    width: 30%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.status.available {
    color: #3ad26a;
}

.status.available::before {
    content: "✔";
}

.status.unavailable {
    color: #e85c4a;
}

.status.unavailable::before {
    content: "✖";
}

.cta {
    margin-top: auto;
    display: inline-block;
    align-self: center;
    padding: 0.55rem 1rem;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid var(--border);
    box-shadow: 0 10px 18px var(--shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.32);
    filter: brightness(1.05);
}

.mini,
.vip,
.vip-plus,
.vip-max {
    background: var(--panel-strong);
}

.theme-dark .offer-card,
.theme-dark .badge,
.theme-dark .cta {
    border-color: #f6e39b;
}

@media (max-width: 720px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        min-height: 0;
    }
}

main {
    min-height: 160vh;
    display: flex;
    flex-direction: column;
}

.mega-footer {
    margin-top: auto;
}
