/* Base Styles and Variables */
:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #1e1e2f; /* Dark blue */
    --accent-color: #e63946; /* Red */
    --text-color: #333;
    --light-text: #f8f9fa;
    --dark-bg: #121212;
    --card-bg: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5f5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

section {
    padding: 60px 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header Styles */
header {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.logo h1 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.8rem;
}

nav .menu {
    display: flex;
}

nav .menu li {
    position: relative;
    margin-left: 20px;
}

nav .menu a {
    color: var(--light-text);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

nav .menu a:hover, nav .menu a.active {
    color: var(--primary-color);
}

nav .menu a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

.dropdown-toggle i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-color);
    min-width: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg.html');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.hero iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Intro Section */
.intro {
    text-align: center;
    max-width: 800px;
}

.intro h2 {
    margin-bottom: 30px;
}

.intro h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Casinos Section */
.casinos-section {
    background-color: #f9f9f9;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.casino-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.casino-image {
    height: 200px;
    overflow: hidden;
}

.casino-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.casino-card:hover .casino-image img {
    transform: scale(1.05);
}

.casino-content {
    padding: 20px;
}

.casino-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.location {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.location i {
    margin-right: 5px;
}

/* Features Section */
.features-section {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.features-section h2 {
    color: var(--light-text);
    text-align: center;
    margin-bottom: 50px;
}

.features-section h2:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Popular Games Section */
.popular-games {
    text-align: center;
}

.popular-games h2 {
    margin-bottom: 50px;
}

.popular-games h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-card h3 {
    padding: 20px 20px 10px;
}

.game-card p {
    padding: 0 20px 20px;
}

/* Cities Section */
.cities-section {
    background-color: #f9f9f9;
    text-align: center;
}

.cities-section h2 {
    margin-bottom: 20px;
}

.cities-section h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.city-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.city-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.city-card h3 {
    padding: 20px 20px 10px;
}

.city-card p {
    padding: 0 20px 20px;
}

.city-card .btn-small {
    margin: 0 20px 20px;
}

/* Responsible Gaming Section */
.responsible-gaming {
    background-color: var(--secondary-color);
    color: var(--light-text);
    text-align: center;
}

.responsible-gaming h2 {
    color: var(--light-text);
    margin-bottom: 30px;
}

.responsible-gaming h2:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
}

.responsible-tips {
    max-width: 700px;
    margin: 30px auto;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
}

.responsible-tips li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.responsible-tips li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* FAQ Section */
.faq-section {
    background-color: #f9f9f9;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    flex: 1;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-logo p {
    color: #aaa;
}

.footer-links h3, .footer-cities h3, .footer-contact h3 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li, .footer-cities ul li {
    margin-bottom: 10px;
}

.footer-links a, .footer-cities a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover, .footer-cities a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .casino-grid, .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    nav .menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    nav .menu li {
        margin: 0 0 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.2);
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .features-grid, .games-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .casino-grid, .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/page-header-bg.html');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.page-header iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.page-header h1 {
    color: var(--light-text);
    margin-bottom: 15px;
}

/* About Page Styles */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 30px;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-image iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-casinos {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 60px 0;
}

.about-casinos h2 {
    color: var(--light-text);
    text-align: center;
    margin-bottom: 50px;
}

.about-casinos h2:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.about-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.about-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-tourism {
    text-align: center;
    padding: 60px 0;
}

.about-tourism h2 {
    margin-bottom: 30px;
}

.about-tourism h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.tourism-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
}

