/*
Theme Name: Casino Slots Brazil
Theme URI: https://kevin-walzer.com
Author: Casino Slots Brazil Team
Author URI: https://kevin-walzer.com
Description: Casino Slots Brazil - Tema profissional de avaliacao de cassinos online para o mercado brasileiro.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: casino-slots-brazil
*/

/* ========================================
   CSS VARIABLES
======================================== */
:root {
    /* Colors - Primary */
    --color-primary: #4A008B;
    --color-primary-dark: #2a0050;
    --color-primary-light: #7B2CBF;
    --color-accent: #FFD700;
    --color-accent-hover: #e6c200;
    --color-accent-glow: rgba(255, 215, 0, 0.3);

    /* Status Colors */
    --color-success: #2ecc71;
    --color-danger: #e74c3c;
    --color-warning: #f39c12;
    --color-info: #3498db;

    /* Text Colors */
    --color-text: #333;
    --color-text-light: #666;
    --color-text-muted: #999;
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #555;
    --color-text-tertiary: #888;

    /* Background Colors */
    --color-bg: #F8F9FA;
    --color-bg-white: #fff;
    --color-bg-card: #fff;
    --color-bg-secondary: #f5f5f5;

    /* Border Colors */
    --color-border: #eee;
    --color-border-light: #f0f0f0;

    /* Typography */
    --font-primary: 'MiSans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    /* Font Sizes */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 30px;

    /* Spacing Scale */
    --spacing-1: 4px;
    --spacing-2: 8px;
    --spacing-3: 12px;
    --spacing-4: 16px;
    --spacing-5: 24px;
    --spacing-6: 32px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-xxl: 80px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;
    --radius-pill: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 10px 30px rgba(74, 0, 139, 0.15);
    --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.4);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   FONT LOADING - MiSans (Unified)
======================================== */
@font-face {
    font-family: 'MiSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'MiSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'MiSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--color-accent-glow); }
    50% { box-shadow: 0 0 40px var(--color-accent-glow), 0 0 60px var(--color-accent-glow); }
}

/* Animation Utility Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.4s ease forwards;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

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

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-accent) 0%, #FFC000 100%);
    color: var(--color-primary);
    border: 2px solid var(--color-accent);
    font-weight: var(--font-weight-bold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-accent-hover) 0%, #DAA520 100%);
    border-color: var(--color-accent-hover);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.btn-gold:active {
    transform: translateY(0);
}

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    font-weight: var(--font-weight-bold);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

.section-title {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   HEADER
======================================== */
.site-header {
    background-color: var(--color-primary);
    color: #fff;
    position: relative;
    z-index: 100;
}

.top-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-nav .container {
    height: 80px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    transition: transform var(--transition-fast);
}

.logo:hover {
    color: #fff;
    transform: scale(1.02);
}

.logo i {
    color: var(--color-accent);
    font-size: 32px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.logo-img {
    height: 45px;
    width: auto;
}

.main-menu {
    display: flex;
    align-items: center;
}

.main-menu .nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu .nav-item {
    margin: 0;
}

.main-menu a,
.main-menu .nav-link {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast), transform var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    padding: 8px 0;
}

.main-menu a::after,
.main-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.main-menu a:hover,
.main-menu .nav-link:hover {
    color: var(--color-accent);
}

