/*
Theme Name: Bolivar Theme
Theme URI: https://example.com/bolivar-theme
Author: Developer
Author URI: https://example.com
Description: A modern, SEO-friendly WordPress theme with AMP support and Yoast SEO compatibility. Betflik-style neon gaming design.
Version: 2.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bolivar-theme
Tags: one-column, custom-background, custom-logo, custom-menu, featured-images, theme-options, translation-ready, gaming
*/

/* ============================================
   CSS VARIABLES - BETFLIK STYLE
   ============================================ */
:root {
    /* Primary Colors - Dark Purple/Black */
    --bg-primary: #0e0725;
    --bg-secondary: #1a0a2e;
    --bg-tertiary: #270035;
    --bg-gradient: linear-gradient(180deg, #07000a 0%, #1a0a2e 50%, #270035 100%);

    /* Accent Colors - Neon */
    --accent-pink: #ff0073;
    --accent-magenta: #ff00b1;
    --accent-cyan: #00fed8;
    --accent-green: #34ff00;
    --accent-gold: #fcc706;
    --accent-purple: #9b51e0;
    --accent-blue: #2f80ed;

    /* Gradients */
    --gradient-pink: linear-gradient(135deg, #ff0073 0%, #ff00b1 100%);
    --gradient-cyan: linear-gradient(135deg, #00fed8 0%, #2f80ed 100%);
    --gradient-green: linear-gradient(135deg, #34ff00 0%, #0e862b 100%);
    --gradient-gold: linear-gradient(135deg, #fcc706 0%, #ff9500 100%);
    --gradient-purple: linear-gradient(135deg, #9b51e0 0%, #b721ff 100%);
    --gradient-button: linear-gradient(135deg, #ff0073 0%, #b721ff 50%, #00fed8 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --text-muted: #7a7a8c;

    /* Glow Effects */
    --glow-pink: 0 0 20px rgba(255, 0, 115, 0.5), 0 0 40px rgba(255, 0, 115, 0.3);
    --glow-cyan: 0 0 20px rgba(0, 254, 216, 0.5), 0 0 40px rgba(0, 254, 216, 0.3);
    --glow-green: 0 0 20px rgba(52, 255, 0, 0.5), 0 0 40px rgba(52, 255, 0, 0.3);
    --glow-gold: 0 0 20px rgba(252, 199, 6, 0.5), 0 0 40px rgba(252, 199, 6, 0.3);

    /* Layout */
    --container-width: 1200px;
    --container-wide: 1400px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 50px;

    /* Typography */
    --font-primary: 'Sarabun', 'Prompt', sans-serif;
    --font-heading: 'Sarabun', 'Prompt', sans-serif;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

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

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

body {
    font-family: var(--font-primary);
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-pink);
}

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

ul, ol {
    list-style: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-gradient {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-cyan {
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-pink);
    color: var(--text-primary);
    box-shadow: var(--glow-pink);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 0, 115, 0.7), 0 0 60px rgba(255, 0, 115, 0.4);
    color: var(--text-primary);
}

.btn-secondary {
    background: var(--gradient-cyan);
    color: var(--bg-primary);
    box-shadow: var(--glow-cyan);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 254, 216, 0.7), 0 0 60px rgba(0, 254, 216, 0.4);
    color: var(--bg-primary);
}

.btn-green {
    background: var(--gradient-green);
    color: var(--bg-primary);
    box-shadow: var(--glow-green);
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(52, 255, 0, 0.7), 0 0 60px rgba(52, 255, 0, 0.4);
    color: var(--bg-primary);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    box-shadow: var(--glow-gold);
}

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

.btn-outline:hover {
    background: var(--accent-pink);
    color: var(--text-primary);
    box-shadow: var(--glow-pink);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(14, 7, 37, 0.98) 0%, rgba(26, 10, 46, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 115, 0.2);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(14, 7, 37, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.site-branding {
    flex-shrink: 0;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    background: rgba(255, 0, 115, 0.15);
    color: var(--accent-pink);
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.header-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--accent-pink);
    transition: var(--transition);
}

/* ============================================
   BANNER / HERO SECTION
   ============================================ */
.banner-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: var(--bg-gradient);
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 0, 115, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 254, 216, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(155, 81, 224, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.banner-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 0, 115, 0.2);
    border: 1px solid var(--accent-pink);
    border-radius: var(--border-radius-full);
    color: var(--accent-pink);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 115, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 0, 115, 0); }
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255, 0, 115, 0.3);
}

.banner-title .highlight {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.banner-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.banner-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.banner-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 254, 216, 0.1);
    border: 1px solid rgba(0, 254, 216, 0.3);
    border-radius: 50%;
    color: var(--accent-cyan);
}

.banner-feature-icon svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background: rgba(0, 0, 0, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 0, 115, 0.15);
    border: 1px solid rgba(255, 0, 115, 0.3);
    border-radius: var(--border-radius-full);
    color: var(--accent-pink);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PROVIDERS SECTION
   ============================================ */
.providers-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
}

.provider-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.provider-card:hover {
    background: rgba(255, 0, 115, 0.1);
    border-color: var(--accent-pink);
    transform: translateY(-5px);
    box-shadow: var(--glow-pink);
}

.provider-card img {
    max-width: 80px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition);
}

