/* ==========================================================================
   UFA747 - MAIN STYLES
   Royal Purple & Gold Theme - Premium Casino Aesthetic
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Variables)
   ========================================================================== */
:root {
    /* Primary Colors - Royal Purple Theme */
    --bg-primary: #0a0a12;
    --bg-secondary: #12121f;
    --bg-tertiary: #1a1a2e;
    --bg-hover: #242442;

    /* Accent Colors - Gold & Purple */
    --accent-primary: #c9a227;
    --accent-primary-rgb: 201, 162, 39;
    --accent-secondary: #7c3aed;
    --accent-secondary-rgb: 124, 58, 237;
    --accent-gradient: linear-gradient(135deg, #c9a227 0%, #e8d574 50%, #c9a227 100%);
    --accent-gradient-purple: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #7c3aed 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8b8d0;
    --text-muted: #6b6b8a;

    /* Border Colors */
    --border-primary: rgba(201, 162, 39, 0.15);
    --border-secondary: rgba(124, 58, 237, 0.25);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(201, 162, 39, 0.2);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

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

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

ul, ol {
    list-style: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(var(--accent-primary-rgb), 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(var(--accent-primary-rgb), 0.5);
}

.btn-cta {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(var(--accent-primary-rgb), 0.35);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(var(--accent-primary-rgb), 0.55);
}

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */
header[role="banner"] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(10, 10, 18, 0.95) 100%);
    border-bottom: 1px solid var(--border-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.625rem 1rem;
}

/* Logo */
.brand a {
    display: flex;
    align-items: center;
    transition: opacity var(--transition-fast);
}

.brand a:hover {
    opacity: 0.85;
}

.header-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(var(--accent-primary-rgb), 0.3));
}

/* Navigation Menu */
.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.nav-menu li a {
    display: block;
    padding: 0.625rem 1.125rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: transform var(--transition-normal);
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--accent-primary);
    background: rgba(var(--accent-primary-rgb), 0.08);
}

.nav-menu li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Desktop CTA */
.header-cta {
    display: none;
}

.header-cta .btn-cta {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 10px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    border-radius: 10px;
    transition: background var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: rgba(var(--accent-primary-rgb), 0.1);
}

.mobile-menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: 0.75rem;
    right: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--accent-primary);
    border-radius: 3px;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* Hamburger Animation */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 18, 0.85);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
    z-index: 999;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    cursor: pointer;
}

/* Mobile Menu Open State */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 5.5rem 1.5rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    border-left: 1px solid var(--border-primary);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    animation: slideInRight 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0.5;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.nav-menu.active li a {
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    border-radius: 10px;
    margin-bottom: 0.25rem;
}

.nav-menu.active li a:hover {
    background: rgba(var(--accent-primary-rgb), 0.12);
}

.mobile-cta-item {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-primary);
}

.mobile-cta-item .btn-cta {
    display: block;
    text-align: center;
    padding: 1rem 1.25rem;
    font-size: 1rem;
}

/* Tablet and Desktop - 768px+ */
@media (min-width: 768px) {
    .header-container {
        padding: 0.75rem 2rem;
    }

    .header-logo {
        height: 48px;
    }

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

    .mobile-menu-overlay {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        animation: none;
        border: none;
        box-shadow: none;
    }

    .mobile-cta-item {
        display: none;
    }

    .header-cta {
        display: block;
    }
}

/* Large Desktop - 1024px+ */
@media (min-width: 1024px) {
    .header-container {
        padding: 0.875rem 3rem;
    }

    .header-logo {
        height: 52px;
    }

    .nav-menu li a {
        padding: 0.625rem 1.375rem;
        font-size: 1rem;
    }

    .header-cta .btn-cta {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* Extra Large - 1280px+ */
@media (min-width: 1280px) {
    .header-container {
        padding: 1rem 4rem;
    }
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
footer[role="contentinfo"] {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-primary);
    padding-bottom: 90px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3.5rem 1rem 1.5rem;
}

/* Footer Top Grid */
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Footer Brand Column */
.footer-brand {
    text-align: center;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.25rem;
    transition: opacity var(--transition-fast);
}

.footer-logo-link:hover {
    opacity: 0.85;
}

.footer-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(var(--accent-primary-rgb), 0.25));
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.875rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-primary);
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(var(--accent-primary-rgb), 0.35);
}

