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

:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --accent-light: #ecf0f1;
    --text-dark: #34495e;
    --text-light: #95a5a6;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --white: #ffffff;
    --spacing-unit: 1rem;
    --border-radius: 8px;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f8f9fa;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--accent-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-light);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    gap: 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 6rem var(--spacing-unit);
    text-align: center;
    margin-bottom: 4rem;
}

.hero-content h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

/* Sections */
.comparison,
.guides,
.faq {
    padding: 4rem var(--spacing-unit);
    margin-bottom: 2rem;
}

.comparison {
    background: var(--white);
}

.guides {
    background: #f8f9fa;
}

.faq {
    background: var(--white);
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

/* Casino Grid */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.casino-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--accent-light);
    position: relative;
}

.casino-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.casino-rank {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.rank-number {
    display: inline-block;
    letter-spacing: 1px;
}

.casino-card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.casino-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.casino-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.casino-logo-container {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

.casino-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.casino-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.casino-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.stars {
    color: #ffc107;
}

.casino-card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.casino-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.casino-feature-icon {
    color: var(--accent-color);
    font-weight: bold;
    flex-shrink: 0;
    width: 20px;
}

.casino-feature-text {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.feature-label {
    font-weight: 600;
    color: var(--text-dark);
}

.feature-value {
    color: var(--accent-color);
    font-weight: 700;
}

.casino-card-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--accent-light);
    display: flex;
    gap: 1rem;
}

.btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* Jump Links Section */
.jump-links {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem var(--spacing-unit);
    margin-bottom: 3rem;
}

.jump-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.jump-link {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.jump-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Guides Grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.guide-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8ecf1;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color) 0%, #764ba2 100%);
}

