:root {
    --bg-main: #020617;
    --bg-elevated: #050b20;
    --bg-elevated-soft: #07142e;
    --bg-alt: #020814;
    --accent: #4ade80;
    --accent-soft: rgba(74, 222, 128, 0.16);
    --accent-alt: #22c55e;
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --border-subtle: rgba(148, 163, 184, 0.45);
    --radius-lg: 18px;
    --radius-xl: 26px;
    --shadow-soft: 0 22px 55px rgba(15, 23, 42, 0.9);
    --shadow-chip: 0 0 0 1px rgba(15, 23, 42, 0.95);
    --container-max: 1160px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
            radial-gradient(circle at top left, rgb(149 59 246 / 35%), transparent 55%), radial-gradient(circle at bottom right, rgb(185 175 16 / 28%), transparent 55%), radial-gradient(circle at center, rgba(15, 23, 42, 0.9), #020617);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.78), transparent);
    border-bottom: 1px solid rgba(30, 64, 175, 0.65);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background:
        radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.32), transparent 65%),
        linear-gradient(110deg, #020617, #020617);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.85);
}

.brand-main {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
}

.brand-domain {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    font-size: 0.9rem;
}

.nav a {
    position: relative;
    color: var(--text-muted);
    transition: color 0.18s ease, transform 0.18s ease;
    padding-bottom: 0.1rem;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    transition: width 0.18s ease;
}

.nav a:hover {
    color: var(--text-main);
    transform: translateY(-1px);
}

.nav a:hover::after {
    width: 100%;
}

.btn {
    border-radius: 999px;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease,
        color 0.15s ease;
    white-space: nowrap;
    margin-top: 12px;
}

.btn-sm {
    padding: 0.45rem 1.15rem;
    font-size: 0.8rem;
}

.btn-primary {
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.4), transparent 60%),
                linear-gradient(135deg, #4ade80, #22c55e);
    color: #022c22;
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(34, 197, 94, 0.48);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 50px rgba(16, 185, 129, 0.6);
}

.btn-outline {
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: var(--text-main);
    background: rgba(15, 23, 42, 0.88);
}

.btn-outline:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5);
}

.btn-ghost {
    border: 1px solid transparent;
    background: rgba(15, 23, 42, 0.9);
    color: var(--text-main);
}

.btn-ghost:hover {
    border-color: rgba(148, 163, 184, 0.55);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.9);
}

.btn-full {
    width: 100%;
}

/* HERO */

.hero {
    padding: 4.3rem 0 2.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr);
    gap: 2.6rem;
    align-items: stretch;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 3.3vw, 3rem);
    line-height: 1.12;
    margin: 1rem 0 0.9rem;
}

.hero-lead {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 36rem;
    margin-bottom: 1.1rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.22rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(15, 23, 42, 0.95);
    box-shadow: var(--shadow-chip);
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.7rem;
}

.hero-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.hero-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #bbf7d0, #4ade80);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.9rem;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    max-width: 32rem;
}

.hero-meta div {
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(30, 64, 175, 0.6);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.85);
}

.meta-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.meta-value {
    font-weight: 600;
    font-size: 1rem;
}

.hero-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-inner {
    width: 100%;
    background: #b4e6d9;
    border-radius: var(--radius-xl);
    padding: 1.6rem 1.6rem 1.8rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(30, 64, 175, 0.7);
    position: relative;
    overflow: hidden;
}

.hero-card-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #222;
    margin-bottom: 1rem;
}

.hero-card-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.hero-logo {
    max-width: 150px;
    filter: drop-shadow(0 14px 26px rgba(15, 23, 42, 0.95));
}

.hero-score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.score-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #837016, #126c35);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.score-tag {
    font-size: 0.75rem;
    color: #222;
}

.hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1rem;
}

.hero-card-list li {
    font-size: 0.9rem;
    color: #222;
    margin-bottom: 0.35rem;
}

.hero-bonus {
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(34, 197, 94, 0.6);
    margin-bottom: 0.75rem;
}

.hero-bonus-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.hero-bonus-value {
    font-size: 0.96rem;
    font-weight: 600;
}

