/* ===== TOS & PRIVACY SHARED STYLES ===== */

.tos-container {
    display: flex;
    justify-content: center;
    padding: 140px 20px 100px;
}

.tos-content {
    max-width: 900px;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 50px 60px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    color: #eaeaea;
    line-height: 1.7;
    font-size: 1rem;
}

.tos-content h1 {
    color: #fff;
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 10px;
}

.tos-content .updated {
    color: #a8c7ff;
    text-align: center;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.tos-content h2 {
    color: #7fb0ff;
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 10px;
}

.tos-content p {
    margin-bottom: 15px;
    color: #ccc;
}

.tos-content ul {
    margin: 10px 0 20px 25px;
    color: #ccc;
}

.tos-content li {
    margin-bottom: 8px;
}

.tos-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 40px 0;
}

.tos-content a {
    color: #7fb0ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tos-content a:hover {
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .tos-content {
        padding: 30px 25px;
    }

    .tos-content h1 {
        font-size: 2rem;
    }

    .tos-content h2 {
        font-size: 1.2rem;
    }
}
