﻿/* wwwroot/css/terms.css */
.terms-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.terms-content {
    background: rgba(40, 40, 40, 0.95);
    padding: 2rem;
    border-radius: 10px;
    color: #e5e5e5;
}

.terms-list {
    counter-reset: li-counter;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

    .terms-list li {
        margin-bottom: 1rem;
        padding-left: 1.5rem;
        position: relative;
        line-height: 1.6;
        transition: all 0.3s ease;
    }

        .terms-list li:hover {
            transform: translateX(5px);
            color: #00c4cc;
        }

        .terms-list li::before {
            content: counter(li-counter);
            counter-increment: li-counter;
            position: absolute;
            left: -1.5rem;
            top: -0.1rem;
            width: 25px;
            height: 25px;
            background: #00c4cc;
            color: #1a1a1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

.accept-button {
    background: linear-gradient(45deg, #2a5460, #1e3a40);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

    .accept-button:hover {
        background: linear-gradient(45deg, #1e3a40, #122229);
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

@media (max-width: 768px) {
    .terms-container {
        margin: 1rem;
        padding: 1rem;
    }

    .terms-content {
        padding: 1.5rem;
    }
}