.provider-card:hover img {
    opacity: 1;
    filter: none;
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games-section {
    padding: 80px 0;
}

.games-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.game-tab {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.game-tab:hover,
.game-tab.active {
    background: var(--gradient-pink);
    border-color: transparent;
    color: var(--text-primary);
    box-shadow: var(--glow-pink);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.game-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-pink);
    box-shadow: var(--glow-pink);
}

.game-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-card-image img {
    transform: scale(1.1);
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 7, 37, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--glow-pink);
}

.game-card:hover .game-card-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.game-card-play svg {
    width: 24px;
    height: 24px;
    fill: white;
    margin-left: 3px;
}

.game-card-info {
    padding: 15px;
}

.game-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card-provider {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.game-card-rtp {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-green);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(0, 254, 216, 0.1);
    border: 1px solid rgba(0, 254, 216, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card:nth-child(2) .feature-icon {
    background: rgba(255, 0, 115, 0.1);
    border-color: rgba(255, 0, 115, 0.3);
}

.feature-card:nth-child(3) .feature-icon {
    background: rgba(52, 255, 0, 0.1);
    border-color: rgba(52, 255, 0, 0.3);
}

.feature-card:nth-child(4) .feature-icon {
    background: rgba(252, 199, 6, 0.1);
    border-color: rgba(252, 199, 6, 0.3);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 0, 115, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-pink);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-pink);
    transition: var(--transition);
}

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

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

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

.faq-answer-content {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 0, 115, 0.1) 0%, rgba(155, 81, 224, 0.1) 50%, rgba(0, 254, 216, 0.1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-pink), transparent);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #050208 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
}

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

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    color: var(--text-primary);
    box-shadow: var(--glow-pink);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-pink);
    padding-left: 5px;
}

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

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

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

.footer-payment {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-payment img {
    height: 30px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-payment img:hover {
    opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-top: 1px solid rgba(255, 0, 115, 0.2);
        padding: 20px;
    }

    .main-navigation.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
    }

    .menu-toggle {
        display: flex;
    }

    .header-buttons {
        display: none;
    }

    .banner-section {
        min-height: auto;
        padding: 100px 20px 60px;
    }

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

    .banner-subtitle {
        font-size: 1rem;
    }

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

    .banner-features {
        flex-direction: column;
        gap: 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

    .footer-brand {
        max-width: 100%;
    }

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

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

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .game-card-info {
        padding: 10px;
    }

    .game-card-title {
        font-size: 0.85rem;
    }

    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

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

@keyframes glow {
    0%, 100% { box-shadow: var(--glow-pink); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 115, 0.8), 0 0 80px rgba(255, 0, 115, 0.4); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-pink);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    z-index: 9999;
}

.skip-link:focus {
    top: 10px;
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