/* Footer Columns */
.footer-column {
    text-align: center;
}

.footer-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-primary);
    transform: translateX(4px);
}

/* Footer Contact */
.footer-contact {
    font-style: normal;
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-contact a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.footer-contact a:hover {
    opacity: 0.8;
}

/* Trust Badges Section */
.footer-trust {
    padding: 2rem 0;
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-secondary);
    transition: transform var(--transition-fast);
}

.trust-badge:hover {
    transform: translateY(-2px);
}

.trust-badge svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 2px 8px rgba(var(--accent-primary-rgb), 0.3));
}

.trust-badge span {
    font-size: 0.8rem;
    text-align: center;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.disclaimer {
    color: var(--text-muted);
    font-size: 0.8rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .footer-container {
        padding: 4rem 2rem 1.5rem;
    }

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

    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }

    .footer-column {
        text-align: left;
    }

    .footer-heading::after {
        left: 0;
    }

    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .trust-badges {
        gap: 3rem;
    }

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

    .disclaimer {
        margin: 0;
        text-align: right;
    }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .footer-container {
        padding: 5rem 3rem 2rem;
    }

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

    .footer-brand {
        grid-column: span 1;
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-description {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Large Desktop - 1280px+ */
@media (min-width: 1280px) {
    .footer-container {
        padding: 5rem 4rem 2rem;
    }
}

/* ==========================================================================
   MAIN CONTENT - HOMEPAGE STYLES
   ========================================================================== */

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   HERO SECTION - Pattern 4: Stacked/Vertical
   ========================================================================== */
.hero-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(var(--accent-primary-rgb), 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.hero-description strong {
    color: var(--accent-primary);
}

.hero-description em {
    color: var(--text-primary);
    font-style: normal;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.hero-cta .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 200px;
}

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

.btn-secondary:hover {
    background: rgba(var(--accent-primary-rgb), 0.1);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(var(--accent-primary-rgb), 0.15);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   INTRO SECTION
   ========================================================================== */
.intro-section {
    padding: 2.5rem 0;
    background: var(--bg-primary);
}

.intro-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ==========================================================================
   CONTENT SECTIONS (Football, Casino, Slots, etc.)
   ========================================================================== */
.football-section,
.casino-section,
.slots-section,
.deposit-section,
.promotions-section,
.login-section,
.register-section,
.direct-section,
.support-section {
    padding: 3rem 0;
}

.football-section {
    background: var(--bg-secondary);
}

.casino-section {
    background: var(--bg-primary);
}

.slots-section {
    background: var(--bg-secondary);
}

.deposit-section {
    background: var(--bg-primary);
}

.promotions-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.login-section {
    background: var(--bg-primary);
}

.register-section {
    background: var(--bg-secondary);
}

.direct-section {
    background: var(--bg-primary);
}

.support-section {
    background: var(--bg-secondary);
}

/* Section Content */
.section-content {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 1.25rem;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.section-content strong {
    color: var(--accent-primary);
}

.section-content em {
    color: var(--text-primary);
    font-style: normal;
}

.section-content u {
    text-decoration: none;
    background: linear-gradient(transparent 60%, rgba(var(--accent-primary-rgb), 0.3) 60%);
}

.section-content a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity var(--transition-fast);
}

.section-content a:hover {
    opacity: 0.8;
}

/* Section Image */
.section-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Block */
.content-block {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
}

.content-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.content-block h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.feature-list li strong {
    color: var(--text-primary);
}

/* Steps List */
.steps-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    counter-reset: steps;
}

.steps-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    counter-increment: steps;
}

.steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-list li strong {
    color: var(--text-primary);
}

/* Table Wrapper */
.table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    border: 1px solid var(--border-primary);
}

.game-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.game-table th,
.game-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-primary);
}

