.legal-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 180px;
    padding-bottom: 120px;
}

.legal-inner {
    max-width: 1000px;
}

.legal-card {
    position: relative;
    text-align: left;
    padding: 42px;

    background: linear-gradient(
        to bottom,
        rgba(20,0,0,0.68),
        rgba(0,0,0,0.88)
    );

    border: 1px solid rgba(255,0,0,0.18);
    border-radius: 24px;

    box-shadow:
        0 0 50px rgba(255,0,0,0.10),
        inset 0 0 35px rgba(0,0,0,0.60);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.legal-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: radial-gradient(
        circle at top center,
        rgba(255,0,0,0.18),
        transparent 55%
    );
    opacity: 0.8;
    pointer-events: none;
}

.legal-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.legal-card h1 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow:
        0 0 24px rgba(255,0,0,0.16),
        0 8px 30px rgba(0,0,0,0.45);
}

.legal-card h2 {
    margin-top: 38px;
    margin-bottom: 14px;
    color: #fff;
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.legal-card p {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.78);
    font-size: 1.02rem;
    line-height: 1.9;
}

.legal-card strong {
    color: #fff;
}

.legal-card a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    transition: border-color 0.25s ease, color 0.25s ease;
}

.legal-card a:hover {
    border-color: rgba(255,0,0,0.6);
    color: #fff;
}

@media (max-width: 640px) {
    .legal-page {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .legal-card {
        padding: 24px;
        border-radius: 18px;
    }

    .legal-card h1 {
        font-size: 2rem;
    }

    .legal-card p {
        font-size: 0.96rem;
        line-height: 1.8;
    }
}