/* Specific styles for Terms of Use page */
.terms-hero {
    background: linear-gradient(rgba(20, 20, 40, 0.95), rgba(20, 20, 40, 0.95)), url('../images/casino-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.terms-hero h2 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 42px;
}

.terms-hero p {
    font-size: 20px;
    opacity: 0.9;
    margin-top: 15px;
}

.age-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

.last-updated {
    text-align: right;
    margin: 20px 0;
    font-style: italic;
    color: #666;
}

.terms-intro {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0 30px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.terms-intro p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #333;
}

.terms-intro p:last-child {
    margin-bottom: 0;
}

.terms-intro strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.terms-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px 30px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary-color);
}

.terms-section h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.terms-section p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.terms-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #333333;
    line-height: 1.5;
}

.terms-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    top: -8px;
}

.additional-info {
    background-color: var(--dark-bg);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.additional-info h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.additional-info p {
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .terms-hero h2 {
        font-size: 32px;
    }
    
    .terms-hero p {
        font-size: 18px;
    }
    
    .terms-section {
        padding: 20px;
    }
    
    .terms-section h3 {
        font-size: 20px;
    }
    
    .age-badge {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
} 