.hero-bonus-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.hero-card-actions {
    margin-bottom: 0.75rem;
}

.hero-disclaimer {
    font-size: 0.72rem;
    color: #222;
}

/* SECTIONS */

.section {
    padding: 3.1rem 0 3.3rem;
}

.section.alt {
    background:
        radial-gradient(circle at 10% 0%, rgba(15, 23, 42, 0.7), transparent 55%),
        rgba(2, 6, 23, 0.96);
}

.section-head {
    max-width: 42rem;
    margin-bottom: 2.1rem;
}

.section-head h2 {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
}

.section-head p {
    font-size: 0.98rem;
    color: var(--text-muted);
}


.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
    margin-bottom: 2.4rem;
}

.casino-card {
    background: var(--bg-elevated-soft);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem 1.5rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.85);
    position: relative;
    overflow: hidden;
}

.card-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.8rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    margin-bottom: 0.95rem;
}

.card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.card-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.card-score {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.card-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    padding-left: 1.25rem;
    position: relative;
}

.card-list li::before {
    content: "•";
    position: absolute;
    left: 0.3rem;
    top: 0.1rem;
    color: var(--accent);
    font-size: 0.8rem;
}

.card-footer {
    border-top: 1px dashed rgba(148, 163, 184, 0.7);
    padding-top: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.84rem;
}

.card-bonus-label {
    color: var(--text-muted);
}

.card-bonus {
    font-weight: 500;
}

/* TABLE */

.table-wrapper {
    background: rgba(15, 23, 42, 0.98);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem 1.4rem 1.2rem;
    box-shadow: var(--shadow-soft);
}

.table-title {
    margin: 0 0 1rem;
    font-size: 1.1rem;
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.86rem;
    margin-bottom: 0.8rem;
}

.casino-table th,
.casino-table td {
    padding: 0.7rem 0.6rem;
    text-align: left;
}

.casino-table thead th {
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(148, 163, 184, 0.75);
}

.casino-table tbody tr:nth-child(odd) {
    background: rgba(15, 23, 42, 0.98);
}

.casino-table tbody tr:nth-child(even) {
    background: rgba(15, 23, 42, 0.88);
}

.casino-table tbody td {
    border-bottom: 1px solid rgba(15, 23, 42, 1);
}

.table-note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* CRITERIA */

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.criteria-card {
    background:
        radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.18), transparent 55%),
        rgba(15, 23, 42, 0.97);
    border-radius: var(--radius-lg);
    padding: 1.15rem 1.2rem 1.25rem;
    border: 1px solid rgba(30, 64, 175, 0.7);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.9);
}

.criteria-card h3 {
    font-size: 1rem;
    margin: 0 0 0.55rem;
}

.criteria-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* FAQ */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.faq-item {
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid var(--border-subtle);
    padding: 0.9rem 1.05rem;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.9);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.96rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary {
    color: var(--accent);
}

.faq-item p {
    margin-top: 0.55rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* TIPS */

.tips-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr);
    gap: 1.8rem;
    align-items: center;
    text-align: center;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    padding-left: 1.25rem;
    position: relative;
}

.tips-list li::before {
    position: absolute;
    left: 0;
    top: 0.05rem;
    color: var(--accent);
    font-size: 0.9rem;
}

.plus18 {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid #f00;
    align-content: center;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin: auto;
    background: #eee;
    color: #000
}

.tips-banner {
    background:radial-gradient(circle at 0 0, rgb(76 31 31 / 50%), #09162d 60%), rgba(15, 23, 42, 0.99);
    border-radius: var(--radius-xl);
    padding: 1.15rem;
    border: 1px solid rgba(239, 68, 68, 0.7);
    max-width: 600px;
    margin: auto;
}

.background {
    background: url('../img/background.jpg');
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.15;
}

.tips-img {
    max-width: 120px;
    margin: 0 auto 0.8rem;
}

.tips-text {
    font-size: 0.86rem;
    color: var(--text-main);
    text-align: center;
}

.section-responsable {
    padding-bottom: 3.8rem;
}

.responsable-inner {
    display: grid;
    margin-top: 25px;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    gap: 2.1rem;
    align-items: flex-start;
}

.responsable-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.responsable-cta {
    font-weight: 500;
    color: var(--accent);
}

.responsable-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.responsable-card {
    background: rgba(15, 23, 42, 0.99);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 1rem 1rem 1.05rem;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.92);
}

