@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/**
 * Top Danske Casinos - Main Stylesheet
 * Mobile-first responsive design with separate desktop/mobile layouts
 */

/* ============================================
   CSS VARIABLES & ROOT STYLES
   ============================================ */
:root {
    /* Colors - White, Red, Black with Green CTA */
    --primary-color: #c50428;
    --primary-dark: #a00320;
    --secondary-color: #000000;
    --accent-color: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #e5e5e5;
    --text-dark: #000000;
    --background-light: #ffffff;
    --background-dark: #000000;
    --card-bg-light: #ffffff;
    --card-bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --cta-color: #28a745;
    --cta-hover: #218838;
    --warning-color: #ff9800;
    --error-color: #c50428;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Typography */
    --font-primary: "Raleway", BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    --font-size-base: 16px;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

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

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

ul {
    list-style: none;
}

/* ============================================
   LAYOUT COMPONENTS
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 767px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.site-main {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg.jpg') repeat;
    background-size: 100% 100%;
    background-position: center -300px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #f9f9f9;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    background: #000;
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

@media (min-width: 768px) {
    .header-content {
        justify-content: space-between;
    }
}

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

.main-nav {
    position: relative;
    overflow: visible;
}

@media (max-width: 767px) {
    .main-nav {
        display: none;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-menu li a {
    color: var(--text-primary);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-menu li a:hover {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    color: var(--text-primary);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: var(--spacing-xxl) 0;
    }
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

@media (max-width: 767px) {
    .hero h1 {
        margin-bottom: var(--spacing-xs);
        font-size: 1.25rem;
        color: #ffcc00;
    }

    .hero {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .hero-features {
        justify-content: center !important;
        flex-direction: column !important;
    }

    .feature-badge {
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0 !important;
        & span {
            margin-bottom: 0 !important;
            margin-right: 0 !important;
        }

    }
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .hero-subtitle {
        display: none;
    }
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .hero-features {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        margin: 0 -1rem;
        padding: 0 var(--spacing-sm);
        max-width: none;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 0;
    }
    
    .hero-features::-webkit-scrollbar {
        display: none;
    }
}

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);

    & svg {
        width: 15px;
        height: 15px;
        fill: #fff;
    }
}

@media (max-width: 767px) {
    .feature-badge {
        background: none;
        backdrop-filter: none;
        border: none;
        padding: var(--spacing-xs) var(--spacing-sm);
        flex: 0 0 auto;
        min-width: 80px;
        text-align: center;
        align-items: center;
        display: flex;

        & span {
            line-height: 1;
        }
    }
    
    .feature-badge:hover {
        background: none;
        transform: none;
    }
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-badge span {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--spacing-xs);
}

@media (max-width: 767px) {
    .feature-badge span {
        font-size: 1.75rem;
        margin-bottom: 0;
        margin-right: 0;
        display: inline-block;
    }
}

.feature-badge p {
    font-size: var(--font-size-sm);
    font-weight: 600;
}

@media (max-width: 767px) {
    .feature-badge p {
        font-size: 0.8rem;
        font-weight: 500;
        white-space: nowrap;
        display: inline-block;
        margin: 0;
    }
}

/* ============================================
   CASINOS SECTION
   ============================================ */
.casinos-section {
    padding: var(--spacing-lg) 0;
}

@media (min-width: 768px) {
    .casinos-section {
        padding: var(--spacing-xxl) 0;
    }
}

@media (max-width: 767px) {
    .casinos-section {
        padding: 0;
    }

    .casinos-section .container {
        padding: 0 !important;
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    color: #666;
    font-size: var(--font-size-lg);
}

/* ============================================
   RESPONSIVE VISIBILITY
   ============================================ */
.desktop-only {
    display: none !important;
}

.mobile-only {
    display: grid !important;
}

@media (min-width: 768px) {
    .desktop-only {
        display: grid !important;
    }
    
    .mobile-only {
        display: none !important;
    }
}

/* ============================================
   MOBILE LAYOUT (Default - Mobile First)
   ============================================ */
.casinos-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.casino-card {
    background: var(--card-bg-light);
    color: var(--text-dark);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    position: relative;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid var(--border-color);
}

@media (max-width: 767px) {
    .mobile-only .container {
        padding: 0 !important;
    }
}

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

.casino-card.highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(230, 0, 0, 0.2);
}

.badge-top {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}


.casino-rank {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--primary-color);
    color: var(--secondary-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
}

.casino-logo {
    margin-bottom: var(--spacing-lg);
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: var(--spacing-sm);
}


.casino-logo img {
    width: 100%;
    max-width: 180px;
    height: 90px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .casino-logo img {
        max-width: 130px;
        height: 65px;
        object-fit: contain;
    }
}

.casino-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media (max-width: 767px) {
    .casino-info {
        display: contents;
    }
}

.casino-info h3 {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.casino-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: var(--spacing-xs);
}

.rating-stars {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.rating-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.5px;
    width: 100%;
    text-align: center;
}

.rating-stars svg {
    width: 20px;
    height: 20px;
    color: #FFD700;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4caf50;
    line-height: 1;
}

@media (max-width: 767px) {
    .casino-rating {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: var(--spacing-sm);
        margin-bottom: 0;
        margin-top: var(--spacing-md);
        padding: var(--spacing-md);
        font-size: 1rem;
        position: relative;
        padding-top: var(--spacing-xl);
        background: #f9f9f9;
        border-radius: var(--radius-sm);
    }
    
    .casino-rating::before {
        content: 'BEDØMMELSE';
        font-size: 0.7rem;
        font-weight: 700;
        color: #666;
        letter-spacing: 0.5px;
        position: absolute;
        left: var(--spacing-md);
        top: var(--spacing-sm);
    }
}


.casino-bonus {
    background: rgba(230, 0, 0, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-color);
    width: 100%;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 767px) {
    .casino-bonus {
        background: none;
        border: none;
        padding: 0;
        text-align: right;
        margin-bottom: 0;
    }
}

.bonus-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .bonus-label {
        font-size: 0;
        color: #666;
        margin-bottom: 6px;
    }
    
    .bonus-label::after {
        content: 'VELKOMSTBONUS';
        font-size: 0.7rem;
        display: block;
    }
}

