/* Dark theme for Terms of Service page */

.tos-hero {
    background: radial-gradient(
            1200px 600px at 10% 0%,
            rgba(147, 51, 234, 0.25),
            transparent
        ),
        radial-gradient(
            1000px 500px at 90% 10%,
            rgba(79, 70, 229, 0.2),
            transparent
        ),
        linear-gradient(180deg, #0b0b10 0%, #0e0e15 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 0;
}

.tos-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.tos-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.tos-subtitle {
    font-size: 14px;
    color: #b9b9c7;
    margin: 0;
}

.tos-container {
    max-width: 900px;
    margin: 32px auto 64px auto;
    padding: 0 16px;
}

.tos-card {
    background: rgba(20, 20, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 28px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    color: #e6e6ef;
    line-height: 1.7;
}

.tos-card h2 {
    font-size: 20px;
    color: #ffffff;
    margin: 28px 0 10px;
    font-weight: 700;
}

.tos-card p {
    margin: 12px 0;
    color: #cbcbdb;
}

.tos-card ul {
    margin: 10px 0 16px 18px;
    padding: 0;
}

.tos-card li {
    margin: 6px 0;
    color: #d0cfde;
}

@media (max-width: 640px) {
    .tos-title {
        font-size: 28px;
    }
    .tos-card {
        padding: 20px;
    }
}

