/* === BASE STYLES === */
header .container {gap: 0.1rem;}
.accordion-body {padding: 0 1.5rem 0.3rem 1.5rem !important;}
:root {
            --primary: #0A4D68;
            --secondary: #088395;
            --accent: #05BFDB;
            --gold: #FFD93D;
            --dark: #0B2447;
            --light: #F8F9FA;
            --gradient-primary: linear-gradient(135deg, #0A4D68 0%, #088395 100%);
            --gradient-accent: linear-gradient(135deg, #05BFDB 0%, #088395 100%);
            --gradient-gold: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
            --shadow-sm: 0 2px 8px rgba(10, 77, 104, 0.1);
            --shadow-md: 0 8px 24px rgba(10, 77, 104, 0.15);
            --shadow-lg: 0 16px 48px rgba(10, 77, 104, 0.2);
            --shadow-xl: 0 24px 64px rgba(10, 77, 104, 0.25);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            overflow-x: hidden;
            max-width: 100vw;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background: var(--light);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 900;
            color: var(--dark);
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: var(--primary);
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            color: var(--dark);
        }

        h4 {
            font-size: clamp(1.25rem, 2.5vw, 1.75rem);
            color: var(--primary);
        }

        p {
            margin-bottom: 1.25rem;
            font-size: 1.0625rem;
            color: #2C3E50;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .container {
            max-width: 1320px;
            padding: 0 1.25rem;
        }

        .btn {
            font-weight: 600;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.0625rem;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

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

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

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

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }

        .btn-secondary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }

        .card {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .content-image {
            max-width: 100%;
            margin: 1.5rem auto;
            text-align: center;
        }

        .content-image img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        .content-image.portrait img {
            max-height: 350px;
            max-width: 300px;
        }

        .content-image.wide img {
            max-height: 300px;
            max-width: 100%;
        }

        .content-image figcaption {
            margin-top: 0.5rem;
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .table-responsive {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
        }

        table {
            background: white;
            border-radius: 16px;
            overflow: hidden;
        }

        .highlight-box, .feature-list, .feature-block, .stats-grid, .numbered-list, .highlight-list, .promo-block, .checklist, .comparison-table {
            background: linear-gradient(135deg, rgba(5, 191, 219, 0.05) 0%, rgba(8, 131, 149, 0.05) 100%);
            border-left: 4px solid var(--accent);
            padding: 1.75rem;
            margin: 1.5rem 0;
            border-radius: 12px;
        }

        .highlight-box h4, .feature-list h4, .feature-block h4, .stats-grid h4, .numbered-list h4, .highlight-list h4, .promo-block h4, .checklist h4, .comparison-table h4 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        ul, ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }

        li {
            margin-bottom: 0.75rem;
            color: #2C3E50;
        }

        /* === LAYOUT STYLES === */
        header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid rgba(5, 191, 219, 0.1);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 0;
            gap: 2rem;
        }

        .logo {
            flex-shrink: 0;
        }

        .logo img {
            max-height: 50px;
            height: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .main-navigation {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            min-height: 44px;
            min-width: 44px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--primary);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

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

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

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

        .main-navigation .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-menu li a {
            color: var(--dark);
            font-weight: 500;
            font-size: 0.9375rem;
            position: relative;
            padding: 0.5rem 0;
        }

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

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

        .header-content .cta-button {
            flex-shrink: 0;
            white-space: nowrap;
            max-width: 200px;
            text-overflow: ellipsis;
            overflow: hidden;
        }

        footer {
            background: var(--dark);
            color: var(--light);
            padding: 4rem 0 2rem;
            margin-top: 6rem;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-accent);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 1.25rem;
            font-size: 1.5rem;
        }

        .footer-section p, .footer-section li {
            color: rgba(248, 249, 250, 0.8);
            font-size: 0.9375rem;
        }

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

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

        .footer-links a {
            color: rgba(248, 249, 250, 0.8);
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(248, 249, 250, 0.1);
        }

        .footer-bottom p {
            color: rgba(248, 249, 250, 0.6);
            margin: 0;
        }

        @media (max-width: 991px) {
            .main-navigation .nav-menu {
                flex-direction: column;
                gap: 0;
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: white;
                padding: 6rem 2rem 2rem;
                box-shadow: var(--shadow-xl);
                transition: right 0.4s ease;
                overflow-y: auto;
            }

            .main-navigation .nav-menu.active {
                right: 0;
            }

            .main-navigation .nav-menu li {
                margin-bottom: 1rem;
            }

            .main-navigation .nav-menu li a {
                display: block;
                padding: 1rem;
                font-size: 1.125rem;
            }

            .hamburger {
                display: flex;
            }

            .header-content .cta-button {
                display: none;
            }
        }

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

            .logo img {
                max-height: 40px;
            }

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

@media (max-width: 991px) {
            .hero-section {
                padding: 4rem 0;
            }

            .login-access, .gaming-categories, .bonus-programs, .strategies, .software-providers, .faq {
                padding: 3rem 0;
            }

            .timeline-item {
                padding-left: 2rem;
            }

            .bonus-section {
                padding: 2rem;
            }

            .accordion-header {
                padding: 1.5rem 3rem 1.5rem 1.5rem;
                font-size: 1.25rem;
            }
        }

@media (max-width: 767px) {
            .hero-section {
                padding: 3rem 0;
            }

            h1 {
                margin-bottom: 1.5rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .toc-list {
                grid-template-columns: 1fr;
            }

            .login-access, .gaming-categories, .bonus-programs, .strategies, .software-providers, .faq {
                padding: 2.5rem 0;
            }

            .timeline-item {
                padding-left: 1.5rem;
                margin-bottom: 2.5rem;
            }

            .card, .game-category-card, .bonus-section {
                padding: 1.75rem;
            }

            .accordion-header {
                padding: 1.25rem 3rem 1.25rem 1.25rem;
                font-size: 1.125rem;
            }

            .accordion-body {
                padding: 0 1.25rem;
            }

            .accordion-item.active .accordion-body {
                padding: 0 1.25rem 1.5rem;
            }

            .icon-grid ul {
                grid-template-columns: 1fr;
            }

            .btn {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }
        }