.responsable-card h3 {
    font-size: 0.98rem;
    margin: 0.5rem 0 0.45rem;
}

.responsable-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin: 0;
}

/* FOOTER */

.site-footer {
    border-top: 1px solid rgba(30, 64, 175, 0.8);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
    padding: 2.3rem 0 2.5rem;
    font-size: 0.85rem;
}

.footer-brand {
    font-weight: 600;
    margin-bottom: 0.55rem;
}

.footer-text {
    color: var(--text-muted);
    margin: 0 0 0.65rem;
}

.footer-text.small {
    font-size: 0.78rem;
}

.footer-col h3 {
    font-size: 0.96rem;
    margin: 0 0 0.8rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
}

.footer-links a {
    color: var(--text-muted);
    position: relative;
    padding-left: 0.9rem;
    font-size: 0.84rem;
}

.footer-links a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 0.86rem;
}

.footer-links a:hover {
    color: var(--text-main);
}

.container-custom {
    padding: 3rem 1.5rem;
}

.glass-effect {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.95);
    padding: 2.2rem 2.6rem;
}

.glass-effect h1 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.gradient-text {
    background: linear-gradient(90deg, #38bdf8, #4ade80, #a855f7);
    -webkit-background-clip: text;
    color: transparent;
}

label {
    display: block;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: #e5e7eb;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 11px;
    font-size: 0.95rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #f9fafb;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

input::placeholder,
textarea::placeholder {
    color: rgba(148, 163, 184, 0.75);
}

input:focus,
textarea:focus {
    border-color: #38bdf8;
    background: rgba(15, 23, 42, 1);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.35);
    outline: none;
}

textarea {
    resize: none;
    min-height: 150px;
}

.btn.btn-primary {
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
    font-size: 1.02rem;
    font-weight: 600;
    color: #022c22;
    background: linear-gradient(90deg, #4ade80, #22c55e, #16a34a);
    border: none;
    box-shadow: 0 18px 40px rgba(34, 197, 94, 0.6);
    max-width: 300px;
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 52px rgba(34, 197, 94, 0.75);
}

.container-custom button {
    background: rgba(15, 23, 42, 0.92);
    padding: 0.55rem 1.15rem;
    border-radius: 10px;
    color: #e5e7eb;
    font-size: 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.5);
    transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.container-custom button:hover {
    background: rgba(15, 23, 42, 1);
    border-color: #38bdf8;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.9);
}

.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-modal {
    background: rgba(15, 23, 42, 0.96);
    padding: 2.1rem 2.6rem;
    border-radius: 20px;
    max-width: 440px;
    width: 92%;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.8);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.7);
}

.age-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #38bdf8, #4ade80, #a855f7);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.age-text {
    color: #e5e7eb;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.age-btn {
    display: block;
    padding: 0.95rem;
    border-radius: 13px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all .18s ease;
}

.age-yes {
    background: linear-gradient(90deg, #4ade80, #22c55e);
    color: #022c22;
    box-shadow: 0 18px 40px rgba(34, 197, 94, 0.6);
}

.age-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 52px rgba(34, 197, 94, 0.75);
}

.age-no {
    background: rgba(15, 23, 42, 0.95);
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.age-no:hover {
    background: rgba(15, 23, 42, 1);
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        order: -1;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .criteria-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .responsable-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav {
        display: none;
    }
}

@media (max-width: 640px) {
    .casino-table th, .casino-table td {
            padding: 0.5rem 0.4rem;
    }
    .header-inner {
        padding-inline: 0.25rem;
    }

    .hero {
        padding-top: 3rem;
    }

    .card-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .criteria-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .glass-effect {
        padding: 1.8rem 1.6rem;
    }
}
