body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-size: 17px;
}

.terms-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 24px;
    border-radius: 12px;
    margin-top: 80px;
}

.terms-container h1 {
    font-family: 'Poppins', monospace;
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.terms-container h1 span.highlight {
    color: #00bcd4;
}

.terms-container h2 {
    font-family: 'Poppins', monospace;
    color: #f5c542;
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 400;
    border-left: 3px solid #f5c542;
    padding-left: 12px;
}

.terms-container h3 {
    font-family: 'Poppins', monospace;
    color: #f5c542;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.terms-container p, .terms-container li {
    margin-bottom: 16px;
    font-family: 'Inter', monospace;
    color: #c8c8c8;
    font-size: 16px;
    margin-bottom: 50px;
}

.terms-container a {
    color: #f5c542;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.terms-container a:hover {
    color: #fff;
    text-shadow: 0 0 5px #f5c54288;
}

.terms-container strong {
    color: #ffffff;
    font-weight: 600;
}

.terms-container em {
    color: #bbbbbb;
    font-style: italic;
}

.terms-container ul {
    padding-left: 24px;
    list-style-type: disc;
}

.terms-container code {
    background-color: #1c1c1c;
    padding: 4px 8px;
    border-radius: 6px;
    color: #f5c542;
    font-family: 'Courier New', monospace;
    font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .terms-container {
        padding: 40px 16px;
    }

    .terms-container h1 {
        font-size: 30px;
    }

    .terms-container h2 {
        font-size: 20px;
    }

    .terms-container h3 {
        font-size: 18px;
    }

    body {
        font-size: 15px;
    }

    .terms-container ul {
        padding-left: 20px;
    }

    .terms-container code {
        font-size: 14px;
    }
}
