:root {
    --color-primary: #6d5cff;
    --color-primary-dark: #3a2bff;
    --color-secondary: #22d3ee;
    --color-accent-pink: #ff4fd8;
    --color-accent-cyan: #22d3ee;
    --color-accent-orange: #ffb020;

    --overlay-dark: rgba(2, 6, 23, 0.92);
    --overlay-primary: rgba(12, 18, 60, 0.86);
    --overlay-primary-alt: rgba(3, 10, 36, 0.90);

    --shadow-primary: rgba(109, 92, 255, 0.25);
    --shadow-gold: rgba(34, 211, 238, 0.18);

    --highlight-gold: rgba(34, 211, 238, 0.12);
    --highlight-primary: rgba(109, 92, 255, 0.10);

    --bg-dark: #050a1a;
    --bg-dark-alt: #070f2b;

    --bg-light-purple: #050a1a;
    --bg-light-purple-alt: #070f2b;
    --bg-purple-gradient: #060b1c;
    --bg-purple-gradient-alt: #0b153a;

    --bg-orange-light: #06102a;
    --bg-orange-alt: #081a3f;

    --text-light: #eef2ff;
    --text-purple-light: #eef2ff;
    --text-gray: rgba(238, 242, 255, 0.72);
    --text-purple-muted: rgba(238, 242, 255, 0.60);

    --bg-white: rgba(255, 255, 255, 0.06);
    --bg-black: #000000;
    --bg-gray: rgba(255, 255, 255, 0.12);
    --bg-gray-hover: rgba(255, 255, 255, 0.18);

    --text-dark: #eef2ff;
}

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

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(160deg, var(--bg-light-purple) 0%, var(--bg-light-purple-alt) 50%, #e9e5ff 100%);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

.site-header {
    background: linear-gradient(135deg,
            var(--color-primary) 0%,
            var(--color-primary-dark) 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px var(--shadow-primary);
}

.header-wrapper {
    max-width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.site-logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo-image {
    width: 180px;
    height: 44px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

.logo-gem {
    font-size: 2.2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-navigation {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-secondary);
}

.main-content {
    max-width: 100%;
}

.welcome-banner {
    background:
        linear-gradient(135deg,
            var(--overlay-primary) 0%,
            var(--overlay-primary-alt) 100%),
        url('../images/banner-bg.svg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.banner-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.banner-btn {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--text-dark);
    padding: 1.2rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-gold);
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

.key-points {
    padding: 5rem 2rem;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.point-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.15);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.card-1 {
    border-top-color: var(--color-accent-pink);
}

.card-2 {
    border-top-color: var(--color-secondary);
}

.card-3 {
    border-top-color: var(--color-accent-cyan);
}

.point-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(107, 70, 193, 0.25);
}

.point-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.point-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.point-card p {
    font-size: 1rem;
    line-height: 1.8;
}

.featured-game-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg,
            var(--bg-purple-gradient) 0%,
            var(--bg-purple-gradient-alt) 100%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
    font-weight: 300;
}

.game-embed-container {
    background: var(--bg-black);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-primary);
    border: 5px solid var(--color-primary);
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-disclaimer {
    margin-top: 2rem;
    text-align: center;
    background: var(--highlight-gold);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid var(--color-secondary);
}

.game-disclaimer p {
    color: var(--text-dark);
    font-weight: 600;
}

.platform-benefits {
    padding: 5rem 2rem;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-box {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.1);
    transition: all 0.3s ease;
}

.benefit-box:hover {
    box-shadow: 0 8px 30px rgba(107, 70, 193, 0.2);
}

.benefit-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--bg-purple-gradient-alt);
    margin-bottom: 1rem;
}

.benefit-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.legal-notices {
    padding: 5rem 2rem;
    background: linear-gradient(135deg,
            var(--bg-orange-light) 0%,
            var(--bg-orange-alt) 100%);
}

.notice-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.2);
    border: 3px solid var(--color-secondary);
}

.notice-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-accent-orange);
    margin-bottom: 2rem;
}

.notice-content {
    line-height: 2;
}

.notice-list {
    list-style-position: inside;
}

.notice-list li {
    margin-bottom: 1rem;
}

.site-footer {
    background: linear-gradient(135deg,
            var(--bg-dark) 0%,
            var(--bg-dark-alt) 100%);
    color: var(--text-purple-light);
    padding: 4rem 2rem 1.5rem;
}

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

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    color: var(--color-secondary);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.support-links,
.footer-menu {
    list-style: none;
}

