/* ============================================
   AMIGO CASINO - Futuristic Casino Bonus Site
   Gold Theme with Dark Background
   ============================================ */

/* Custom Font for Logo */
@font-face {
    font-family: 'Magz';
    src: url('https://fonts.cdnfonts.com/css/magz');
}

/* CSS Variables */
:root {
    /* Primary Colors - Exact match for Amigo Casino logo */
    --primary-gold: #C9B037;
    --primary-gold-light: #D4BC47;
    --primary-gold-dark: #B39F2D;
    --primary-dark: #111111;

    /* Secondary Colors */
    --secondary-green: #0B3D2E;
    --accent-red: #A11E1E;
    --neutral-light: #E5E5E5;

    /* Background Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #141414;
    --bg-hover: #222222;

    /* Text Colors */
    --text-primary: #E5E5E5;
    --text-secondary: #B0B0B0;
    --text-dark: #111111;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
    --gradient-futuristic: linear-gradient(135deg, #D4AF37 0%, #0B3D2E 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(212, 175, 55, 0.1);
    --shadow-md: 0 4px 16px rgba(212, 175, 55, 0.15);
    --shadow-lg: 0 8px 32px rgba(212, 175, 55, 0.2);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);

    /* Animations */
    --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 {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Futuristic Background Effects */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            var(--primary-gold) 2px,
            var(--primary-gold) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            var(--primary-gold) 2px,
            var(--primary-gold) 4px
        );
    z-index: 1;
}

.glow-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glow-orbs::before,
.glow-orbs::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
    opacity: 0.05;
    filter: blur(100px);
}

.glow-orbs::before {
    top: -300px;
    left: -300px;
    animation: float 20s infinite ease-in-out;
}