.main-menu a:hover::after,
.main-menu .nav-link:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-login {
    color: #fff;
    font-weight: var(--font-weight-medium);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.btn-login:hover {
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
}

.btn-register {
    background: linear-gradient(135deg, var(--color-accent) 0%, #FFC000 100%);
    color: var(--color-primary);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-bold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all var(--transition-base);
}

.btn-register:hover {
    background: linear-gradient(135deg, var(--color-accent-hover) 0%, #DAA520 100%);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.bottom-nav {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.bottom-nav .container {
    height: 44px;
    display: flex;
    align-items: center;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.bottom-links::-webkit-scrollbar {
    display: none;
}

.bottom-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--transition-fast);
    white-space: nowrap;
    padding: 4px 0;
}

.bottom-links a:hover {
    color: var(--color-accent);
}

/* Secondary nav from wp_nav_menu */
.secondary-nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.secondary-nav-list li {
    margin: 0;
}

.secondary-nav-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.secondary-nav-list a:hover {
    color: #FFD700;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #4A008B;
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 20px;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    margin-bottom: 0;
}

.mobile-nav-list a {
    display: block;
    padding: 15px 0;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-list a:hover {
    color: #FFD700;
}

.mobile-auth-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, #1a0033 100%);
    padding: 120px 0 100px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Animated background pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123, 44, 191, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
    animation: float 8s ease-in-out infinite;
}

/* Decorative geometric shapes */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: var(--radius-full);
    animation: pulse 6s ease-in-out infinite;
}

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

.hero h1 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease forwards;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(16px, 2.5vw, 22px);
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 45px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-accent);
    font-weight: var(--font-weight-medium);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-base);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.3);
}

.trust-item i {
    font-size: 18px;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-cta .btn-gold {
    animation: glow 3s ease-in-out infinite;
    animation-delay: 1s;
}

/* ========================================
   SECTIONS
======================================== */
section {
    padding: 80px 0;
}

.featured-casinos {
    background: var(--color-bg);
}

.guide-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.guide-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: var(--radius-full);
}

.guide-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.2) 0%, transparent 70%);
    border-radius: var(--radius-full);
}

.guide-section .container {
    position: relative;
    z-index: 1;
}

.guide-section .section-title {
    color: #fff;
}

.guide-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.latest-reviews {
    background: var(--color-bg);
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   HOMEPAGE CONTENT SECTIONS
======================================== */

/* Intro Section */
.intro-section {
    background: var(--color-bg-white);
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-pill);
}

.intro-section h2 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-size: clamp(26px, 4vw, 32px);
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
    margin-top: 20px;
}

.intro-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.intro-section .bj88-quick-summary {
    max-width: 800px;
    margin: 30px auto 0;
}

/* Why Trust Section */
.why-trust-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 80px 0;
}

