@import url("../../assets/css/roseonbr.css");


.terms-container {
    max-width: 900px;
    margin: 30px auto;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 20, 0.6);
    border: 1px solid #4a6bff;
    color: var(--primary-text);
    margin-bottom: 80px;
}

.terms-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #4a6bff;
}

.terms-title {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(100, 149, 237, 0.5);
}

.terms-subtitle {
    color: #b8b8b8;
    font-size: 1.1rem;
}

.terms-content {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 15px;
    margin-bottom: 30px;
}

    .terms-content::-webkit-scrollbar {
        width: 8px;
    }

    .terms-content::-webkit-scrollbar-track {
        background: rgba(30, 41, 59, 0.5);
        border-radius: 10px;
    }

    .terms-content::-webkit-scrollbar-thumb {
        background: #4a6bff;
        border-radius: 10px;
    }

.terms-section {
    margin-bottom: 25px;
}

.section-title {
    color: #fff59d;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-left: 4px solid #4a6bff;
    padding-left: 10px;
}

.terms-text {
    margin-bottom: 15px;
    text-align: justify;
}

.terms-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 107, 255, 0.3);
}

.agree-btn {
    background: linear-gradient(135deg, #4a6bff 0%, #6495ed 100%);
    color: white;
    padding: 15px 50px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(74, 107, 255, 0.4);
    margin-top: 20px;
}

    .agree-btn:hover {
        background: linear-gradient(135deg, #6495ed 0%, #4a6bff 100%);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(74, 107, 255, 0.6);
        cursor: url(/assets/images/icons/RoseOnBr-2.cur), url(/assets/images/icons/RoseOnBr-2.cur), auto;
    }

@media (max-width: 768px) {
    .terms-container {
        padding: 20px;
    }

    .terms-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.2rem;
    }
}