/* TOS Page Styling */
body {
    background-color: #000000;
    color: #e0e0e0;
    font-family: 'Ubuntu Mono', monospace;
    margin: 0;
    padding: 0;
}

.tos-container {
    max-width: 1000px;
    margin: 40px auto;
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.tos-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #a55cff;
    border-bottom: 2px solid #924de0;
    padding-bottom: 10px;
    text-align: center;
}

.tos-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #c9a8ff;
    border-bottom: 1px solid #444;
    padding-bottom: 6px;
}

.tos-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.tos-content ul {
    margin: 10px 0 20px 20px;
    padding-left: 0;
    list-style-type: disc;
}

.tos-content ul li {
    margin-bottom: 8px;
}

.tos-content strong {
    color: #ffffff;
}

.tos-content a {
    color: #a55cff;
    text-decoration: underline;
}

.tos-content a:hover {
    color: #924de0;
    text-decoration: none;
}

@media (max-width: 768px) {
    .tos-container {
        padding: 20px;
        margin: 20px;
    }

    .tos-title {
        font-size: 28px;
    }

    .tos-content h3 {
        font-size: 18px;
    }

    .tos-content p, .tos-content ul li {
        font-size: 15px;
    }
}
