:root {
            --primary-color: #D4920A;
            --secondary-color: #B5711C;
            --bg-dark: #0C0C0E;
            --bg-surface: #161618;
            --border-color: #2A2720;
            --text-primary: #F0E8D5;
            --text-secondary: #9A8F7A;
            --gradient-gold: linear-gradient(135deg, #D4920A 0%, #F5C842 100%);

            --font-display: 'Cinzel Decorative', serif;
            --font-body: 'DM Sans', sans-serif;
            --font-accent: 'Bebas Neue', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-dark);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* Typography */
        h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; }
        h2 {
            border-left: 3px solid var(--primary-color);
            padding-left: 1rem;
            text-transform: uppercase;
            margin-bottom: 2rem;
            font-size: 32px;
            font-family: var(--font-body);
        }
        h2.center-title {
            border-left: none; padding-left: 0; text-align: center;
        }

        .reading-text {
            font-family: var(--font-body); font-size: 17px; line-height: 2.0; color: var(--text-secondary);
        }

        /* Buttons */
        .btn {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 0.75rem 1.5rem; border-radius: 6px; font-family: var(--font-body);
            font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-align: center;
        }
        .btn-type-a { background-color: var(--primary-color); color: #000; border: none; }
        .btn-type-a:hover { filter: brightness(1.1); }
        .btn-type-b { background-color: transparent; color: var(--primary-color); border: 1.5px solid var(--primary-color); }
        .btn-type-b:hover { background-color: rgba(212, 146, 10, 0.12); }

        /* Navbar */
        .navbar {
            position: fixed; top: 0; left: 0; width: 100%; height: 80px;
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 5%; z-index: 1000; background-color: rgba(12, 12, 14, 0.5);
            backdrop-filter: blur(10px); transition: background-color 0.3s ease;
        }
        .navbar.scrolled { background-color: var(--bg-dark); }
        .nav-brand img { height: 40px; width: auto; display: block; }
        .nav-links { display: flex; gap: 2rem; }
        .nav-links a { font-size: 0.95rem; font-weight: 500; transition: color 0.3s ease; }
        .nav-links a:hover { color: var(--primary-color); }
        .nav-actions { display: flex; gap: 1rem; }
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
        .hamburger span { width: 25px; height: 2px; background-color: var(--text-primary); transition: 0.3s; }

        .mobile-menu {
            position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
            background-color: var(--bg-dark); padding: 100px 5% 2rem;
            display: flex; flex-direction: column; gap: 1.5rem;
            transform: translateY(-100%); transition: transform 0.3s ease; z-index: 999;
        }
        .mobile-menu.active { transform: translateY(0); }

        /* General Layout */
        .section { padding: 80px 5%; }
        .bg-dark { background-color: var(--bg-dark); }
        .bg-surface { background-color: var(--bg-surface); }
        .text-center { text-align: center; }
        .max-800 { max-width: 800px; margin: 0 auto; }

        /* HERO - About Specific */
        .hero-about {
            position: relative; min-height: 80vh; display: flex; align-items: center;
            background-color: var(--bg-dark); padding-top: 80px; overflow: hidden;
        }
        .hero-about::before {
            content: ''; position: absolute; left: -10%; top: 30%;
            width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(212,146,10,0.15) 0%, transparent 60%);
            z-index: 0; pointer-events: none;
        }
        .hero-about-container {
            width: 100%; display: flex; align-items: center; justify-content: space-between;
            position: relative; z-index: 1; padding: 0 5%;
        }
        .hero-about-content { width: 60%; padding-right: 2rem; }
        .hero-about h1 {
            font-size: 44px; background: var(--gradient-gold);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem; line-height: 1.2;
        }
        .hero-about p {
            font-size: 18px; color: var(--text-primary); max-width: 520px; line-height: 1.8;
        }
        .hero-about-img {
            width: 40%; display: flex; justify-content: flex-end;
            position: absolute; right: -5%; bottom: 0; height: 90vh; z-index: 1;
        }
        .hero-about-img img {
            height: 100%; width: auto; object-fit: contain; object-position: bottom right;
        }

        /* Split Section Layout */
        .split-wrapper { display: flex; align-items: flex-start; gap: 48px; }
        .img-right { flex-direction: row-reverse; }
        .split-img { width: 40%; position: relative; z-index: 1; }
        .split-content { width: 60%; z-index: 2; }
        .split-img img {
            width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover;
            border-radius: 12px; box-shadow: 0 0 30px rgba(212, 146, 10, 0.15);
        }
        .img-right .split-img { margin-right: -24px; }

        .story-text p { margin-bottom: 24px; }
        .story-text p:last-child { margin-bottom: 0; }

        /* MISSION & VALUES - Section 3 */
        .mission-intro { color: var(--text-secondary); max-width: 680px; margin: 0 auto 3rem; text-align: center; font-size: 16px; line-height: 1.8; }
        .values-grid { display: flex; justify-content: space-between; align-items: stretch; position: relative; }
        .value-item { flex: 1; text-align: center; padding: 0 1.5rem; position: relative; }
        .value-icon svg { width: 40px; height: 40px; stroke: var(--primary-color); stroke-width: 1.5; fill: none; margin-bottom: 1rem; }
        .value-item h3 { font-family: var(--font-body); font-weight: 700; font-size: 18px; margin-bottom: 0.75rem; color: var(--text-primary); }
        .value-item p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

        .value-divider {
            width: 1px; height: 60px; background-color: var(--border-color);
            margin: auto 0;
        }

        /* WHY WE EXIST - Section 4 */
        .why-exist-content p { margin-bottom: 20px; }
        .why-exist-content p:last-child { margin-bottom: 0; }
        .quote-paragraph {
            border-left: 3px solid var(--primary-color);
            padding-left: 20px; margin: 30px 0;
            color: var(--text-primary); font-size: 18px;
        }

        /* LICENSES - Section 5 */
        .license-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 2rem; }
        .license-badge {
            border: 1px solid var(--primary-color); border-radius: 4px; padding: 6px 12px;
            color: var(--primary-color); font-size: 14px; font-weight: 600; font-family: var(--font-body);
        }
        .license-banner-img {
            width: 100%; max-height: 240px; object-fit: cover; border-radius: 12px; margin: 32px 0;
        }
        .license-split { display: flex; gap: 3rem; margin-top: 2rem; }
        .license-col { flex: 1; }
        .license-col:first-child { border-right: 1px solid var(--border-color); padding-right: 3rem; }
        .license-col h3 { font-family: var(--font-body); font-size: 20px; font-weight: 700; margin-bottom: 1rem; color: var(--text-primary); }
        .license-col p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }

        /* SECURITY - Section 6 */
        .security-list { list-style: none; padding: 0; }
        .security-item { padding: 20px 0; border-bottom: 1px solid var(--border-color); }
        .security-item:last-child { border-bottom: none; }
        .security-title {
            font-family: var(--font-body); font-weight: 600; font-size: 17px; color: var(--primary-color);
            margin-bottom: 0.5rem; display: flex; align-items: center;
        }
        .security-title::before {
            content: '??; color: var(--primary-color); margin-right: 10px; font-size: 12px;
        }
        .security-desc {
            font-size: 15px; color: var(--text-secondary); line-height: 1.7; padding-left: 20px;
        }

        /* RESPONSIBLE GAMING - Section 7 */
        .rg-18plus {
            font-family: var(--font-body); font-weight: 600; font-size: 16px; color: var(--primary-color);
            text-align: center; margin: 20px 0 2rem;
        }
        .rg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 2rem; }
        .rg-card {
            background-color: var(--bg-surface); border-radius: 12px;
            border-left: 3px solid var(--primary-color); padding: 20px; min-height: 140px;
        }
        .rg-card h4 { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
        .rg-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
        .rg-footer {
            text-align: center; font-family: var(--font-body); font-style: italic; font-size: 14px;
            color: var(--text-secondary); border-top: 1px solid var(--border-color); padding-top: 20px; margin-top: 2rem;
        }

        /* CONTACT - Section 8 */
        .contact-grid { display: flex; justify-content: space-between; gap: 24px; }
        .contact-item { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
        .contact-icon svg { width: 32px; height: 32px; stroke: var(--primary-color); stroke-width: 1.5; fill: none; margin-bottom: 1rem; }
        .contact-item h3 { font-family: var(--font-body); font-size: 17px; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-primary); }
        .contact-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0.5rem; }
        .contact-link {
            color: var(--primary-color); font-size: 13px; font-weight: 500; text-decoration: underline; font-family: var(--font-body);
        }
        .contact-link:hover { color: #fff; }

        /* FAQ - Section 9 */
        .faq-wrapper { max-width: 800px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid var(--border-color); }
        .faq-question { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 600; }
        .faq-icon { color: var(--primary-color); font-size: 20px; font-weight: bold; transition: transform 0.3s; }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
        .faq-answer-inner { padding: 0 24px 20px 24px; color: var(--text-secondary); }

        /* Footer */
        .footer { background-color: #000; padding: 80px 5% 40px; border-top: 1px solid var(--border-color); }
        .footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 3rem; }
        .footer-col h4 { font-family: var(--font-display); color: var(--primary-color); margin-bottom: 1.5rem; font-size: 1.25rem; }
        .footer-links li { margin-bottom: 0.75rem; }
        .footer-links a { color: var(--text-secondary); font-size: 0.9rem; transition: color 0.3s; }
        .footer-links a:hover { color: var(--primary-color); }
        .footer-bottom { border-top: 1px solid var(--border-color); padding-top: 2rem; text-align: center; color: var(--text-secondary); font-size: 0.85rem; }

        /* Responsive */
        @media (max-width: 1023px) {
            .hero-about h1 { font-size: 36px; }
            .hero-about-content { width: 60%; }
            .hero-about-img { width: 50%; right: -10%; }

            .split-wrapper { flex-direction: column; gap: 32px; }
            .split-img, .split-content { width: 100%; }
            .img-right { flex-direction: column; }
            .img-right .split-img { margin-right: 0; }

            .license-split { flex-direction: column; gap: 2rem; }
            .license-col:first-child { border-right: none; border-bottom: 1px solid var(--border-color); padding-right: 0; padding-bottom: 2rem; }

            .contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 767px) {
            .section { padding: 48px 5%; }
            .nav-links, .nav-actions { display: none; }
            .hamburger { display: flex; }

            .hero-about { flex-direction: column; text-align: center; justify-content: center; min-height: auto; padding-top: 120px; }
            .hero-about-container { flex-direction: column; }
            .hero-about-content { width: 100%; padding-right: 0; }
            .hero-about h1 { font-size: 30px; }
            .hero-about p { margin: 0 auto; }
            .hero-about-img { position: relative; width: 100%; height: auto; right: 0; margin-top: 2rem; justify-content: center; }

            h2 { font-size: 26px; }

            .values-grid { flex-direction: column; gap: 2rem; }
            .value-item { padding: 0; }
            .value-divider { width: 40px; height: 1px; margin: 0 auto; }

            .quote-paragraph { font-size: 16px; padding-left: 16px; }

            .rg-grid { grid-template-columns: 1fr; }

            .footer-grid { grid-template-columns: 1fr; }
        }