.bonus-value {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .bonus-value {
        font-size: 0.95rem;
        font-weight: 700;
        color: #000;
        line-height: 1.4;
    }
}

.casino-features {
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.casino-features li {
    font-size: 0.75rem;
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-sm);
    position: relative;
}

.casino-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.casino-cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 767px) {
    .casino-cta {
        width: 100%;
        padding: 0;
        margin-top: var(--spacing-md);
    }
}

.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: 700;
    text-align: center;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--cta-color);
    color: #ffffff;
}

@media (max-width: 767px) {
    .btn-primary {
        background: #c50428;
        color: #ffffff;
        font-size: 1rem;
        font-weight: 700;
        padding: 14px 28px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(197, 4, 40, 0.3);
        text-transform: none;
        letter-spacing: 0;
    }
}

.btn-primary:hover {
    background: var(--cta-hover);
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .btn-primary:hover {
        background: #a00320;
        transform: none;
    }
}

.casino-cta .terms {
    font-size: 0.625rem;
    opacity: 0.7;
    margin-top: var(--spacing-xs);
    text-align: center;
}

@media (max-width: 767px) {
    .casino-cta .terms {
        font-size: 0.65rem;
        color: #666;
        line-height: 1.4;
        margin-top: 12px;
    }
    
    .casino-cta .terms::before {
        content: '🇩🇰 Dansk licenseret';
        display: block;
        font-size: 0.75rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
    }
}

/* ============================================
   MOBILE CARD LAYOUT
   ============================================ */
.casino-card-mobile {
    background: #ffffff;
    border-bottom: 1px solid #e9e9e9;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    z-index: 1;
}

.casino-card-mobile.highlight {
    background: #f9f9f9;
}

.badge-eksklusive {
    position: absolute;
    top: 0;
    left: 0;
    background: #c50428;
    color: #ffffff;
    padding: .125rem .75rem;
    border-radius: 0 0 10px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    z-index: 10;
}

/* Left Side: Logo + Rating */
.mobile-left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    background-color: #f2f2f2;

}

.mobile-logo {
    width: 100%;
    padding-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-logo img {
    width: 100%;
    max-width: 150px;
    height: 75px;
    object-fit: contain;
}

/* Right Side: Bonus + CTA */
.mobile-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;

}

.mobile-bonus {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    padding-top: 28px;
}

.mobile-bonus-label {
    font-size: 10px;
    color: #666;
    margin-bottom: 6px;
    display: block;
}

.mobile-bonus-value {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    display: block;
}