.support-links li,
.footer-menu li {
    margin-bottom: 0.8rem;
}

.support-links a,
.footer-menu a {
    color: var(--text-purple-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-links a:hover,
.footer-menu a:hover {
    color: var(--color-secondary);
}

.footer-age-restriction {
    background: rgba(255, 193, 7, 0.1);
    border-top: 2px solid rgba(255, 193, 7, 0.3);
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

.age-restriction-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.age-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.age-restriction-content p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
}

.age-restriction-content p strong {
    color: #ffc107;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 220, 255, 0.2);
    color: var(--text-purple-muted);
}

.responsible-gaming-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.responsible-logo-link {
    display: inline-block;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
    flex: 0 0 auto;
}

.responsible-logo-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.responsible-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.responsible-logo-link:hover .responsible-logo {
    opacity: 0.9;
}

/* Footer trust banners (18+, SRIJ, GamCare, etc.) – visible row like other showcases */
.footer__icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    padding: 2rem 0;
    margin: 2rem 0 0;
    border-top: 1px solid rgba(232, 220, 255, 0.25);
}

.footer__icons .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.footer__icons .icon:hover {
    transform: scale(1.05);
}

.footer__icons .icon img {
    max-width: 100%;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    display: block;
}

.footer__icons .icon a {
    display: block;
    text-decoration: none;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-in-out;
}

.age-gate.hidden {
    animation: fadeOut 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.age-gate-content {
    background: linear-gradient(135deg,
            var(--bg-white) 0%,
            var(--bg-light-purple) 100%);
    padding: 3.5rem;
    border-radius: 25px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 15px 60px rgba(107, 70, 193, 0.5);
    border: 4px solid var(--color-primary);
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-gate-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.age-gate-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.age-gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-confirm,
.btn-deny {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: linear-gradient(135deg,
            var(--color-primary) 0%,
            var(--color-primary-dark) 100%);
    color: var(--text-light);
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(107, 70, 193, 0.4);
}

.btn-deny {
    background: var(--bg-gray);
    color: var(--text-dark);
}

.btn-deny:hover {
    background: var(--bg-gray-hover);
}

.play-page-header {
    background: linear-gradient(135deg,
            var(--color-primary) 0%,
            var(--color-primary-dark) 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-light);
}

.play-page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.play-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.game-play-section {
    padding: 4rem 2rem;
}

.game-information {
    padding: 4rem 2rem;
    background: linear-gradient(135deg,
            var(--bg-purple-gradient) 0%,
            var(--bg-purple-gradient-alt) 100%);
}

.info-box {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(107, 70, 193, 0.2);
}

.info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.info-item {
    text-align: center;
}

.info-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.critical-reminder {
    background: var(--highlight-gold);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--color-secondary);
    margin-top: 2rem;
}

.critical-reminder p {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page {
    padding: 4rem 2rem;
}

.legal-document {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(107, 70, 193, 0.15);
}

.legal-document h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.document-date {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-highlight {
    background: var(--highlight-primary);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid var(--color-primary);
    margin-top: 3rem;
}

.legal-highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.critical-disclaimer {
    background: linear-gradient(135deg,
            var(--bg-orange-light) 0%,
            var(--bg-orange-alt) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid var(--color-accent-orange);
    margin-bottom: 3rem;
}

.critical-disclaimer h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-accent-orange);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .logo-image {
        width: 140px;
        height: 36px;
    }

    .hamburger {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg,
                var(--color-primary) 0%,
                var(--color-primary-dark) 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
    }

    .main-navigation.active {
        left: 0;
    }

    .nav-link {
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .banner-overlay h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

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

    .game-embed {
        height: 500px;
    }

    .points-grid,
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }

    .age-gate-content {
        margin: 1rem;
        padding: 2.5rem 2rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .play-page-header h1 {
        font-size: 2.5rem;
    }

    .legal-document {
        padding: 2.5rem 2rem;
    }

    .legal-document h1 {
        font-size: 2.2rem;
    }

    .age-restriction-content {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .age-icon {
        font-size: 1.5rem;
    }

    .age-restriction-content p {
        font-size: 0.9rem;
    }

    .age-restriction-content p strong {
        font-size: 1.1rem;
    }

    .footer-age-restriction {
        padding: 1rem;
    }

    .footer__icons {
        gap: 1rem;
        padding: 1.5rem 0.5rem;
    }

    .footer__icons .icon img {
        max-height: 70px;
    }
}