.game-table th {
    background: var(--bg-hover);
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.game-table td {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.game-table tbody tr:hover {
    background: rgba(var(--accent-primary-rgb), 0.05);
}

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

/* Providers Grid */
.providers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.provider-card {
    padding: 1.25rem;
    background: var(--bg-hover);
    border-radius: 10px;
    border: 1px solid var(--border-primary);
}

.provider-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.provider-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.promo-card {
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    text-align: center;
    transition: all var(--transition-normal);
}

.promo-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.promo-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.promo-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.promo-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.promo-cta {
    text-align: center;
    margin-top: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 1px solid var(--border-primary);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--bg-hover);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* CTA Box */
.cta-box {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-hover) 100%);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

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

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

.faq-item {
    margin-bottom: 1rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    overflow: hidden;
}

.faq-item dt {
    font-family: 'Prompt', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1.25rem 1.5rem;
    background: var(--bg-hover);
    border-bottom: 1px solid var(--border-primary);
}

.faq-item dd {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 1.25rem 1.5rem;
    margin: 0;
}

.faq-item dd strong {
    color: var(--accent-primary);
}

/* ==========================================================================
   RESPONSIVE - MAIN CONTENT
   ========================================================================== */

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    .hero-content h1 {
        font-size: 1.875rem;
    }

    .section-header h2 {
        font-size: 1.625rem;
    }
}

