/* TOS Versioned Section Styles */
.tos-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.tos-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tos-version-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tos-version-selector label {
    color: #fff;
    font-size: 1.1rem;
}

.tos-version-dropdown {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tos-version-dropdown:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.tos-version-dropdown:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.tos-date {
    color: var(--accent-color);
    font-size: 0.95rem;
    margin: 0;
}

.tos-content {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    line-height: 1.8;
}

.tos-section {
    margin-bottom: 35px;
}

.tos-section h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 107, 0, 0.2);
}

.tos-item {
    margin-bottom: 20px;
    padding-left: 20px;
}

.tos-item strong {
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.tos-item p {
    color: #ccc;
    margin: 0;
    line-height: 1.7;
}

.tos-item ul {
    margin: 10px 0;
    padding-left: 20px;
}

.tos-item ul li {
    color: #ccc;
    margin-bottom: 5px;
}

.tos-item a {
    color: var(--accent-color);
    text-decoration: underline;
}

.tos-item a:hover {
    color: #ff8c33;
}

.tos-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.tos-footer {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin: 20px 0 0 0;
}

@media (max-width: 768px) {
    .tos-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .tos-content {
        padding: 25px;
    }
}