/* ===== TERMS PAGE STYLES ===== */
.terms-page {
    background: var(--current-bg);
}

.terms-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
}

.terms-title {
    font-size: 2.5rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--current-text);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--current-text);
}

.discord-link {
    color: #5865F2;
    text-decoration: underline;
    transition: color 0.3s;
}

.discord-link:hover {
    color: #4752C4;
}

.regulation-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.regulation-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--current-text);
}

.regulation-list {
    list-style: none;
    padding-left: 0;
}

.regulation-list li {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.regulation-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    background-color: rgba(255, 255, 255, 0.08);
}

.regulation-list strong {
    color: var(--current-text);
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* ===== TERMS PAGE IMPROVEMENTS ===== */

/* Fade-in animation for main content */
.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}