/* Medium Mobile (480px+) */
@media (min-width: 480px) {
    .section-container {
        padding: 0 1.25rem;
    }

    .hero-container {
        padding: 0 1.25rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

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

/* Large Mobile / Phablet (576px+) */
@media (min-width: 576px) {
    .hero-section {
        padding: 3rem 0 3.5rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

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

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

/* Tablet (768px+) */
@media (min-width: 768px) {
    .section-container {
        padding: 0 2rem;
    }

    .hero-container {
        padding: 0 2rem;
    }

    .hero-section {
        padding: 4rem 0 4.5rem;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta .btn-large {
        padding: 1.125rem 2.5rem;
        font-size: 1.05rem;
    }

    .intro-section {
        padding: 3rem 0;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .football-section,
    .casino-section,
    .slots-section,
    .deposit-section,
    .promotions-section,
    .login-section,
    .register-section,
    .direct-section,
    .support-section {
        padding: 4rem 0;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .section-content {
        font-size: 1.05rem;
    }

    .content-block {
        padding: 2rem;
    }

    .content-block h3 {
        font-size: 1.375rem;
    }

    .promo-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .faq-section {
        padding: 4rem 0;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .section-container {
        padding: 0 3rem;
    }

    .hero-container {
        padding: 0 3rem;
    }

    .hero-section {
        padding: 5rem 0 5.5rem;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-description {
        font-size: 1.15rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

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

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .section-container {
        padding: 0 4rem;
    }

    .hero-container {
        padding: 0 4rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .football-section,
    .casino-section,
    .slots-section,
    .deposit-section,
    .promotions-section,
    .login-section,
    .register-section,
    .direct-section,
    .support-section {
        padding: 5rem 0;
    }

    .faq-section {
        padding: 5rem 0;
    }
}

/* ==========================================================================
   STICKY BOTTOM BUTTONS
   ========================================================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    background: linear-gradient(180deg, rgba(10, 10, 18, 0.95) 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-primary);
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.375rem;
    border-radius: 10px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all var(--transition-normal);
}

/* Secondary Buttons */
.sticky-btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-secondary);
}

.sticky-btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--accent-secondary);
    transform: translateY(-2px);
}

/* Primary Button */
.sticky-btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 3px 15px rgba(var(--accent-primary-rgb), 0.35);
}

.sticky-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(var(--accent-primary-rgb), 0.55);
}

/* Extra Small Mobile (< 360px) */
@media (max-width: 359px) {
    .sticky-bottom-bar {
        padding: 0.5rem;
        gap: 0.25rem;
    }

    .sticky-btn {
        padding: 0.625rem 0.25rem;
        font-size: 0.65rem;
        border-radius: 8px;
    }
}

/* Small Mobile (360px - 479px) */
@media (min-width: 360px) and (max-width: 479px) {
    .sticky-btn {
        padding: 0.75rem 0.375rem;
        font-size: 0.75rem;
    }
}

/* Medium Mobile (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .sticky-bottom-bar {
        padding: 0.75rem 1rem;
    }

    .sticky-btn {
        padding: 0.875rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* Large Mobile / Phablet (576px+) */
@media (min-width: 576px) {
    .sticky-bottom-bar {
        padding: 0.75rem 1.25rem;
        gap: 0.625rem;
    }

    .sticky-btn {
        padding: 0.875rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .sticky-bottom-bar {
        padding: 0.875rem 2rem;
        gap: 0.875rem;
    }

    .sticky-btn {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        max-width: 200px;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .sticky-bottom-bar {
        justify-content: center;
        padding: 1rem 3rem;
        gap: 1rem;
    }

    .sticky-btn {
        flex: none;
        min-width: 160px;
        max-width: 220px;
        font-size: 1rem;
    }
}

/* ==========================================================================
   PROMOTIONS PAGE STYLES
   ========================================================================== */

/* Hero Section - Pattern 3: Centered Full-Width with Background Image */
.promo-hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.promo-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.promo-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.promo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 18, 0.85) 0%, rgba(10, 10, 18, 0.75) 50%, rgba(10, 10, 18, 0.9) 100%);
    z-index: 2;
}

.promo-hero-container {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
    text-align: center;
}

.promo-hero-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.promo-hero-description strong {
    color: var(--accent-primary);
}

.promo-hero-description em {
    color: var(--text-primary);
    font-style: normal;
}

.promo-hero-cta {
    display: flex;
    justify-content: center;
}

.promo-hero-cta .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    box-shadow: 0 6px 25px rgba(var(--accent-primary-rgb), 0.4);
}

/* Promo Intro Section */
.promo-intro-section {
    padding: 2.5rem 0;
    background: var(--bg-primary);
}

.promo-intro-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.promo-intro-text strong {
    color: var(--accent-primary);
}

/* Promo Content Sections */
.promo-welcome-section,
.promo-freecredit-section,
.promo-cashback-section,
.promo-daily-section,
.promo-slots-section,
.promo-football-section,
.promo-deposit-section,
.promo-direct-section {
    padding: 3rem 0;
}

.promo-welcome-section {
    background: var(--bg-secondary);
}

.promo-freecredit-section {
    background: var(--bg-primary);
}

.promo-cashback-section {
    background: var(--bg-secondary);
}

.promo-daily-section {
    background: var(--bg-primary);
}

.promo-slots-section {
    background: var(--bg-secondary);
}

.promo-football-section {
    background: var(--bg-primary);
}

.promo-deposit-section {
    background: var(--bg-secondary);
}

.promo-direct-section {
    background: var(--bg-primary);
}

/* Promo Detail Card */
.promo-detail-card {
    margin-top: 2rem;
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid var(--border-primary);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.promo-detail-card:hover {
    border-color: rgba(var(--accent-primary-rgb), 0.3);
    box-shadow: var(--shadow-glow);
}

.promo-detail-header {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--bg-hover) 0%, var(--bg-tertiary) 100%);
    border-bottom: 1px solid var(--border-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    font-family: 'Prompt', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    white-space: nowrap;
}

.promo-badge-hot {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
}

.promo-badge-free {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

.promo-badge-cashback {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, #a855f7 100%);
    color: white;
}

.promo-badge-daily {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
}

.promo-badge-jackpot {
    background: var(--accent-gradient);
    color: var(--bg-primary);
}

.promo-badge-football {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
}

.promo-badge-deposit {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    color: var(--bg-primary);
}

.promo-detail-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.promo-detail-body {
    padding: 1.5rem;
}

.promo-detail-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.promo-detail-body p:last-child {
    margin-bottom: 0;
}

.promo-detail-body strong {
    color: var(--accent-primary);
}

.promo-detail-body em {
    color: var(--text-primary);
    font-style: normal;
}

.promo-detail-card .steps-list {
    padding: 1.5rem;
    padding-top: 0;
    margin: 0;
}

.promo-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 1rem 1.5rem;
    background: rgba(var(--accent-primary-rgb), 0.05);
    border-left: 3px solid var(--accent-primary);
    margin: 0 1.5rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

.promo-note u {
    text-decoration: none;
    color: var(--accent-primary);
    font-weight: 600;
}

.promo-card-cta {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
}

.promo-card-cta .btn {
    min-width: 200px;
}

/* Promo Table */
.promo-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}

.promo-table th,
.promo-table td {
    padding: 0.875rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-primary);
}

.promo-table th {
    background: var(--bg-hover);
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.promo-table td {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.promo-table tbody tr:hover {
    background: rgba(var(--accent-primary-rgb), 0.05);
}

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

/* Promo Features Grid */
.promo-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.promo-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    transition: all var(--transition-normal);
}

.promo-feature-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.promo-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-hover);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.promo-feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.promo-feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Promo FAQ Section */
.promo-faq-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

/* Final CTA Section */
.promo-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.promo-final-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.1) 0%, rgba(var(--accent-secondary-rgb), 0.1) 100%);
    border-radius: 20px;
    border: 1px solid var(--border-primary);
}