.guide-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.guide-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.guide-card p {
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.guide-card p:last-of-type {
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #2980b9;
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* FAQ */
.faq-items {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to right, #f8f9fa, transparent);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(to right, #ecf0f1, transparent);
    color: var(--accent-color);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Legal Pages (About Us, FAQ) */
.legal-page {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.legal-page h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.legal-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--accent-light);
    padding-bottom: 0.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content em {
    color: var(--text-light);
    font-style: italic;
}

/* FAQ Specific Styles */
.faq-content {
    max-width: 1000px;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.faq-item {
    background: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.faq-item ul {
    margin-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.faq-item li {
    margin-bottom: 0.5rem;
}

.faq-note {
    background: #e8f4f8;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.faq-note p {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.faq-note p:last-child {
    margin-bottom: 0;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white) !important;
    text-decoration: none !important;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem var(--spacing-unit) 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Drawer */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    pointer-events: none;
}

.mobile-menu.active {
    display: block;
    pointer-events: auto;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    pointer-events: auto;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    animation: slideInLeft 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
    pointer-events: auto;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.mobile-menu-close {
    position: sticky;
    top: 0;
    align-self: auto;
    background: var(--white);
    border: none;
    border-bottom: 1px solid var(--accent-light);
    font-size: 1.5rem;
    color: var(--primary-color);
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    z-index: 10;
    pointer-events: auto;
}

.mobile-menu-close:active,
.mobile-menu-close:hover {
    color: var(--accent-color);
    background: var(--accent-light);
}

.mobile-nav-link {
    padding: 1.25rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--accent-light);
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mobile-nav-link:active,
.mobile-nav-link:hover {
    background: var(--accent-light);
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Header Mobile */
    .header {
        position: sticky;
        top: 0;
        z-index: 50;
    }

    .header-content {
        flex-direction: row;
        gap: 0;
        padding: 1rem 0;
        justify-content: flex-start;
    }

    .logo {
        font-size: 1.4rem;
        margin: 0;
        margin-left: auto;
        margin-right: auto;
        flex: 1;
        text-align: center;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        order: -1;
    }

    /* Hero Mobile */
    .hero {
        padding: 2.5rem var(--spacing-unit);
    }

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

    .hero-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin: 1rem 0;
    }

    .cta-button {
        display: inline-block;
        width: 100%;
        max-width: 300px;
        margin-top: 1rem;
    }

    /* Casino Grid Mobile */
    .casino-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .casino-card {
        border-radius: 12px;
    }

    .casino-card-header {
        padding: 1.25rem;
    }

    .casino-header-content {
        flex-direction: row;
    }

    .casino-logo-container {
        width: 75px;
        height: 75px;
    }

    .casino-logo {
        width: 65px;
        height: 65px;
    }

    .casino-name {
        font-size: 1.3rem;
    }

    .casino-rating {
        flex-direction: column;
        gap: 0.25rem;
    }

    .stars {
        font-size: 0.9rem;
    }

    .casino-card-body {
        padding: 1.25rem;
    }

    .casino-feature {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .casino-feature:last-child {
        margin-bottom: 0;
    }

    .casino-feature-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }

    .feature-label {
        font-size: 0.85rem;
        display: block;
        margin-bottom: 0.25rem;
    }

    .feature-value {
        font-size: 0.95rem;
        font-weight: 600;
        display: block;
    }

    .casino-card-footer {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 6px;
        width: 100%;
        text-align: center;
    }

    /* Filter Buttons Mobile */
    .filter-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .filter-btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    /* Guides Mobile */
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guide-card {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .guide-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .guide-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .read-more {
        font-size: 0.9rem;
    }

    /* FAQ Mobile */
    .faq-item {
        margin-bottom: 1rem;
        border-radius: 8px;
        overflow: hidden;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-toggle {
        font-size: 1.5rem;
    }

    .faq-answer {
        padding: 1.25rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Section Title Mobile */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem var(--spacing-unit);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    /* Extra Small Screens */
    .header {
        box-shadow: var(--shadow-light);
    }

    .header-content {
        gap: 1rem;
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav {
        gap: 0.25rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        border-radius: 16px;
    }

    /* Hero Extra Small */
    .hero {
        padding: 2rem 0.75rem;
    }

    .hero-content h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    /* Casino Card Extra Small */
    .casino-card-header {
        padding: 1rem;
    }

    .casino-name {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .casino-card-header .casino-rating {
        font-size: 0.9rem;
    }

    .stars {
        font-size: 0.8rem;
    }

    .casino-card-body {
        padding: 1rem;
    }

    .casino-feature {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .casino-feature-icon {
        font-size: 1.3rem;
        min-width: 32px;
    }

    .feature-label {
        font-size: 0.75rem;
    }

    .feature-value {
        font-size: 0.85rem;
    }

    .casino-card-footer {
        padding: 1rem;
        gap: 0.5rem;
    }

    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-primary {
        font-weight: 600;
    }

    /* Filter Buttons Extra Small */
    .filter-btn {
        padding: 0.65rem 0.75rem;
        font-size: 0.85rem;
        border-radius: 4px;
    }

    /* Guides Extra Small */
    .guide-card {
        padding: 1.25rem;
    }

    .guide-card h3 {
        font-size: 1.1rem;
    }

    .guide-card p {
        font-size: 0.9rem;
    }

    /* FAQ Extra Small */
    .faq-question {
        padding: 0.75rem;
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    .faq-question span:first-child {
        flex: 1;
        text-align: left;
    }

    .faq-toggle {
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .faq-answer {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }

    /* Footer Extra Small */
    .footer {
        padding: 1.5rem 0.75rem;
    }

    .footer-content {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .footer-bottom a {
        color: var(--accent-color);
        text-decoration: none;
    }

    .footer-bottom a:active {
        text-decoration: underline;
    }

    /* Touch-friendly spacing */
    .faq-item,
    .guide-card,
    .casino-card,
    .filter-btn {
        min-height: 44px;
    }

    button,
    a.btn {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ====== ARTICLE VIEW STYLES ====== */
.article-view {
    padding: 3rem 0;
}

.article-view .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.article-content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

/* Article Meta & Author Byline */
.article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e8ecf0;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.article-meta .separator {
    color: #bdc3c7;
}

/* Sidebar Author Box */
.sidebar-box.author-box {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

.sidebar-author {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    align-self: center;
}

.sidebar-author-info {
    text-align: center;
}

.sidebar-author-name {
    margin: 0 0 0.5rem 0;
    font-size: 1.05rem;
    color: #2c3e50;
    font-weight: 600;
}

.sidebar-author-role {
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
}

.sidebar-author-bio {
    margin: 0;
    font-size: 0.85rem;
    color: #5a6c7d;
    line-height: 1.5;
}

/* Mobile Author Profile */
.mobile-author-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    background: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.mobile-author-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e8ecf0;
}

.mobile-author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-author-name {
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.mobile-author-role {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.3;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.mobile-author-bio {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #4b5563;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Intro Paragraph */
.intro-paragraph {
    margin-bottom: 2rem;
}

.intro-paragraph p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #374151;
    margin: 0;
}

.intro-paragraph strong {
    color: #1a1a1a;
    font-weight: 600;
}

.article-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--accent-light);
}

.article-body {
    margin: 2rem 0;
}

/* Keyword highlighting for gambling terms - reduced */
.article-content strong,
.article-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Professional article link styling */
.article-content a,
.article-body a,
.intro-paragraph a,
.conclusion-section a {
    color: #2874a6;
    text-decoration: none;
    border-bottom: 1px solid rgba(40, 116, 166, 0.3);
    transition: all 0.2s ease;
    font-weight: 500;
}

.article-content a:hover,
.article-body a:hover,
.intro-paragraph a:hover,
.conclusion-section a:hover {
    color: #1a4d7a;
    border-bottom-color: #1a4d7a;
    background: rgba(40, 116, 166, 0.05);
}

/* Author-style natural paragraphs */
.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #34495e;
    font-size: 1.05rem;
    text-align: justify;
}

/* First paragraph emphasis */
.article-intro {
    font-size: 1.15rem !important;
    line-height: 1.9 !important;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    margin: 2rem 0;
}

.article-body h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.article-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.6;
    color: var(--text-dark);
}

.article-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.article-cta {
    background: linear-gradient(135deg, var(--accent-color), #2980b9);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.article-cta h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.article-cta .cta-button {
    background: white;
    color: var(--accent-color);
    display: inline-block;
}

.article-cta .cta-button:hover {
    background: var(--accent-light);
}

.article-footer {
    background: var(--accent-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-left: 4px solid var(--warning-color);
}

.article-sidebar {
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
}

.sidebar-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.sidebar-box p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
}

.sidebar-box ul li {
    margin-bottom: 0.5rem;
}

.sidebar-box ul li a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.sidebar-box ul li a:hover {
    text-decoration: underline;
}

.sidebar-box.highlight {
    background: linear-gradient(135deg, var(--accent-color), #2980b9);
    color: white;
}

.sidebar-box.highlight h3,
.sidebar-box.highlight p {
    color: white;
}

.sidebar-box.highlight .cta-button {
    background: white;
    color: var(--accent-color);
    margin-top: 1rem;
}

/* Article View Mobile Styles */
@media (max-width: 1024px) {
    .article-view .container {
        grid-template-columns: 1fr;
    }

    .article-content {
        padding: 2rem;
    }

    .article-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .article-view {
        padding: 2rem 0;
    }

    .article-content {
        padding: 1.5rem;
    }

    .article-content h1 {
        font-size: 1.8rem;
    }

    .article-body h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }


    .article-body h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ====== FOOTER STYLES ====== */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ====== LANDSCAPE MODE OPTIMIZATION ====== */
/* Mobile landscape (horizontal viewport) optimizations */

@media (max-height: 500px) and (orientation: landscape) {
    /* Reduce header height in landscape */
    .header {
        padding: 0.5rem 0;
    }

    .header-content {
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    /* Reduce hero section padding */
    .hero {
        padding: 1.5rem 0;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    /* Optimize casino cards for landscape */
    .casino-card {
        margin-bottom: 1rem;
    }

    .casino-card-header {
        padding: 1rem;
    }

    .casino-info h3 {
        font-size: 1.1rem;
    }

    /* Reduce spacing in guides section */
    .guides {
        padding: 1.5rem 0;
    }

    .guide-card {
        padding: 1rem;
    }

    /* Reduce FAQ spacing */
    .faq {
        padding: 1.5rem 0;
    }

    .faq-item {
        margin-bottom: 0.5rem;
    }

    .faq-question {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* Reduce footer padding in landscape */
    .footer {
        padding: 1.5rem 0 0.5rem;
        margin-top: 1rem;
    }

    .footer-content {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 0.85rem;
    }
}

/* Desktop article view - hide on mobile landscape */
@media (max-width: 900px) and (orientation: landscape) {
    body[data-device="desktop"] {
        /* Desktop view should work in landscape too */
    }
}

/* ====== CONCLUSION SECTION ====== */
.conclusion-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    border-left: 4px solid #3498db;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.1);
}

.conclusion-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.conclusion-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.conclusion-section p:last-of-type {
    margin-bottom: 2rem;
}

.conclusion-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.highlight-item {
    background: white;
    padding: 1.25rem;
    border-radius: 6px;
    border-top: 3px solid var(--success-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.15);
}

.highlight-icon {
    font-size: 1.85rem;
    color: var(--success-color);
    margin-bottom: 0.6rem;
    font-weight: bold;
}

.highlight-item p {
    margin: 0;
    font-size: 0.925rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.highlight-item strong {
    color: var(--primary-color);
}

/* Article footer styling */
.article-footer {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid #d68910;
}

.article-footer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-footer ul {
    list-style: none;
    padding: 0;
}

.article-footer ul li {
    margin-bottom: 0.5rem;
}

.article-footer ul li a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.article-footer ul li a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .conclusion-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .conclusion-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .conclusion-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-item {
        padding: 1rem;
    }

    .highlight-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .article-footer {
        padding: 1.5rem;
    }
}

/* ============================================
   CASINO MODAL STYLES - Elegant Details Display
   ============================================ */

.casino-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.casino-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.casino-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.modal-logo {
    max-width: 120px;
    max-height: 60px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.modal-header h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.modal-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.modal-rating span {
    color: #666;
    font-weight: 600;
}

.modal-details {
    padding: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h3 {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.detail-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.2s;
}

.detail-item:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.detail-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.detail-item p {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-visit-btn {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: all 0.3s;
}

.modal-visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
}

.modal-back-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-back-btn:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #333;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 16px 16px 0;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

@media (max-width: 640px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-details {
        padding: 1.5rem;
    }
    
    .modal-logo {
        max-width: 100px;
        max-height: 50px;
    }
}

/* ============================================
   CASINO MODAL STYLES - Elegant Details Display
   ============================================ */

.casino-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.casino-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.casino-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.modal-logo {
    max-width: 120px;
    max-height: 60px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.modal-header h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.modal-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.modal-rating span {
    color: #666;
    font-weight: 600;
}

.modal-details {
    padding: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h3 {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.detail-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.2s;
}

.detail-item:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.detail-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.detail-item p {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-visit-btn {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: all 0.3s;
}

.modal-visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
}

.modal-back-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-back-btn:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #333;
}

/* Smooth scrollbar for modal content */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 16px 16px 0;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Mobile responsive adjustments */
@media (max-width: 640px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-details {
        padding: 1.5rem;
    }
    
    .modal-logo {
        max-width: 100px;
        max-height: 50px;
    }
}

/* Prevent body scroll when modal is active */
body.modal-open {
    overflow: hidden;
}

/* ============================================
   CASINO MODAL STYLES
   ============================================ */

.casino-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.casino-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.casino-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.modal-logo {
    max-width: 120px;
    max-height: 60px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.modal-header h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.modal-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.modal-rating span {
    color: #666;
    font-weight: 600;
}

.modal-details {
    padding: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h3 {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.detail-description {
    line-height: 1.8;
    color: #5a6c7d;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #3498db;
}

.detail-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.2s;
}

.detail-item:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.detail-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.detail-item p {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-visit-btn {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: all 0.3s;
}

.modal-visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
}

.modal-back-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-back-btn:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #333;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 16px 16px 0;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

@media (max-width: 640px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-details {
        padding: 1.5rem;
    }
    
    .modal-logo {
        max-width: 100px;
        max-height: 50px;
    }
}
