


.rules-container,
.terms-container,
.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}


.rules-header,
.terms-header,
.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.rules-header h1,
.terms-header h1,
.privacy-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.rules-header p,
.terms-header p,
.privacy-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}


.rules-content,
.terms-content,
.privacy-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


.rules-section,
.terms-section,
.privacy-section {
    margin-bottom: 30px;
}

.rules-section h2,
.terms-section h2,
.privacy-section h2 {
    color: #34495e;
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.rules-section h3,
.terms-section h3,
.privacy-section h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.rules-section p,
.rules-section li,
.terms-section p,
.terms-section li,
.privacy-section p,
.privacy-section li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.rules-section ul,
.terms-section ul,
.privacy-section ul {
    padding-left: 20px;
}

.rules-section li,
.terms-section li,
.privacy-section li {
    margin-bottom: 8px;
}


.important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
}

.important-note h4 {
    color: #856404;
    margin-bottom: 10px;
}

.legal-notice,
.privacy-notice {
    background: #e8f4fd;
    border: 1px solid #bee5eb;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
}

.legal-notice h4,
.privacy-notice h4 {
    color: #0c5460;
    margin-bottom: 10px;
}


.contact-info,
.last-updated,
.contact-privacy {
    background: #f8f9fa;
    border-radius: 5px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

.last-updated {
    font-style: italic;
}


.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.data-table th,
.data-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.data-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}


.footer-links {
    font-size: 0.95rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-link {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 0;
    margin: 2px 0;
    border-radius: 4px;
    display: block;
}

.footer-link:hover {
    color: #2980b9;
    text-decoration: none;
    background-color: rgba(52, 152, 219, 0.1);
    transform: translateX(-3px);
    padding-left: 8px;
}


@media (max-width: 768px) {
    .rules-container,
    .terms-container,
    .privacy-container {
        padding: 20px 15px;
    }
    
    .rules-content,
    .terms-content,
    .privacy-content {
        padding: 25px;
    }
    
    .rules-header h1,
    .terms-header h1,
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .footer-links {
        text-align: center !important;
        margin-top: 10px;
        align-items: center !important;
    }
    
    .footer-link {
        margin: 6px 0;
        padding: 6px 0;
        font-size: 0.8rem;
    }
    
    .data-table {
        font-size: 0.9rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 8px;
    }
} 