.promo-final-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.promo-final-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.promo-final-cta p strong {
    color: var(--accent-primary);
}

.promo-final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.promo-final-cta-buttons .btn-large {
    min-width: 220px;
    padding: 1rem 2rem;
}

/* ==========================================================================
   PROMOTIONS PAGE - RESPONSIVE
   ========================================================================== */

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    .promo-hero-content h1 {
        font-size: 1.875rem;
    }
}

/* Medium Mobile (480px+) */
@media (min-width: 480px) {
    .promo-hero-container {
        padding: 3.5rem 1.25rem;
    }

    .promo-hero-content h1 {
        font-size: 2rem;
    }

    .promo-final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

/* Large Mobile / Phablet (576px+) */
@media (min-width: 576px) {
    .promo-hero-section {
        min-height: 450px;
    }

    .promo-hero-content h1 {
        font-size: 2.25rem;
    }

    .promo-hero-description {
        font-size: 1.05rem;
    }

    .promo-detail-header h3 {
        font-size: 1.25rem;
    }

    .promo-final-cta h2 {
        font-size: 1.75rem;
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .promo-hero-section {
        min-height: 500px;
    }

    .promo-hero-container {
        padding: 4rem 2rem;
    }

    .promo-hero-content h1 {
        font-size: 2.5rem;
    }

    .promo-hero-description {
        font-size: 1.1rem;
    }

    .promo-intro-section {
        padding: 3rem 0;
    }

    .promo-intro-text {
        font-size: 1.1rem;
    }

    .promo-welcome-section,
    .promo-freecredit-section,
    .promo-cashback-section,
    .promo-daily-section,
    .promo-slots-section,
    .promo-football-section,
    .promo-deposit-section,
    .promo-direct-section {
        padding: 4rem 0;
    }

    .promo-detail-header {
        padding: 1.5rem 2rem;
    }

    .promo-detail-header h3 {
        font-size: 1.35rem;
    }

    .promo-detail-body {
        padding: 2rem;
    }

    .promo-detail-card .steps-list {
        padding: 2rem;
        padding-top: 0;
    }

    .promo-note {
        margin: 0 2rem 2rem;
    }

    .promo-card-cta {
        padding: 0 2rem 2rem;
    }

    .promo-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .promo-final-cta {
        padding: 3rem 2.5rem;
    }

    .promo-final-cta h2 {
        font-size: 2rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .promo-hero-section {
        min-height: 550px;
    }

    .promo-hero-container {
        padding: 5rem 3rem;
    }

    .promo-hero-content h1 {
        font-size: 2.75rem;
    }

    .promo-hero-description {
        font-size: 1.15rem;
    }

    .promo-cta-section {
        padding: 5rem 0;
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .promo-hero-section {
        min-height: 600px;
    }

    .promo-hero-content h1 {
        font-size: 3rem;
    }

    .promo-welcome-section,
    .promo-freecredit-section,
    .promo-cashback-section,
    .promo-daily-section,
    .promo-slots-section,
    .promo-football-section,
    .promo-deposit-section,
    .promo-direct-section {
        padding: 5rem 0;
    }

    .promo-final-cta h2 {
        font-size: 2.25rem;
    }
}