.glow-orbs::after {
    bottom: -300px;
    right: -300px;
    animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.main-header {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 170px;  /* Adjusted for larger logo */
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-img {
    height: 150px;  /* 2.5x the original 60px */
    width: auto;
    filter: drop-shadow(0 0 20px rgba(201, 176, 55, 0.3));
    transition: var(--transition-normal);
}

.logo-img:hover {
    filter: drop-shadow(0 0 30px rgba(201, 176, 55, 0.5));
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Magz', 'Poppins', sans-serif;
    font-size: 1.6rem;  /* Reduced by 20% from 2rem */
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow:
        0 0 20px rgba(201, 176, 55, 0.5),
        0 0 40px rgba(201, 176, 55, 0.3);
    letter-spacing: 2px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -5px;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.2rem;  /* Reduced by 20% from 1.5rem */
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.76rem;  /* Reduced by 20% from 0.95rem */
    position: relative;
    transition: var(--transition-normal);
    padding: 0.32rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

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

/* Header with Centered Logo and Hamburger Menu */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.hamburger-menu {
    flex: 0 0 auto;
}

.centered-logo {
    flex: 0 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.header-location {
    display: block;
    font-size: 0.75rem;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.25rem;
    opacity: 0.9;
}

.header-spacer {
    flex: 0 0 auto;
    width: 50px; /* Same width as hamburger button for balance */
}

.hamburger-toggle {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 50px;
    height: 50px;
    z-index: 1002;
}

.hamburger-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-toggle:hover span {
    background: #FFD700;
}

.hamburger-toggle.active {
    background: rgba(201, 176, 55, 0.2);
    border-color: var(--primary-gold);
}

.hamburger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hamburger Navigation Menu */
.hamburger-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    pointer-events: none;
}

.hamburger-nav.active {
    display: block;
    transform: translateX(0);
    pointer-events: auto;
}

/* Close button inside menu */
.menu-close-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    cursor: pointer !important;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    z-index: 99999;
    transition: all 0.3s ease;
    pointer-events: auto !important;
    isolation: isolate;
}

.menu-close-btn:hover {
    background: rgba(201, 176, 55, 0.2);
    border-color: var(--primary-gold);
    transform: rotate(90deg);
}

.menu-close-btn i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    pointer-events: none;
}

.hamburger-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.hamburger-nav li {
    width: auto;
    border-bottom: none;
}

.hamburger-nav .nav-link {
    display: block;
    padding: 1.5rem 3rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 12px;
}

.hamburger-nav .nav-link:hover {
    background: rgba(201, 176, 55, 0.1);
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.hamburger-nav .nav-link.active {
    color: var(--primary-gold);
    background: rgba(201, 176, 55, 0.15);
    border-color: var(--primary-gold);
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Hide original navigation and old mobile menu */
.main-nav:not(.hamburger-nav) {
    display: none;
}

.header-actions,
.mobile-menu-toggle {
    display: none;
}

/* Hero Section */
.hero-section {
    padding: 2.4rem 0;  /* Reduced by 20% from 3rem */
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 640px;  /* Reduced by 20% from 800px */
    height: 640px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

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

.hero-title {
    font-size: 2.4rem;  /* Reduced by 20% from 3rem */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.96rem;
}

.title-line {
    display: block;
    font-size: 1.6rem;  /* Reduced by 20% from 2rem */
    font-weight: 600;
    color: var(--text-secondary);
}

.title-highlight {
    display: block;
    font-size: 2.8rem;  /* Reduced by 20% from 3.5rem */
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    margin: 0.32rem 0;
}

.hero-subtitle {
    font-size: 0.88rem;  /* Reduced by 20% from 1.1rem */
    color: var(--text-secondary);
    max-width: 480px;  /* Reduced by 20% from 600px */
    margin: 0 auto 2rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.4rem;  /* Reduced by 20% from 3rem */
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem 1.2rem;  /* Reduced by 20% */
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;  /* Reduced by 20% from 10px */
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-4px);  /* Reduced by 20% from -5px */
    background: rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-size: 1.6rem;  /* Reduced by 20% from 2rem */
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 0 0 16px rgba(212, 175, 55, 0.5);
}

.stat-label {
    font-size: 0.64rem;  /* Reduced by 20% from 0.8rem */
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Filter Bar */
.filter-bar {
    background: var(--bg-secondary);
    padding: 0.96rem 0;  /* Reduced by 20% from 1.2rem */
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 2rem;  /* Reduced by 20% from 2.5rem */
    position: sticky;
    top: 70px;  /* Adjusted for smaller header */
    z-index: 100;
}

.filter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
    font-weight: 500;
}

.filter-tab:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.filter-tab.active i {
    color: var(--text-dark);
}

.sort-select {
    padding: 0.75rem 2rem 0.75rem 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

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

/* Casino Card */
.casino-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.casino-card.featured {
    border: 2px solid var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    animation: badge-pulse 2s ease-in-out infinite;
}

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

.badge-new {
    background: linear-gradient(135deg, #0B3D2E 0%, #0F5A3F 100%);
    color: #fff;
}

.badge-hot {
    background: linear-gradient(135deg, #A11E1E 0%, #D32F2F 100%);
    color: #fff;
}

/* Card Content */
.card-content {
    padding: 0.96rem;  /* Reduced by 20% from 1.2rem */
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;  /* Reduced by 20% from 1.5rem */
}

.casino-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    min-height: 80px;
}

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

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

.rating-stars {
    display: flex;
    gap: 0.25rem;
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-top: 0.25rem;
}

/* Card Body */
.bonus-title {
    font-size: 1.04rem;  /* Reduced by 20% from 1.3rem */
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.64rem;  /* Reduced by 20% from 0.8rem */
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.bonus-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.detail-item i {
    color: var(--primary-gold);
    width: 20px;
}

.bonus-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Card Footer */
.card-footer {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 0.8rem;  /* Reduced by 20% from 1rem */
    border: none;
    border-radius: 6.4px;  /* Reduced by 20% from 8px */
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;  /* Reduced by 20% from 0.5rem */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.88rem;  /* Reduced by 20% for consistency */
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* Load More */
.load-more {
    text-align: center;
    margin: 3rem 0;
}

.btn-load-more {
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-load-more:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.section-title {
    font-size: 1.6rem;  /* Reduced by 20% from 2rem */
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;  /* Reduced by 20% from 2.5rem */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;  /* Reduced by 20% from 1rem */
}

.title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;  /* Reduced by 20% from 40px */
    height: 32px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;  /* Reduced by 20% from 10px */
    color: var(--primary-gold);
    font-size: 0.96rem;  /* Reduced by 20% from 1.2rem */
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    background: var(--bg-card);
    border-collapse: collapse;
}

.comparison-table th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border-bottom: 2px solid var(--primary-gold);
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.comparison-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.casino-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.casino-name img {
    width: 40px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
}

.bonus-amount {
    color: var(--primary-gold);
    font-weight: 600;
}

.wagering {
    font-weight: 500;
}

.wagering.best {
    color: #4CAF50;
    font-weight: 700;
}

.rating-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.btn-table-action {
    padding: 0.5rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-table-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Info Section */
.info-section {
    padding: 5rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    transition: var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-glow);
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

.faq-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.2rem;  /* Reduced by 20% from 1.5rem */
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.88rem;  /* Reduced by 20% from 1.1rem */
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-normal);
}

.faq-question:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.faq-question i {
    color: var(--primary-gold);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 1.2rem 0.8rem;  /* Reduced by 20% */
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.8rem;  /* Reduced by 20% for consistency */
}

.faq-answer ul,
.faq-answer ol {
    padding: 0 1.5rem 1rem 3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer ul li,
.faq-answer ol li {
    margin-bottom: 0.5rem;
}

.faq-answer ul li strong,
.faq-answer ol li strong {
    color: var(--primary-gold);
}

.faq-answer p:last-child,
.faq-answer ul:last-child,
.faq-answer ol:last-child {
    padding-bottom: 1.5rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.newsletter-content {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

.newsletter-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

.btn-subscribe {
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

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

.footer-column h3 {
    color: var(--primary-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 64px;  /* Reduced by 20% from 80px */
    width: auto;
    filter: brightness(1.1) drop-shadow(0 0 15px rgba(201, 176, 55, 0.4));
    transition: var(--transition-normal);
}

.footer-logo-img:hover {
    filter: brightness(1.2) drop-shadow(0 0 25px rgba(201, 176, 55, 0.6));
}

.footer-logo .logo-text {
    font-family: 'Magz', 'Poppins', sans-serif;
    font-size: 1.28rem;  /* Reduced by 20% from 1.6rem */
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(201, 176, 55, 0.5);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--primary-gold);
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
}

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

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

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 0.5rem;
    color: #999;
    font-size: 0.85rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
}

.payment-methods i {
    font-size: 2rem;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.payment-methods i:hover {
    color: var(--primary-gold);
}

/* Coljuegos Logo */
.footer-licenses {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.coljuegos-logo {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-normal);
}

.coljuegos-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-md);
}

.coljuegos-img {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 0.5rem;
    filter: brightness(1.1);
}

.coljuegos-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .casino-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

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

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

    .hero-title {
        font-size: 3rem;
    }

    .title-highlight {
        font-size: 3.5rem;
    }

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

@media (max-width: 768px) {
    .header-content {
        padding: 0.75rem 0;
    }

    .logo-text {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .title-highlight {
        font-size: 2.5rem;
    }

    .title-line {
        font-size: 1.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1rem 1.5rem;
    }

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

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

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-licenses {
        order: 2;
        width: 100%;
        padding: 0;
    }

    .coljuegos-logo {
        max-width: 200px;
        margin: 0 auto;
    }

    .coljuegos-img {
        max-width: 100px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .title-highlight {
        font-size: 2rem;
    }

    .filter-tabs {
        width: 100%;
        justify-content: flex-start;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Hover Effects for Cards */
.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

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

/* Animated Gradient Text */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-gold), #FFD700, var(--primary-gold));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
}

/* Page Divider */
.page-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    gap: 2rem;
    position: relative;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 176, 55, 0.3) 25%,
        rgba(201, 176, 55, 0.5) 50%,
        rgba(201, 176, 55, 0.3) 75%,
        transparent 100%
    );
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.divider-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(201, 176, 55, 0.8),
        transparent
    );
    animation: divider-shine 3s infinite;
}

@keyframes divider-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.divider-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border: 2px solid rgba(201, 176, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.5rem;
    box-shadow:
        0 0 30px rgba(201, 176, 55, 0.2),
        inset 0 0 20px rgba(201, 176, 55, 0.1);
    animation: divider-rotate 10s linear infinite;
}

@keyframes divider-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.divider-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(201, 176, 55, 0.2) 0%,
        transparent 70%
    );
    animation: divider-pulse 2s ease-in-out infinite;
}

@keyframes divider-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

/* Responsive Divider */
@media (max-width: 768px) {
    .page-divider {
        padding: 2rem 1rem;
    }

    .divider-line {
        max-width: 150px;
    }

    .divider-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Bonus Types Section */
.bonus-types-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.bonus-types-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.bonus-types-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.bonus-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bonus-type-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-normal);
}

.bonus-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-gold);
}

.bonus-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--text-dark);
}

.bonus-type-card h3 {
    font-size: 1.12rem;  /* Reduced by 20% from 1.4rem */
    color: var(--primary-gold);
    margin-bottom: 0.8rem;  /* Reduced by 20% from 1rem */
}

.bonus-type-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.2rem;  /* Reduced by 20% from 1.5rem */
    font-size: 0.88rem;  /* Reduced by 20% for consistency */
}

.bonus-features-list {
    list-style: none;
    padding: 0;
}

.bonus-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-primary);
}

.bonus-features-list i {
    color: var(--primary-gold);
}

/* How to Choose Section */
.how-to-choose-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.guide-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guide-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.guide-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.guide-factors {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.factor-item {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--primary-gold);
    padding: 1.5rem;
    border-radius: 8px;
    transition: var(--transition-normal);
}

.factor-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.factor-item h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.factor-item h3 i {
    font-size: 1.2rem;
}

.factor-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Top Casinos Section */
.top-casinos-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.casino-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-normal);
}

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

.category-card h3 {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.ranked-list {
    list-style: none;
    padding: 0;
    counter-reset: item;
}

.ranked-list li {
    counter-increment: item;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.ranked-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.ranked-list li strong {
    color: var(--primary-gold);
}