* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffd700;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid #ffd700;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-btn.active,
.lang-btn:hover {
    background: #ffd700;
    color: #1a1a2e;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #ffd700;
    color: #1a1a2e;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Featured Events */
.featured-events {
    padding: 4rem 0;
    background: white;
}

.featured-events h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e9ecef;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.event-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.event-date {
    color: #667eea;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.event-location {
    color: #666;
    margin-bottom: 1rem;
}

.event-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 1rem;
}

.event-status.available {
    background: #d4edda;
    color: #155724;
}

.event-status.limited {
    background: #fff3cd;
    color: #856404;
}

.event-status.vip {
    background: #f8d7da;
    color: #721c24;
}

/* Upcoming Events */
.upcoming-events {
    padding: 4rem 0;
    background: #f8f9fa;
}

.upcoming-events h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.events-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.event-item:hover {
    transform: translateX(5px);
}

.event-date-box {
    background: #667eea;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-right: 1.5rem;
    min-width: 80px;
}

.event-date-box .day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.event-date-box .month {
    display: block;
    font-size: 0.9rem;
}

.event-details {
    flex: 1;
}

.event-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.event-details p {
    color: #666;
    margin-bottom: 0.25rem;
}

.event-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #ffd700;
    color: #1a1a2e;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #ffed4e;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-item {
        flex-direction: column;
        text-align: center;
    }

    .event-date-box {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .event-card {
        padding: 1rem;
    }

    .featured-events h2,
    .upcoming-events h2 {
        font-size: 2rem;
    }
}

/* =================================
   GENERAL PAGE STYLES
   ================================= */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-hero p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
    margin-top: 1rem;
}

/* =================================
   ABOUT PAGE STYLES
   ================================= */

.about-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 600;
}

.about-text h3 {
    color: #667eea;
    margin: 2.5rem 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.about-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.about-list li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-size: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.team-member p {
    color: #666;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-size: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* =================================
   CONTACT PAGE STYLES
   ================================= */

.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #1a1a2e;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.contact-details h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    color: #1a1a2e;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Departments Section */
.departments-section {
    padding: 4rem 0;
    background: white;
}

.departments-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-size: 2.5rem;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.department-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.department-card:hover {
    transform: translateY(-5px);
}

.dept-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.department-card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.department-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.department-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.department-card a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-size: 2.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-item h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* =================================
   CASINOS PAGE STYLES
   ================================= */

.casinos-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.casino-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.casino-header h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    margin: 0;
}

.casino-rating {
    font-size: 1.2rem;
}

.casino-info {
    margin-bottom: 1.5rem;
}

.casino-info p {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.casino-info strong {
    color: #333;
}

.casino-events h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.casino-events ul {
    list-style: none;
    padding: 0;
}

.casino-events li {
    background: #f8f9fa;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    color: #555;
    border-left: 4px solid #667eea;
}

/* Casino Features Section */
.casino-features {
    padding: 4rem 0;
    background: white;
}

.casino-features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* =================================
   RESPONSIBLE GAMING STYLES
   ================================= */

.responsible-gaming-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.main-content h2 {
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.main-content h3 {
    color: #667eea;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.main-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.rg-list,
.warning-list,
.tools-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.rg-list li,
.tools-list li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.rg-list li::before,
.tools-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.warning-list li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.warning-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

/* Help Resources */
.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.resource-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.resource-card h4 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.resource-card p {
    margin-bottom: 0.5rem;
    color: #555;
}

.resource-card a {
    color: #667eea;
    text-decoration: none;
}

.resource-card a:hover {
    text-decoration: underline;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quick-help,
.tips-box,
.age-verification {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.quick-help h3,
.tips-box h3,
.age-verification h3 {
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.help-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.help-btn {
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.help-btn:hover {
    transform: translateY(-2px);
}

.help-btn.primary {
    background: #667eea;
    color: white;
}

.help-btn.secondary {
    background: #6c757d;
    color: white;
}

.help-btn.danger {
    background: #dc3545;
    color: white;
}

.help-btn:not(.primary):not(.secondary):not(.danger) {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e1e5e9;
}

.tips-box ul {
    list-style: none;
    padding: 0;
}

.tips-box li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.tips-box li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

/* Commitment Section */
.commitment-section {
    padding: 4rem 0;
    background: white;
}

.commitment-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-size: 2.5rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.commitment-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
}

.commitment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.commitment-item h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.commitment-item p {
    color: #666;
    line-height: 1.6;
}

/* =================================
   LEGAL PAGES STYLES
   ================================= */

.legal-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.legal-text h2 {
    color: #1a1a2e;
    margin: 3rem 0 1.5rem 0;
    font-size: 2rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: #667eea;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.legal-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.legal-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.legal-text strong {
    color: #333;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid #667eea;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .about-grid,
    .contact-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .team-grid,
    .values-grid,
    .departments-grid,
    .faq-grid,
    .casinos-grid,
    .features-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .help-resources {
        grid-template-columns: 1fr;
    }
    
    .legal-text {
        padding: 2rem;
    }
    
    .legal-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 2rem 0;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .about-content,
    .contact-section,
    .responsible-gaming-content,
    .legal-content,
    .casinos-section,
    .team-section,
    .values-section,
    .departments-section,
    .faq-section,
    .casino-features,
    .commitment-section {
        padding: 2rem 0;
    }
    
    .contact-form-container,
    .legal-text {
        padding: 1.5rem;
    }
    
    .stat-card,
    .team-member,
    .value-item,
    .contact-item,
    .department-card,
    .faq-item,
    .casino-card,
    .feature-item,
    .commitment-item,
    .quick-help,
    .tips-box,
    .age-verification {
        padding: 1.5rem;
    }
}

/* =================================
   ANIMATIONS
   ================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card,
.team-member,
.value-item,
.department-card,
.faq-item,
.feature-item,
.commitment-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation delays */
.casino-card:nth-child(1) { animation-delay: 0.1s; }
.casino-card:nth-child(2) { animation-delay: 0.2s; }
.casino-card:nth-child(3) { animation-delay: 0.3s; }
.casino-card:nth-child(4) { animation-delay: 0.4s; }
.casino-card:nth-child(5) { animation-delay: 0.5s; }
.casino-card:nth-child(6) { animation-delay: 0.6s; }

/* Print Styles */
@media print {
    .header,
    .footer,
    .language-switcher,
    .help-buttons {
        display: none;
    }
    
    .page-hero {
        background: none;
        color: black;
    }
    
    .legal-text {
        box-shadow: none;
        padding: 0;
    }
}