.about-future {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.about-future h2 {
    text-align: center;
    margin-bottom: 40px;
}

.about-future h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.future-list {
    max-width: 800px;
    margin: 0 auto;
}

.future-list li {
    display: flex;
    margin-bottom: 30px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.future-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 50px;
    text-align: center;
}

.future-content h3 {
    margin-bottom: 10px;
}

.team-section {
    text-align: center;
    padding: 60px 0;
}

.team-section h2 {
    margin-bottom: 30px;
}

.team-section h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.team-values {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Contact Page Styles */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.contact-info h2, .contact-form-container h2 {
    margin-bottom: 30px;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 50px;
    text-align: center;
}

.contact-text h3 {
    margin-bottom: 5px;
}

.social-media h3 {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--light-text);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.email-btn {
    width: 100%;
    text-align: center;
}

.faq-contact {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.faq-contact h2 {
    margin-bottom: 30px;
}

.faq-contact h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* City Page Styles */
.city-hero {
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.city-hero iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.city-hero h1 {
    color: var(--light-text);
    margin-bottom: 15px;
}

.city-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.city-intro h2 {
    margin-bottom: 30px;
}

.city-intro h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.casino-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 15px 0;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--primary-color);
    margin-right: 8px;
}

.city-attractions {
    padding: 60px 0;
}

.city-attractions h2 {
    text-align: center;
    margin-bottom: 40px;
}

.city-attractions h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.attraction-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.attraction-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.attraction-card h3 {
    padding: 20px 20px 10px;
}

.attraction-card p {
    padding: 0 20px 20px;
}

.city-tips {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 60px 0;
}

.city-tips h2 {
    color: var(--light-text);
    text-align: center;
    margin-bottom: 40px;
}

.city-tips h2:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.tip-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tip-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.city-map {
    padding: 60px 0;
}

.city-map h2 {
    text-align: center;
    margin-bottom: 30px;
}

.city-map h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.map-container {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.directions h3 {
    margin-bottom: 15px;
}

.directions ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.directions li {
    margin-bottom: 10px;
}

/* Casino Detail Page Styles */
.casino-hero {
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.casino-hero iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.casino-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.casino-hero h1 {
    color: var(--light-text);
    margin-bottom: 15px;
}

.casino-overview {
    padding: 60px 0;
}

.casino-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.casino-details-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.casino-description h2 {
    margin-bottom: 20px;
}

.casino-gallery h2 {
    text-align: center;
    margin-bottom: 30px;
}

.casino-gallery h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.casino-games {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 60px 0;
}

.casino-games h2 {
    color: var(--light-text);
    text-align: center;
    margin-bottom: 20px;
}

.casino-games h2:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
}

.casino-games > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.game-category {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.game-category:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.game-category h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.game-category ul {
    list-style: disc;
    margin-left: 20px;
}

.game-category li {
    margin-bottom: 10px;
}

.casino-amenities {
    padding: 60px 0;
}

.casino-amenities h2 {
    text-align: center;
    margin-bottom: 40px;
}

.casino-amenities h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.amenity-card h3 {
    margin-bottom: 15px;
}

.casino-promotions {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.casino-promotions h2 {
    text-align: center;
    margin-bottom: 40px;
}

.casino-promotions h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.promotion-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.promotion-image {
    height: 180px;
    overflow: hidden;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.promotion-card:hover .promotion-image img {
    transform: scale(1.05);
}

.promotion-content {
    padding: 20px;
}

.promotion-content h3 {
    margin-bottom: 5px;
}

.promotion-date {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.casino-reviews {
    padding: 60px 0;
}

.casino-reviews h2 {
    text-align: center;
    margin-bottom: 40px;
}

.casino-reviews h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer {
    display: flex;
    align-items: center;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.reviewer-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.reviewer-info p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

.rating {
    color: var(--primary-color);
}

.review-content p {
    font-style: italic;
    margin-bottom: 0;
}

/* Additional Responsive Styles */
@media (max-width: 992px) {
    .about-intro, .contact-section, .casino-info {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        gap: 50px;
    }
    
    .casino-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .tourism-stats {
        flex-direction: column;
    }
    
    .future-list li {
        flex-direction: column;
        text-align: center;
    }
    
    .future-icon {
        margin: 0 0 15px 0;
    }
}

/* Add rules for HTML placeholders */
.placeholder {
    border: none !important;
    overflow: hidden !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    background: transparent !important;
}

/* Hero section placeholders */
.hero iframe.placeholder {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -2 !important;
}

/* Page header placeholders */
.page-header iframe.placeholder {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -2 !important;
}

/* City hero placeholders */
.city-hero iframe.placeholder {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -2 !important;
}

/* Casino hero placeholders */
.casino-hero iframe.placeholder {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -2 !important;
}

/* Card placeholders (casino, city, game, attraction) */
.casino-card iframe.placeholder, 
.city-card iframe.placeholder, 
.game-card iframe.placeholder, 
.attraction-card iframe.placeholder {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    aspect-ratio: 4/3 !important;
}

/* Gallery placeholders */
.gallery-item iframe.placeholder {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    aspect-ratio: 4/3 !important;
}

/* Promotion placeholders */
.promotion-image iframe.placeholder {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    aspect-ratio: 16/9 !important;
}

/* Featured casino placeholders */
.featured-casino iframe.placeholder {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    aspect-ratio: 16/9 !important;
}

/* Game type placeholders */
.game-type iframe.placeholder {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover !important;
    aspect-ratio: 3/2 !important;
}

/* City image placeholders */
.city-image iframe.placeholder {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    aspect-ratio: 4/3 !important;
}

/* Casino interior placeholders */
.casino-interior iframe.placeholder {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    aspect-ratio: 16/9 !important;
}

/* About image placeholders */
.about-image iframe.placeholder {
    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--box-shadow) !important;
    aspect-ratio: 16/9 !important;
}

/* User avatar placeholders */
.reviewer iframe.placeholder {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    margin-right: 15px !important;
    aspect-ratio: 1/1 !important;
}

/* Responsive adjustments for placeholders */
@media (max-width: 992px) {
    .featured-casino iframe.placeholder,
    .casino-interior iframe.placeholder {
        height: 220px !important;
    }
    
    .about-image iframe.placeholder {
        min-height: 250px !important;
    }
}

@media (max-width: 768px) {
    .casino-card iframe.placeholder, 
    .city-card iframe.placeholder, 
    .game-card iframe.placeholder, 
    .attraction-card iframe.placeholder,
    .gallery-item iframe.placeholder,
    .promotion-image iframe.placeholder {
        height: 180px !important;
    }
    
    .featured-casino iframe.placeholder,
    .casino-interior iframe.placeholder {
        height: 200px !important;
    }
    
    .about-image iframe.placeholder {
        min-height: 220px !important;
    }
}

@media (max-width: 576px) {
    .casino-card iframe.placeholder, 
    .city-card iframe.placeholder, 
    .game-card iframe.placeholder, 
    .attraction-card iframe.placeholder,
    .gallery-item iframe.placeholder,
    .promotion-image iframe.placeholder {
        height: 160px !important;
    }
    
    .featured-casino iframe.placeholder,
    .casino-interior iframe.placeholder {
        height: 180px !important;
    }
    
    .game-type iframe.placeholder {
        height: 120px !important;
    }
    
    .about-image iframe.placeholder {
        min-height: 200px !important;
    }
}

/* Placeholder Styles */
.placeholder {
    border: 1px solid #ddd;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: block;
}

.hero .placeholder {
    height: 500px;
}

.page-header .placeholder {
    height: 300px;
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero h1 {
        font-size: 3rem;
    }
    
    /* Placeholder responsive adjustments */
    .hero .placeholder {
        height: 400px;
    }
    .page-header .placeholder {
        height: 250px;
    }
    .featured-casino .placeholder {
        height: 220px;
    }
    .casino-card .placeholder {
        height: 180px;
    }
    .game-card .placeholder {
        height: 160px;
    }
    .about-image .placeholder {
        height: 300px;
    }
    .casino-interior .placeholder {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav .menu {
        display: none;
    }
    
    /* Placeholder responsive adjustments */
    .hero .placeholder {
        height: 350px;
    }
    .page-header .placeholder {
        height: 200px;
    }
    .featured-casino .placeholder {
        height: 180px;
    }
    .casino-card .placeholder {
        height: 160px;
    }
    .game-card .placeholder {
        height: 140px;
    }
    .about-image .placeholder {
        height: 250px;
    }
    .casino-interior .placeholder {
        height: 200px;
    }
    .gallery-item .placeholder {
        height: 150px;
    }
}

@media (max-width: 576px) {
    /* Placeholder responsive adjustments */
    .hero .placeholder {
        height: 250px;
    }
    .page-header .placeholder {
        height: 150px;
    }
    .featured-casino .placeholder {
        height: 150px;
    }
    .casino-card .placeholder {
        height: 140px;
    }
    .game-card .placeholder {
        height: 120px;
    }
    .about-image .placeholder {
        height: 200px;
    }
    .casino-interior .placeholder {
        height: 180px;
    }
    .gallery-item .placeholder {
        height: 120px;
    }
    .testimonial .avatar .placeholder {
        height: 60px;
        width: 60px;
    }
} 
/* Enhanced Responsive Rules */
/* Added by verify_responsive_design.sh */

/* Global responsive padding adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    section {
        padding: 60px 0;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    section {
        padding: 50px 0;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    section {
        padding: 40px 0;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    p {
        font-size: 0.95rem;
    }
    
    /* Improved navbar for mobile */
    header {
        padding: 15px 0;
    }
    .logo h1 {
        font-size: 1.75rem;
    }
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }
    nav .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        z-index: 100;
        display: none;
    }
    nav .menu.active {
        display: flex;
    }
    nav .menu li {
        margin: 10px 0;
        width: 100%;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 20px;
        width: 100%;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Card and grid layouts */
    .grid, .related-grid, .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .card, .related-card, .featured-card {
        width: 100%;
    }
    
    /* Casino page specific */
    .casino-info {
        flex-direction: column;
    }
    .casino-details-card, .casino-description {
        width: 100%;
        margin: 0 0 20px 0;
    }
}

@media (max-width: 576px) {
    section {
        padding: 30px 0;
    }
    h1 {
        font-size: 1.75rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    p {
        font-size: 0.9rem;
    }
    
    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-logo, .footer-links, .footer-cities, .footer-contact {
        width: 100%;
        margin-bottom: 20px;
    }
    
    /* Button adjustments */
    .btn, .btn-small {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Hero section adjustments */
    .hero h1, .casino-hero h1 {
        font-size: 1.75rem;
    }
    .hero p, .casino-hero p {
        font-size: 1rem;
    }
}

/* Fix for iframe placeholders */
iframe.placeholder {
    border: none;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

/* Ensure all images and iframes are responsive */
img, iframe {
    max-width: 100%;
    height: auto;
}

/* Fix for alignment issues */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-center {
    text-align: center;
}

/* Fix for navbar on medium devices */
@media (min-width: 769px) and (max-width: 992px) {
    nav .menu {
        gap: 15px;
    }
    nav .menu li a {
        font-size: 0.9rem;
    }
}

/* Padding and Alignment Fixes */
/* Added by fix_container_structure.sh */

/* Consistent padding for all sections */
section {
    padding: 60px 0;
}

/* Consistent container padding */
.container {
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Consistent text alignment classes */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* Consistent spacing classes */
.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.py-1 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-2 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-3 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.py-4 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.px-1 {
    padding-left: 10px;
    padding-right: 10px;
}

.px-2 {
    padding-left: 20px;
    padding-right: 20px;
}

.px-3 {
    padding-left: 30px;
    padding-right: 30px;
}

.px-4 {
    padding-left: 40px;
    padding-right: 40px;
}

/* Consistent flex layout classes */
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: flex-end;
}

/* Responsive adjustments for padding and margins */
@media (max-width: 992px) {
    section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 30px 0;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Enhanced Navbar Styles */
/* Added by enhance_navbar.sh */

/* Base navbar styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo a {
    text-decoration: none;
    color: #333;
}

.logo h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

nav {
    display: flex;
    align-items: center;
}

nav .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

nav .menu li {
    position: relative;
}

nav .menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

nav .menu li a:hover {
    color: #0066cc;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 4px;
    display: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu li a {
    padding: 8px 15px;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
}

/* Responsive navbar styles */
@media (max-width: 992px) {
    nav .menu {
        gap: 15px;
    }
    
    nav .menu li a {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 100;
    }
    
    nav .menu.active {
        display: flex;
    }
    
    nav .menu li {
        margin: 10px 0;
        width: 100%;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        position: static;
        box-shadow: none;
        padding-left: 20px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    header .container {
        padding: 10px 15px;
    }
}
