/* ============================================
   LUXURY CASINO NOIR - Premium Pokies Theme
   Deep purple + gold glass-morphism aesthetic
   ============================================ */

/* === CUSTOM FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
    /* Primary Palette */
    --bg-deep: #0d0514;
    --bg-primary: #1a0a2e;
    --bg-secondary: #251342;
    --bg-tertiary: #2f1a54;
    --bg-card: rgba(47, 26, 84, 0.6);

    /* Accent Colors */
    --gold-primary: #ffd700;
    --gold-light: #ffe44d;
    --gold-dark: #cc9900;
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #cc9900 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-gold: #ffd700;

    /* Glass-morphism */
    --glass-bg: rgba(47, 26, 84, 0.4);
    --glass-border: rgba(255, 215, 0, 0.15);
    --glass-blur: blur(20px);

    /* Spacing */
    --section-padding: clamp(3rem, 8vw, 6rem);
    --container-max: 1200px;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Space Grotesk', system-ui, sans-serif;

    /* Effects */
    --shadow-gold: 0 0 40px rgba(255, 215, 0, 0.15);
    --shadow-deep: 0 25px 50px rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* === AMBIENT BACKGROUND === */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 50%, rgba(75, 0, 130, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Noise texture overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); margin-bottom: 1rem; }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* === LAYOUT === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: var(--section-padding) 0;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(13, 5, 20, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gold-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    -webkit-text-fill-color: var(--bg-deep);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

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

.nav-cta {
    background: var(--gold-gradient);
    color: var(--bg-deep) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    -webkit-text-fill-color: var(--bg-deep);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

/* === HERO SECTION === */
.hero {
    min-height: 50vh;
    max-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.hero-badge img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.hero h1 {
    margin-bottom: 1rem;
}

.hero h1 .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 550px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold-gradient);
    color: var(--bg-deep);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.25);
    transition: var(--transition-smooth);
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.35);
    color: var(--bg-deep);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

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

.stat-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--bg-primary);
    padding: 1.25rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    fill: var(--gold-primary);
}

/* === CASINO RANKINGS === */
.rankings {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 100%);
}

.rankings-header {
    text-align: center;
    margin-bottom: 3rem;
}

.rankings-header h2 .highlight {
    color: var(--gold-primary);
}

.rankings-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Casino Card */
.casino-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-gold);
}

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

/* Top 3 Special Styling */
.casino-card.rank-1 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, var(--glass-bg) 100%);
    border-color: rgba(255, 215, 0, 0.4);
    padding: 2rem;
}

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

.casino-card.rank-2,
.casino-card.rank-3 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, var(--glass-bg) 100%);
}

.casino-rank {
    width: 50px;
    height: 50px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
}

.rank-1 .casino-rank {
    background: var(--gold-gradient);
    color: var(--bg-deep);
    font-size: 1.5rem;
}

.rank-2 .casino-rank,
.rank-3 .casino-rank {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 50%, #a0a0a0 100%);
    color: var(--bg-deep);
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.casino-logo {
    width: 100px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
}

.rank-1 .casino-logo {
    width: 120px;
    height: 72px;
}

.casino-details h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.casino-details .rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.rating .stars {
    color: var(--gold-primary);
    letter-spacing: 2px;
}

.rating .score {
    color: var(--text-muted);
}

.casino-bonus {
    text-align: center;
    padding: 0 1.5rem;
    border-left: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    min-width: 220px;
}

.bonus-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.bonus-value {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1.3;
}

.casino-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 160px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-deep);
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    color: var(--bg-deep);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Casino Features Tags */
.casino-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.feature-tag {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-primary);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === CONTENT SECTIONS === */
.content-section {
    background: var(--bg-primary);
}

.content-section:nth-child(even) {
    background: var(--bg-deep);
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.content-text h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.content-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.content-text li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.content-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--gold-gradient);
    border-radius: 50%;
}

/* === HOW WE RANK === */
.ranking-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.factor-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: var(--transition-smooth);
}

.factor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.factor-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.factor-card h4 {
    margin-bottom: 0.5rem;
}

.factor-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* === PAYMENT METHODS === */
.payment-section {
    background: var(--bg-secondary);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.payment-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.payment-item:hover {
    transform: translateY(-3px);
    border-color: var(--gold-primary);
}

.payment-item img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.payment-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* === COMPARISON TABLE === */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background: var(--glass-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    background: var(--bg-tertiary);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gold-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    font-size: 0.95rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: rgba(255, 215, 0, 0.05);
}

/* === FAQ SECTION === */
.faq-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-deep) 100%);
}

.faq-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold-primary);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

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

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

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

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* === RESPONSIBLE GAMBLING === */
.responsible-section {
    background: var(--bg-tertiary);
    border-top: 3px solid var(--gold-primary);
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.responsible-item {
    text-align: center;
    padding: 1.5rem;
}

.responsible-item svg {
    width: 40px;
    height: 40px;
    fill: var(--gold-primary);
    margin-bottom: 1rem;
}

.responsible-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.responsible-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* === FOOTER === */
.footer {
    background: var(--bg-deep);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

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

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

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

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

.footer-links h4 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.dmca-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.age-badge {
    background: #c0392b;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .casino-card {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 1rem;
    }

    .casino-bonus {
        border: none;
        border-top: 1px solid var(--glass-border);
        padding: 1rem 0 0;
        grid-column: 1 / -1;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .casino-cta {
        flex-direction: row;
        grid-column: 1 / -1;
    }

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

    .content-grid.reverse {
        direction: ltr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-deep);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        max-height: none;
        padding: 6rem 0 3rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

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

    .casino-rank {
        position: absolute;
        top: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
    }

    .casino-info {
        flex-direction: column;
        padding-top: 2rem;
    }

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

    .casino-bonus {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .casino-cta {
        flex-direction: column;
    }

    .trust-items {
        gap: 1.5rem;
    }

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

    .footer-brand {
        max-width: none;
    }

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

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .casino-logo {
        width: 80px;
        height: 48px;
    }

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

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

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

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

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* Gold shimmer effect for CTAs */
.btn-primary {
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

/* === UTILITY CLASSES === */
.text-gold { color: var(--gold-primary); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