.why-trust-section h2 {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.why-trust-section > .container > p {
    font-size: 17px;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.why-trust-section .bj88-features-grid {
    margin-bottom: 40px;
}

.why-trust-section h3 {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 24px;
    color: #1a1a1a;
    margin: 50px 0 20px;
    text-align: center;
}

.why-trust-section .bj88-step-guide {
    max-width: 800px;
    margin: 0 auto;
}

/* How to Choose Section */
.how-to-choose-section {
    background: #fff;
    padding: 80px 0;
}

.how-to-choose-section h2 {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.how-to-choose-section > .container > p {
    font-size: 17px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.how-to-choose-section h3 {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 22px;
    color: #1a1a1a;
    margin: 40px 0 20px;
}

.how-to-choose-section h3:first-of-type {
    margin-top: 0;
}

.how-to-choose-section .bj88-comparison-table {
    margin-bottom: 30px;
}

.how-to-choose-section .bj88-alert {
    max-width: 800px;
    margin: 30px auto;
}

/* PIX Section */
.pix-section {
    background: linear-gradient(135deg, #4A008B 0%, #2a0050 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pix-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.pix-section h2 {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pix-section > .container > p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.pix-section h3 {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 22px;
    color: #FFD700;
    margin: 40px 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pix-section .bj88-features-grid {
    position: relative;
    z-index: 1;
}

.pix-section .bj88-features-grid .feature-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pix-section .bj88-features-grid .feature-item i {
    color: #FFD700;
}

.pix-section .bj88-features-grid .feature-item h4 {
    color: #fff;
}

.pix-section .bj88-step-guide {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pix-section .bj88-step-guide .step-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pix-section .bj88-step-guide .step-number {
    background: #FFD700;
    color: #4A008B;
}

.pix-section .bj88-step-guide .step-text {
    color: #fff;
}

.pix-section .bj88-alert {
    max-width: 700px;
    margin: 30px auto 0;
    position: relative;
    z-index: 1;
}

/* Responsible Gaming Section */
.responsible-gaming-section {
    background: #fff;
    padding: 80px 0;
}

.responsible-gaming-section h2 {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.responsible-gaming-section > .container > p {
    font-size: 17px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.responsible-gaming-section .bj88-features-grid {
    margin-bottom: 40px;
}

.responsible-gaming-section .bj88-alert {
    max-width: 800px;
    margin: 0 auto;
}

.responsible-gaming-section .bj88-cta-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
}

/* Homepage FAQ Section */
.homepage-faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.homepage-faq-section h2 {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.homepage-faq-section > .container > p {
    font-size: 17px;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.homepage-faq-section .bj88-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.homepage-faq-section .bj88-cta-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
}

/* Final CTA Section - Enhanced */
.final-cta-section {
    background: linear-gradient(135deg, #4A008B 0%, #2a0050 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

.final-cta-section h2 {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.final-cta-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.final-cta-section .cta-buttons {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .intro-section,
    .why-trust-section,
    .how-to-choose-section,
    .pix-section,
    .responsible-gaming-section,
    .homepage-faq-section {
        padding: 50px 0;
    }

    .intro-section h2,
    .why-trust-section h2,
    .how-to-choose-section h2,
    .pix-section h2,
    .responsible-gaming-section h2,
    .homepage-faq-section h2 {
        font-size: 26px;
    }

    .intro-section p,
    .why-trust-section > .container > p,
    .how-to-choose-section > .container > p,
    .pix-section > .container > p,
    .responsible-gaming-section > .container > p,
    .homepage-faq-section > .container > p {
        font-size: 15px;
    }

    .final-cta-section {
        padding: 60px 0;
    }

    .final-cta-section h2 {
        font-size: 28px;
    }

    .final-cta-section p {
        font-size: 16px;
    }
}

/* ========================================
   GRID LAYOUTS
======================================== */
.grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ========================================
   CASINO REVIEW CARD
======================================== */
.review-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
    position: relative;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-primary);
    border-color: var(--color-primary);
}

.review-card:hover::before {
    opacity: 1;
}

.card-header {
    height: 160px;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4A008B 0%, #7B2CBF 100%);
}

.casino-logo {
    position: absolute;
    bottom: -25px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.casino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.casino-logo i {
    font-size: 36px;
    color: #4A008B;
}

.casino-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-hot { background: #ff4757; color: #fff; }
.badge-new { background: #2ecc71; color: #fff; }
.badge-top { background: #FFD700; color: #4A008B; }
.badge-vip { background: #4A008B; color: #fff; }

.card-body {
    padding: 40px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.casino-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.casino-name {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 20px;
    color: #333;
}

.stars {
    color: #FFD700;
    font-size: 16px;
}

.stars i {
    margin-left: 2px;
}

.card-bonus {
    font-size: 14px;
    color: #2ecc71;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.pros-list {
    margin-bottom: 25px;
    list-style: none;
    padding: 0;
}

.pros-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}

.pros-list li i {
    color: #2ecc71;
    font-size: 18px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.meta-item i {
    color: #4A008B;
}

.rating-badge {
    background: #FFD700;
    color: #4A008B;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
}

.card-footer {
    margin-top: auto;
}

.read-review-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    color: #4A008B;
    font-weight: 600;
}

.read-review-link:hover {
    text-decoration: underline;
}

/* ========================================
   GUIDE CARDS
======================================== */
.guide-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.guide-card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.guide-card:hover::before {
    opacity: 1;
}

.guide-icon {
    width: 75px;
    height: 75px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--color-accent);
    font-size: 32px;
    transition: all var(--transition-base);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.guide-card:hover .guide-icon {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--color-accent);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.guide-title {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-size: 19px;
    margin-bottom: 12px;
    color: #fff;
}

.guide-text {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.guide-link {
    color: var(--color-accent);
    font-weight: var(--font-weight-medium);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.guide-link:hover {
    gap: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.guide-link i {
    transition: transform var(--transition-fast);
}

.guide-link:hover i {
    transform: translateX(3px);
}

/* ========================================
   LATEST REVIEW CARDS
======================================== */
.latest-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    transition: box-shadow 0.3s ease;
}

.latest-review-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.latest-logo {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 8px;
    object-fit: contain;
    border: 1px solid #f0f0f0;
    padding: 5px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.latest-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.latest-logo i {
    font-size: 28px;
    color: #4A008B;
}

.latest-content {
    flex: 1;
    min-width: 0;
}

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

.latest-title {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 18px;
    color: #333;
}

.latest-rating {
    background: #FFD700;
    color: #4A008B;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
}

.latest-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.latest-summary {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.read-review-btn {
    font-size: 14px;
    color: #4A008B;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-review-btn:hover {
    text-decoration: underline;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, #1a0033 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

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

.cta-content h2 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 18px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-section .bj88-trust-badges {
    margin-top: 20px;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: linear-gradient(180deg, #2D1B4E 0%, #1a1030 100%);
    color: #fff;
    border-top: 4px solid var(--color-accent);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
}

.footer-main {
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.footer-logo:hover {
    color: #fff;
}

.footer-logo i {
    color: #FFD700;
    font-size: 28px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col h4,
.footer-title {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #FFD700;
    color: #4A008B;
}

.footer-badges {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
}

.badges-inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.badge-item i {
    color: #FFD700;
    font-size: 20px;
}

.age-badge .age-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid #FF4444;
    border-radius: 50%;
    color: #FF4444;
    font-size: 13px;
    font-weight: 700;
}

.footer-disclaimer {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.regulatory-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

.badge {
    opacity: 0.7;
    height: 30px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 12px;
    font-weight: bold;
}

.plus-18 {
    background: transparent;
    border: 2px solid #FF4444;
    color: #FF4444;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.payment-methods i {
    font-size: 24px;
    opacity: 0.7;
}

/* ========================================
   PAGE HEADER
======================================== */
.page-header {
    background: linear-gradient(135deg, #4A008B 0%, #2a0050 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.page-title {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 42px;
    margin-bottom: 10px;
    color: #fff;
}

.page-description {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

/* ========================================
   CONTENT AREA
======================================== */
.content-area {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.main-content {
    min-width: 0;
}

.sidebar {
    min-width: 0;
}

.entry-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.entry-content h2 {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 28px;
    color: #1a1a1a;
    margin: 30px 0 15px;
}

.entry-content h3 {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 22px;
    color: #1a1a1a;
    margin: 25px 0 12px;
}

.entry-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.entry-content ul,
.entry-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.entry-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ========================================
   SIDEBAR WIDGETS
======================================== */
.sidebar-widgets {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-title i {
    color: #4A008B;
}

/* Top Casinos Widget */
.top-casinos-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-casino-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.top-casino-item:last-child {
    border-bottom: none;
}

.top-casino-item .rank {
    width: 24px;
    height: 24px;
    background: #4A008B;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.casino-mini-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.casino-mini-info {
    flex: 1;
    min-width: 0;
}

.casino-mini-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.casino-mini-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.casino-mini-rating .stars {
    font-size: 12px;
}

.casino-mini-rating span {
    color: #666;
}

.top-casino-item .btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

/* Search Widget */
.search-form {
    display: flex;
    gap: 8px;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    font-size: 14px;
}

.search-btn {
    padding: 10px 15px;
    background: #4A008B;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.search-btn:hover {
    background: #350066;
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 10px;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    color: #555;
    font-size: 14px;
}

.categories-list a:hover {
    color: #4A008B;
}

.categories-list .count {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

/* Newsletter Widget */
.widget-newsletter p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    font-size: 14px;
}

/* Responsible Gaming Widget */
.responsible-content {
    text-align: center;
}

.age-restriction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.age-restriction .age-badge {
    width: 40px;
    height: 40px;
    border: 2px solid #ff4757;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4757;
    font-weight: 700;
    font-size: 14px;
}

.widget-responsible p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.responsible-link {
    color: #4A008B;
    font-weight: 600;
    font-size: 14px;
}

/* ========================================
   NO CASINOS MESSAGE (Empty State)
======================================== */
.no-casinos {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: var(--radius-lg);
    grid-column: 1 / -1;
    border: 2px dashed var(--color-border);
    position: relative;
    overflow: hidden;
}

.no-casinos::before {
    content: '\eb2f'; /* ri-building-2-line */
    font-family: 'remixicon';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 150px;
    color: rgba(74, 0, 139, 0.05);
    z-index: 0;
}

.no-casinos p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.no-casinos a {
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    text-decoration: underline;
    text-decoration-color: var(--color-accent);
    text-underline-offset: 4px;
    transition: all var(--transition-fast);
}

.no-casinos a:hover {
    color: var(--color-primary-dark);
    text-decoration-color: var(--color-primary);
}

/* ========================================
   SINGLE CASINO PAGE
======================================== */
.casino-hero {
    background: linear-gradient(135deg, #2a0050 0%, #4A008B 100%);
    padding: 60px 0;
    color: #fff;
}

.casino-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.casino-hero-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.casino-logo-large {
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.casino-logo-large i {
    font-size: 60px;
    color: #4A008B;
}

.casino-hero-info {
    flex: 1;
}

.casino-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.license-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.license-badge i {
    color: #FFD700;
}

.casino-title {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 42px;
    margin-bottom: 10px;
    color: #fff;
}

.casino-rating-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-value {
    font-size: 24px;
    font-weight: 700;
}

.rating-label {
    background: #FFD700;
    color: #4A008B;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
}

.casino-hero-right {
    min-width: 320px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-label {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.bonus-value {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.bonus-code {
    margin-bottom: 15px;
    font-size: 14px;
}

.bonus-code code {
    background: #FFD700;
    color: #4A008B;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 5px;
}

.bonus-terms {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Quick Info Bar */
.quick-info-bar {
    background: #fff;
    padding: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.quick-info-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.quick-info-item {
    text-align: center;
    flex: 1;
}

.quick-info-item i {
    font-size: 24px;
    color: #4A008B;
    margin-bottom: 8px;
}

.quick-info-item .info-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.quick-info-item .info-value {
    font-weight: 700;
    color: #333;
}

/* Casino Content */
.casino-content {
    padding: 60px 0;
}

.casino-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.casino-main {
    min-width: 0;
    overflow: hidden;
}

.casino-main section {
    padding: 0;
    margin-bottom: 40px;
}

.casino-main h2 {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.casino-main h2 i {
    color: #4A008B;
}

/* Rating Breakdown */
.rating-breakdown {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-bar-item {
    display: grid;
    grid-template-columns: 100px 1fr 40px;
    align-items: center;
    gap: 15px;
}

.rating-bar-item .bar-label {
    font-size: 14px;
    color: #555;
}

.rating-bar-item .bar-track {
    height: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.rating-bar-item .bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4A008B 0%, #FFD700 100%);
    border-radius: 5px;
}

.rating-bar-item .bar-value {
    font-weight: 700;
    color: #4A008B;
    text-align: right;
}

/* Pros & Cons */
.pros-cons {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pros-column h3,
.cons-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-column h3 {
    color: #2ecc71;
}

.cons-column h3 {
    color: #e74c3c;
}

.pros-column ul,
.cons-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-column li,
.cons-column li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #555;
}

.pros-column li:last-child,
.cons-column li:last-child {
    border-bottom: none;
}

.pros-column li i {
    color: #2ecc71;
    margin-top: 3px;
}

.cons-column li i {
    color: #e74c3c;
    margin-top: 3px;
}

/* Casino Article */
.casino-article {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Payment Methods */
.payment-methods-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
}

.payment-item i {
    color: #4A008B;
    font-size: 20px;
}

/* Software Providers */
.software-providers {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.provider-tag {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
}

/* Casino Sidebar */
.casino-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-cta {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.sidebar-cta.sticky {
    position: sticky;
    top: 100px;
}

.sidebar-rating {
    margin-bottom: 20px;
}

.rating-circle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.rating-number {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 48px;
    color: #4A008B;
    line-height: 1;
}

.rating-max {
    font-size: 18px;
    color: #999;
}

.sidebar-terms {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
    margin-bottom: 0;
}

.sidebar-features,
.sidebar-facts {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-features h3,
.sidebar-facts h3 {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.sidebar-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}

.sidebar-features li i {
    color: #2ecc71;
}

.sidebar-facts dl {
    margin: 0;
}

.sidebar-facts dt {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.sidebar-facts dd {
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-facts dd:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Bottom CTA */
.bottom-cta {
    background: linear-gradient(135deg, #4A008B 0%, #2a0050 100%);
    padding: 60px 0;
    color: #fff;
}

.bottom-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-cta h2 {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 28px;
    margin-bottom: 8px;
    color: #fff;
}

.bottom-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* Related Casinos */
.related-casinos {
    padding: 60px 0;
    background: #f8f9fa;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.related-logo {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-logo img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}

.related-logo i {
    font-size: 30px;
    color: #4A008B;
}

.related-info {
    flex: 1;
}

.related-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.related-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
}

.related-rating .stars {
    font-size: 14px;
}

.related-bonus {
    font-size: 13px;
    color: #2ecc71;
    margin: 0;
}

/* ========================================
   ARCHIVE CASINO PAGE
======================================== */
.archive-hero {
    background: linear-gradient(135deg, #4A008B 0%, #2a0050 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.archive-title {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 42px;
    margin-bottom: 15px;
    color: #fff;
}

.archive-description {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.filter-bar {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.filter-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.filter-options {
    display: flex;
    gap: 10px;
    flex: 1;
}

.filter-btn {
    padding: 8px 16px;
    background: #f8f9fa;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #4A008B;
    color: #fff;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options label {
    font-size: 14px;
    color: #666;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    font-size: 14px;
}

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

.casino-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.casino-list-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    display: grid;
    grid-template-columns: 50px 100px 1fr 200px 150px 150px;
    gap: 25px;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s;
}

.casino-list-item:hover {
    box-shadow: 0 10px 30px rgba(74, 0, 139, 0.1);
    border-color: #4A008B;
}

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

.rank-number {
    width: 40px;
    height: 40px;
    background: #4A008B;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.casino-list-item .casino-logo {
    position: static;
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 10px;
}

.casino-info {
    min-width: 0;
}

.casino-info .casino-name {
    font-size: 22px;
    margin-bottom: 8px;
}

.casino-info .casino-name a {
    color: #333;
}

.casino-info .casino-name a:hover {
    color: #4A008B;
}

.casino-info .casino-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.casino-info .rating-text {
    font-size: 14px;
    color: #666;
}

.casino-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.casino-highlights li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #555;
}

.casino-highlights li i {
    color: #2ecc71;
}

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

.casino-bonus .bonus-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.casino-bonus .bonus-value {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 16px;
    color: #2ecc71;
}

.casino-bonus .bonus-code {
    font-size: 12px;
    margin-top: 5px;
}

.casino-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.stat-item .stat-label {
    font-size: 11px;
    color: #999;
    display: block;
}

.stat-item .stat-value {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.archive-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.archive-info {
    background: #fff;
    padding: 60px 0;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-content h2 {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
}

.info-content > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.criteria-item {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.criteria-item i {
    font-size: 36px;
    color: #4A008B;
    margin-bottom: 15px;
}

.criteria-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.criteria-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   PAGINATION
======================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    transition: all 0.2s;
}

.page-numbers:hover,
.page-numbers.current {
    background: #4A008B;
    border-color: #4A008B;
    color: #fff;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .container {
        width: 100%;
        padding: 0 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

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

    .casino-list-item {
        grid-template-columns: 40px 80px 1fr 180px 130px;
    }

    .casino-stats {
        display: none;
    }
}

@media (max-width: 992px) {
    .grid-3x2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .latest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .casino-grid {
        grid-template-columns: 1fr;
    }

    .casino-sidebar {
        display: none;
    }

    .casino-hero-inner {
        flex-direction: column;
    }

    .casino-hero-right {
        min-width: 100%;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .casino-list-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }

    .casino-rank {
        position: absolute;
        top: 15px;
        left: 15px;
    }

    .casino-list-item {
        position: relative;
        padding-top: 50px;
    }

    .casino-list-item .casino-logo {
        margin: 0 auto;
    }

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

    .casino-actions {
        flex-direction: row;
        justify-content: center;
    }

    .criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .auth-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .top-nav .container {
        height: 70px;
    }

    .logo {
        font-size: 22px;
    }

    .logo i {
        font-size: 26px;
    }

    /* Hero Mobile Fixes */
    .hero {
        padding: 70px 0 60px;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.25;
        padding: 0 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero p {
        font-size: 15px;
        padding: 0 10px;
    }

    .trust-indicators {
        gap: 10px;
        padding: 0 10px;
        justify-content: center;
    }

    .trust-item {
        font-size: 12px;
        padding: 8px 14px;
        flex: 0 0 auto;
    }

    .trust-item i {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Bottom nav mobile scroll */
    .bottom-nav .container {
        padding: 0 15px;
    }

    .bottom-links {
        gap: 20px;
        padding: 0 5px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .grid-3x2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .latest-grid {
        grid-template-columns: 1fr;
    }

    /* Guide cards mobile */
    .guide-card {
        padding: 30px 25px;
    }

    .guide-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .guide-title {
        font-size: 17px;
    }

    .guide-text {
        font-size: 13px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .badges-inner {
        gap: 20px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .bottom-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .quick-info-grid {
        flex-wrap: wrap;
    }

    .quick-info-item {
        flex: 0 0 calc(50% - 10px);
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .rating-bar-item {
        grid-template-columns: 80px 1fr 35px;
    }

    /* Casino article mobile padding */
    .casino-article {
        padding: 20px 15px;
    }

    .entry-content {
        padding: 20px 15px;
    }

    .archive-title {
        font-size: 28px;
    }

    .filter-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-options {
        flex-wrap: wrap;
    }

    .criteria-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 28px;
    }

    /* CTA Section mobile */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* No casinos empty state mobile */
    .no-casinos {
        padding: 50px 25px;
    }

    .no-casinos p {
        font-size: 16px;
    }

    .no-casinos::before {
        font-size: 100px;
    }
}

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

    .hero h1 {
        font-size: 26px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .casino-logo-large {
        width: 100px;
        height: 100px;
    }

    .casino-hero-left {
        flex-direction: column;
        text-align: center;
    }

    .casino-title {
        font-size: 28px;
    }

    .casino-rating-row {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ========================================
   SITEMAP PAGE
======================================== */
.sitemap-intro {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    text-align: center;
}

.sitemap-section {
    background: var(--color-bg-white);
    border-radius: 12px;
    padding: 24px 30px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sitemap-section h2 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sitemap-section h2 i {
    color: var(--color-accent);
    font-size: 24px;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.sitemap-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    position: relative;
    padding-left: 20px;
}

.sitemap-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

.sitemap-list a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.8;
    transition: color 0.2s;
}

.sitemap-list a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .sitemap-list {
        grid-template-columns: 1fr;
    }

    .sitemap-section {
        padding: 20px;
    }
}
