/* === BASE STYLES === */:root {
            --primary: #FF2D55;
            --primary-dark: #E5194A;
            --secondary: #0A0E27;
            --accent: #FFD60A;
            --accent-hover: #FFC300;
            --dark: #0A0E27;
            --light: #F8F9FA;
            --text: #1A1A1A;
            --text-light: #6C757D;
            --border: rgba(255, 255, 255, 0.1);
            --shadow: 0 8px 32px rgba(10, 14, 39, 0.12);
            --shadow-lg: 0 16px 48px rgba(10, 14, 39, 0.18);
            --gradient-primary: linear-gradient(135deg, #FF2D55 0%, #FF6B88 100%);
            --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
            --gradient-accent: linear-gradient(135deg, #FFD60A 0%, #FFC300 100%);
        }

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

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text);
            line-height: 1.7;
            background: #FFFFFF;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3, h4 {
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        h1 {
            font-size: clamp(2rem, 5vw, 4.5rem);
            letter-spacing: -0.03em;
        }

        h2 {
            font-size: clamp(1.75rem, 4vw, 3.5rem);
            letter-spacing: -0.02em;
        }

        h3 {
            font-size: clamp(1.25rem, 3vw, 2rem);
            letter-spacing: -0.01em;
        }

        p {
            margin-bottom: 1.25rem;
            font-size: 1.0625rem;
            color: var(--text);
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--primary-dark);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            font-weight: 700;
            font-size: 1.0625rem;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: var(--shadow);
        }

        .btn-primary {
            background: var(--gradient-accent);
            color: var(--dark);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: var(--dark);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 42px;
            font-weight: 800;
            font-size: 1.125rem;
            background: var(--gradient-accent);
            color: var(--dark);
            border-radius: 16px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            box-shadow: 0 12px 40px rgba(255, 214, 10, 0.4);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 16px 56px rgba(255, 214, 10, 0.5);
            color: var(--dark);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .card {
            background: #FFFFFF;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

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

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

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

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

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

        .content-image figcaption {
            margin-top: 0.75rem;
            font-size: 0.9375rem;
            opacity: 0.7;
            font-style: italic;
        }

        section {
            padding: 6rem 0;
            position: relative;
        }

        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 2rem 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: #FFFFFF;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        table thead {
            background: var(--gradient-primary);
            color: #FFFFFF;
        }

        table th, table td {
            padding: 1.25rem 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        table tbody tr {
            transition: background 0.3s ease;
        }

        table tbody tr:hover {
            background: rgba(255, 45, 85, 0.03);
        }

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

        /* === LAYOUT STYLES === */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 24px rgba(10, 14, 39, 0.06);
            transition: all 0.3s ease;
        }

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

        .logo-link {
            text-decoration: none;
            display: block;
            transition: transform 0.3s ease;
        }

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

        .logo-text {
            display: flex;
            flex-direction: column;
            gap: 0;
            line-height: 1;
        }

        .logo-richard {
            font-size: 1.75rem;
            font-weight: 900;
            letter-spacing: 0.1em;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(255, 45, 85, 0.2);
            animation: logoShine 3s ease-in-out infinite;
        }

        .logo-casino {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.3em;
            color: var(--dark);
            margin-left: 0.15em;
        }

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

        .main-nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

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

        .hamburger[aria-expanded="true"] span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .hamburger[aria-expanded="true"] span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            margin: 0;
        }

        .nav-list a {
            color: var(--text);
            font-weight: 600;
            font-size: 1rem;
            position: relative;
            padding: 4px 0;
        }

        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

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

        .header .cta-button {
            padding: 12px 28px;
            font-size: 0.9375rem;
            white-space: nowrap;
        }

        .footer {
            background: var(--gradient-dark);
            color: #FFFFFF;
            padding: 4rem 0 2rem;
            margin-top: 6rem;
        }

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

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

        .footer-section p,
        .footer-nav ul {
            color: rgba(255, 255, 255, 0.8);
        }

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

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

        .footer-nav a {
            color: rgba(255, 255, 255, 0.8);
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            text-align: center;
            color: #FFFFFF;
            font-size: 0.9375rem;
        }

        .footer-bottom p {
            color: #FFFFFF !important;
        }

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

            .main-nav {
                order: 3;
                width: 100%;
            }

            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
                background: #FFFFFF;
                padding: 1rem 0;
                border-radius: 12px;
                box-shadow: var(--shadow);
                margin-top: 1rem;
            }

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

            .nav-list li {
                width: 100%;
            }

            .nav-list a {
                display: block;
                padding: 1rem 1.5rem;
            }

            .hamburger {
                display: flex;
            }

            .header .cta-button {
                order: 2;
                margin-left: auto;
            }
        }

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

            .logo-richard {
                font-size: 1.4rem;
            }

            .logo-casino {
                font-size: 0.85rem;
            }

            .header .cta-button {
                padding: 10px 20px;
                font-size: 0.875rem;
                max-width: 140px;
                text-overflow: ellipsis;
                overflow: hidden;
            }
        }

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

            .main-nav {
                order: 3;
                width: 100%;
            }

            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
                background: #FFFFFF;
                padding: 1rem 0;
                border-radius: 12px;
                box-shadow: var(--shadow);
                margin-top: 1rem;
            }

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

            .nav-list li {
                width: 100%;
            }

            .nav-list a {
                display: block;
                padding: 1rem 1.5rem;
            }

            .hamburger {
                display: flex;
            }

            .header .cta-button {
                order: 2;
                margin-left: auto;
            }
        }

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

            .logo img {
                height: 40px;
            }

            .header .cta-button {
                padding: 10px 20px;
                font-size: 0.875rem;
                max-width: 140px;
                text-overflow: ellipsis;
                overflow: hidden;
            }
        }

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

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

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            h3 {
                font-size: 1.5rem;
            }

            .card,
            .timeline-item,
            .feature-block,
            .pokies article,
            .banking article,
            .icon-item {
                padding: 2rem;
            }

            .accordion-header {
                padding: 1.5rem 2rem;
                font-size: 1.125rem;
            }

            .accordion-header::after {
                right: 1.5rem;
            }

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

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

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

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

            .hero-section p {
                font-size: 1.0625rem;
            }

            .cta-button {
                padding: 14px 32px;
                font-size: 1rem;
            }

            .card,
            .timeline-item,
            .feature-block,
            .pokies article,
            .banking article,
            .icon-item {
                padding: 1.5rem;
            }

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

            .accordion-header {
                padding: 1.25rem 1.5rem;
                padding-right: 3.5rem;
                font-size: 1.0625rem;
            }

            .accordion-header::after {
                right: 1rem;
                font-size: 1.75rem;
            }

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

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

            table th,
            table td {
                padding: 1rem 0.75rem;
                font-size: 0.9375rem;
            }
        }