.mobile-rating-section {
    padding: var(--spacing-md) 16px;
    border-radius: var(--radius-sm);
    position: relative;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-rating-stars {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    justify-content: center;
}

.mobile-rating-stars-inner {
    line-height: 1;
}

.mobile-rating-label {
    font-size: 11px;
    font-weight: 700;
    width: 100%;
    line-height: 1;
    text-align: center;
}

.mobile-rating-stars svg {
    width: 11px;
    height: 11px;
    color: #ffd700;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.mobile-rating-score {
    font-size: 2rem;
    font-weight: 700;
    color: #5b980f;
    line-height: 1;
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.btn-mobile-primary {
    display: block;
    width: 100%;
    background: #c50428;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(197, 4, 40, 0.3);
    text-decoration: none;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-mobile-primary:hover {
    background: #a00320;
}

.mobile-license {
    font-size: 0.7rem;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
    margin-bottom: 6px;
    text-align: center;
}

.mobile-terms {
    font-size: 0.65rem;
    color: #666;
    line-height: 1.3;
    text-align: center;
}

.mobile-card-disclaimer {
    width: 100%;
    padding: 4px;
    font-size:9px;
    color: #888;
    line-height: 1.5;
    text-align: center;
}

.mobile-card-disclaimer a {
    color: #c50428;
    text-decoration: none;
}

.mobile-card-disclaimer a:hover {
    text-decoration: underline;
}

/* ============================================
   DESKTOP LAYOUT (768px and up)
   ============================================ */
@media (min-width: 768px) {
    .casinos-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .casino-card {
        background: var(--card-bg-light);
        color: var(--text-dark);
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: var(--spacing-lg);
        align-items: center;
        padding: var(--spacing-lg);
        text-align: center;
    }
    
    .casino-card.highlight {
        background: linear-gradient(90deg, #fff5f5 0%, #ffffff 100%);
        border: 2px solid var(--primary-color);
    }
    
    .badge-top {
        top: var(--spacing-sm);
        left: var(--spacing-sm);
        transform: none;
    }
    
    .casino-rank {
        position: static;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .casino-logo {
        margin-bottom: 0;
        width: 100%;
    }
    
    .casino-logo img {
        max-width: 250px;
        height: 125px;
    }
    
    .casino-info {
        display: contents;
    }
    
    .casino-info h3 {
        font-size: 1.25rem;
        color: var(--secondary-color);
        align-self: center;
    }
    
    .casino-rating {
        font-size: 2rem;
        align-self: center;
        width: 100%;
        justify-content: center;
    }
    
    .casino-bonus {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: white;
        align-self: center;
        border-left: none;
        width: 100%;
    }
    
    .bonus-label {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.75rem;
    }
    
    .bonus-value {
        font-size: 0.875rem;
        color: white;
    }
    
    .casino-features {
        align-self: center;
        margin-bottom: 0;
    }
    
    .casino-features li {
        font-size: 0.875rem;
    }
    
    .casino-cta {
        align-self: center;
        margin-top: 0;
        width: 100%;
    }
    
    .btn {
        font-size: 1rem;
        padding: var(--spacing-md) var(--spacing-lg);
    }
}

/* ============================================
   INFO SECTION
   ============================================ */
.info-section {
    background: var(--secondary-color);
    color: var(--text-primary);
    padding: var(--spacing-lg) 0;
}

@media (min-width: 768px) {
    .info-section {
        padding: var(--spacing-xxl) 0;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

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

.info-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.info-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--spacing-lg) 0;
}

@media (min-width: 768px) {
    .faq-section {
        padding: var(--spacing-xxl) 0;
    }
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xl);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.faq-item {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--background-light);
    padding: var(--spacing-lg) 0;
}

@media (min-width: 768px) {
    .about-section {
        padding: var(--spacing-xxl) 0;
    }
}

.about-content h2 {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.about-content > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    font-size: var(--font-size-lg);
    color: #666;
    line-height: 1.8;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.criteria-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.criteria-item:hover {
    box-shadow: var(--shadow-md);
}

.criteria-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}

.criteria-item p {
    color: #666;
}

.responsible-gaming-notice {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--text-primary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.responsible-gaming-notice h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.responsible-gaming-notice p {
    line-height: 1.8;
    opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--secondary-color);
    color: var(--text-primary);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

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

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-section ul li a {
    opacity: 0.8;
    transition: var(--transition-fast);
}

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

.responsible-gaming {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid var(--primary-color);
}

/* Responsible Gaming Links */
.responsible-gaming-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rg-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rg-link-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.05);
}

.rg-link-item a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.rg-link-item img {
    display: block;
    max-width: 100%;
    height: auto;
}

.rg-link-item p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
    color: var(--text-primary);
}

@media (max-width: 767px) {
    .responsible-gaming-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

.footer-bottom {
    border-top: none;
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-xs);
}

.disclaimer {
    font-size: 0.75rem !important;
    opacity: 0.6 !important;
}

/* ============================================
   MOBILE NAVIGATION (< 768px)
   ============================================ */
@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: none !important;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Performance Optimization: Preload background */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-attachment: fixed;
    z-index: -1;
}

/* ============================================
   PAGE CONTENT STYLES (About, Contact, Terms, Privacy)
   ============================================ */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

.page-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid #c50428;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header .last-updated {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
}

.content-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: #c50428;
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid #f0f0f0;
}

.content-section h3 {
    color: #000000;
    font-size: 1.3rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.content-section p {
    color: #333333;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.content-section ul,
.content-section ol {
    color: #333333;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.content-section li {
    margin-bottom: var(--spacing-sm);
}

.content-section a {
    color: #c50428;
    text-decoration: underline;
    transition: var(--transition-normal);
}

.content-section a:hover {
    color: #a00320;
}

.content-section strong {
    color: #000000;
    font-weight: 700;
}

/* Contact Page Specific */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-item {
    background: #f8f8f8;
    padding: var(--spacing-lg);
    border-radius: var(--radius-sm);
    border-left: 4px solid #c50428;
}

.contact-item h3 {
    color: #c50428;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    margin-top: 0;
}

.contact-item p {
    margin-bottom: 0;
}

.faq-item {
    background: #f8f8f8;
    padding: var(--spacing-lg);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid #4caf50;
}

.faq-item h3 {
    color: #000000;
    font-size: 1.15rem;
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}

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

/* Responsive Design for Pages */
@media (max-width: 767px) {
    .page-content {
        padding: var(--spacing-lg) 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    
    .content-section h2 {
        font-size: 1.4rem;
    }
    
    .content-section h3 {
        font-size: 1.15rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

