/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
}

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

/* Focus States for Accessibility */
a:focus,
button:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}

/* ===== DESKTOP STYLES (Default) ===== */

/* Desktop Layout */
.desktop-content {
    background-color: #F8F9FA;
    color: #343A40;
    font-family: 'Lato', sans-serif;
    min-height: 100vh;
}

/* Desktop Header */
.desktop-header {
    background: linear-gradient(135deg, #1A3760 0%, #2C5F8B 100%);
    color: #FFFFFF;
    padding: 80px 0 60px;
    text-align: center;
}

.desktop-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Desktop Main Content */
.desktop-main {
    padding: 80px 0;
}

.desktop-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: #1A3760;
    margin-bottom: 30px;
}

.desktop-main h3 {
    font-size: 24px;
    font-weight: 700;
    color: #343A40;
    margin-bottom: 20px;
}

.desktop-main p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Desktop Sections */
.about-section {
    margin-bottom: 80px;
    text-align: center;
}

.about-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #495057;
}

.hotel-section {
    margin-bottom: 64px;
    padding: 40px 0;
    border-bottom: 1px solid #DEE2E6;
}

.hotel-section:last-of-type {
    border-bottom: none;
}

.hotel-content .location {
    font-size: 16px;
    color: #D4AF37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.additional-content {
    margin: 80px 0;
    padding: 40px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.disclaimer-section {
    background-color: #E9ECEF;
    padding: 40px;
    border-radius: 8px;
    margin: 60px 0;
    border-left: 4px solid #D4AF37;
}

.disclaimer-section h3 {
    color: #1A3760;
    margin-bottom: 20px;
}

.disclaimer-section p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Desktop Footer */
.desktop-footer {
    background-color: #1A3760;
    color: #F8F9FA;
    padding: 40px 0;
    text-align: center;
    border-top: 4px solid #D4AF37;
}

/* Desktop Links */
.desktop-content a {
    color: #D4AF37;
    font-weight: 600;
    transition: all 0.3s ease;
}

.desktop-content a:hover {
    text-decoration: underline;
    color: #B8941F;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
    
    /* Mobile Container */
    .container {
        padding: 0 16px;
        max-width: none;
    }

    /* Mobile Layout */
    .mobile-content {
        background-color: #121212;
        color: #E0E0E0;
        font-family: 'Montserrat', sans-serif;
        min-height: 100vh;
    }

    /* Mobile Header */
    .mobile-header {
        background: linear-gradient(135deg, #1E1E1E 0%, #2A2A2A 100%);
        padding: 40px 0 30px;
        text-align: center;
        border-bottom: 2px solid #FFD700;
    }

    .mobile-header h1 {
        font-size: 24px;
        font-weight: 700;
        color: #FFFFFF;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    /* Mobile Main */
    .mobile-main {
        padding: 30px 0 40px;
    }

    /* Casino Cards */
    .casino-card {
        background-color: #1E1E1E;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 24px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        border: 1px solid #333333;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .casino-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    /* Card Header */
    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .card-title-section {
        flex: 1;
    }

    .card-rating-tag {
        display: inline-block;
        background-color: #00BFFF;
        color: #FFFFFF;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 8px;
        border-radius: 4px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .card-title {
        font-size: 20px;
        font-weight: 700;
        color: #FFFFFF;
        margin: 0;
    }

    .card-rating-details {
        text-align: right;
        flex-shrink: 0;
    }

    .rating-score {
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: #FFD700;
        margin-bottom: 4px;
    }

    .review-count {
        font-size: 11px;
        color: #B0B0B0;
    }

    /* Card Body */
    .card-body {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        gap: 20px;
    }

    .logo-container {
        flex-shrink: 0;
        width: 80px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #FFFFFF;
        border-radius: 6px;
        padding: 8px;
    }

    .logo-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .bonus-container {
        flex: 1;
    }

    .bonus-title {
        font-size: 14px;
        font-weight: 600;
        color: #B0B0B0;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .bonus-detail-primary {
        font-size: 16px;
        font-weight: 700;
        color: #FFD700;
        margin-bottom: 4px;
    }

    .bonus-detail-secondary {
        font-size: 14px;
        color: #E0E0E0;
        margin: 0;
    }

    /* Card Footer */
    .card-footer {
        margin-top: 20px;
    }

    .cta-button {
        display: block;
        width: 100%;
        background-color: #FFD700;
        color: #121212;
        font-size: 18px;
        font-weight: 800;
        text-transform: uppercase;
        text-align: center;
        padding: 16px 0;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        letter-spacing: 1px;
    }

    .cta-button:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        filter: brightness(1.1);
    }

    .cta-button:active {
        transform: scale(0.98);
        filter: brightness(0.9);
    }

    /* Mobile Footer */
    .mobile-footer {
        background-color: #0A0A0A;
        padding: 30px 0;
        text-align: center;
        border-top: 1px solid #333333;
    }

    .responsible-gaming {
        font-size: 12px;
        color: #B0B0B0;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .copyright {
        font-size: 11px;
        color: #808080;
        margin: 0;
    }

    /* Mobile Focus States */
    .mobile-content a:focus {
        outline: 2px solid #00BFFF;
        outline-offset: 2px;
    }
}

/* ===== ADDITIONAL RESPONSIVE TWEAKS ===== */

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .desktop-header h1 {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
}

/* Tablet Portrait */
@media (min-width: 481px) and (max-width: 768px) {
    .mobile-main {
        padding: 40px 0 50px;
    }
    
    .casino-card {
        padding: 24px;
        margin-bottom: 30px;
    }
    
    .container {
        padding: 0 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .mobile-header {
        padding: 30px 0 20px;
    }
    
    .mobile-header h1 {
        font-size: 20px;
    }
    
    .casino-card {
        padding: 16px;
        margin-bottom: 20px;
    }
    
    .card-body {
        gap: 15px;
    }
    
    .logo-container {
        width: 70px;
        height: 45px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .rating-score {
        font-size: 16px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 14px 0;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .mobile-content {
        display: none !important;
    }
    
    .desktop-content {
        display: block !important;
        background: white !important;
        color: black !important;
    }
    
    .desktop-header {
        background: none !important;
        color: black !important;
    }
}
