
:root {
    /* New Zealand Pacific Color Palette */
    --pacific-blue: #aa00d4 ;              /* Pacific Ocean blue */
    --kiwi-green: #3500a8 ;                /* Kiwi fruit green */
    --silver-fern: #c0c0c0;               /* Silver fern silver */
    --maori-red: #ff0000;                  /* Maori red */
    --southern-black: #1a1a1a;            /* Southern night black */
    --wellington-gray: #4a4a4a;           /* Wellington gray */
    --alpine-white: #f5f5f5;              /* Alpine snow white */
    --coast-cyan: #d400c9;                /* Coast cyan */
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Neumorphism Shadows */
    --neuro-shadow-inset: inset 2px 2px 5px #bebebe, inset -2px -2px 5px #ffffff;
    --neuro-shadow-outset: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff;
    --neuro-shadow-pressed: inset 4px 4px 8px #bebebe, inset -4px -4px 8px #ffffff;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Header */
    --header-height: 80px;
}

/* ============================================
   GOOGLE FONTS - GEOMETRIC TYPOGRAPHY
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    width: 100% !important;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--southern-black);
    background: #e4f3ff;
    overflow-x: hidden !important;
    width: 100% !important;
    word-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--pacific-blue);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   ATOMIC CSS UTILITY CLASSES
   ============================================ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.px-sm { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
.px-md { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
.px-lg { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
.py-sm { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-md { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-lg { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }

.m-sm { margin: var(--spacing-sm); }
.m-md { margin: var(--spacing-md); }
.m-lg { margin: var(--spacing-lg); }
.mx-auto { margin-left: auto; margin-right: auto; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }

.bg-primary { background: var(--pacific-blue); }
.bg-secondary { background: var(--kiwi-green); }
.bg-light { background: #e4f3ff; }

.text-primary { color: var(--pacific-blue); }
.text-secondary { color: var(--kiwi-green); }
.text-white { color: #ffffff; }
.text-dark { color: var(--southern-black); }

.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.hidden { display: none; }
.block { display: block; }

/* ============================================
   NEUMORPHISM EFFECT (UNIQUE CSS EFFECT)
   ============================================ */
.neuro-card {
    background: #e4f3ff;
    border-radius: var(--radius-lg);
    box-shadow: var(--neuro-shadow-outset);
    transition: var(--transition-normal);
}

.neuro-card:hover {
    box-shadow: var(--neuro-shadow-inset);
    transform: translateY(2px);
}

.neuro-pressed {
    background: #e4f3ff;
    box-shadow: var(--neuro-shadow-pressed);
}

.neuro-button {
    background: #e4f3ff;
    border-radius: var(--radius-md);
    box-shadow: var(--neuro-shadow-outset);
    transition: var(--transition-fast);
}

.neuro-button:hover {
    box-shadow: var(--neuro-shadow-inset);
    transform: translateY(1px);
}

.neuro-button:active {
    box-shadow: var(--neuro-shadow-pressed);
    transform: translateY(2px);
}

/* ============================================
   GRADIENT FILL BUTTONS
   ============================================ */
.btn-gradient {
    background: linear-gradient(135deg, var(--pacific-blue) 0%, var(--coast-cyan) 100%);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 119, 190, 0.3);
}

.btn-gradient:hover {
    box-shadow: 0 6px 20px rgba(0, 119, 190, 0.4);
}

.btn-gradient:active {
    box-shadow: 0 2px 10px rgba(0, 119, 190, 0.3);
}

.btn-gradient-secondary {
    background: linear-gradient(135deg, var(--kiwi-green) 0%, var(--coast-cyan) 100%);
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.3);
}

.btn-gradient-secondary:hover {
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.4);
}

/* ============================================
   LAYOUT - CONTAINER
   ============================================ */
.max-w-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   HEADER
   ============================================ */
.header-section {
    background: #e4f3ff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--pacific-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-nav {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
}

.header-nav-link {
    color: var(--southern-black);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-normal);
    position: relative;
    padding-bottom: 4px;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pacific-blue);
    transition: width var(--transition-normal);
}

.header-nav-link:hover {
    color: var(--pacific-blue);
}

.header-nav-link:hover::after {
    width: 100%;
}

.header-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    cursor: pointer;
}

.header-burger-line {
    width: 25px;
    height: 3px;
    background: var(--pacific-blue);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-section {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: #e4f3ff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding: var(--spacing-md) 0;
    transform: translateY(-100%);
    transition: transform var(--transition-normal);
}

.mobile-menu-section.active {
    transform: translateY(0);
}

.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.mobile-menu-link {
    color: var(--southern-black);
    font-weight: 500;
    font-size: 1.1rem;
    padding: var(--spacing-sm) var(--spacing-md);
    display: block;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-menu-link:hover {
    background: rgba(0, 119, 190, 0.1);
    color: var(--pacific-blue);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: #e4f3ff;
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pacific-blue);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--wellington-gray);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games-section {
    padding: var(--spacing-2xl) 0;
    background: #e4f3ff;
}

.games-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pacific-blue);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.game-card {
    background: #e4f3ff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--neuro-shadow-outset);
    transition: var(--transition-normal);
    text-align: center;
}

.game-card:hover {
    box-shadow: var(--neuro-shadow-inset);
    transform: translateY(-5px);
}

.game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--pacific-blue), var(--coast-cyan));
}

.game-card-content {
    padding: var(--spacing-lg);
}

.game-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pacific-blue);
    margin-bottom: var(--spacing-sm);
}

.game-card-description {
    color: var(--wellington-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: var(--spacing-2xl) 0;
    background: #e4f3ff;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pacific-blue);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.benefit-card {
    background: #e4f3ff;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--neuro-shadow-outset);
    text-align: center;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    box-shadow: var(--neuro-shadow-inset);
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pacific-blue);
    margin-bottom: var(--spacing-sm);
}

.benefit-description {
    color: var(--wellington-gray);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--spacing-2xl) 0;
    background: #e4f3ff;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pacific-blue);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.testimonial-card {
    background: #e4f3ff;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--neuro-shadow-outset);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    box-shadow: var(--neuro-shadow-inset);
    transform: translateY(-3px);
}

.testimonial-text {
    color: var(--wellington-gray);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--pacific-blue);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--spacing-2xl) 0;
    background: #e4f3ff;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pacific-blue);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.faq-item {
    background: #e4f3ff;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--neuro-shadow-outset);
    overflow: hidden;
}

.faq-question {
    padding: var(--spacing-md);
    font-weight: 600;
    color: var(--pacific-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(0, 119, 190, 0.05);
}

.faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--wellington-gray);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    background: var(--southern-black);
    color: #ffffff;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pacific-blue);
    margin-bottom: var(--spacing-md);
}

.footer-link {
    color: #cccccc;
    display: block;
    margin-bottom: var(--spacing-sm);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--pacific-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--wellington-gray);
    color: #999999;
    font-size: 0.875rem;
}

.footer-compliance {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-compliance-link {
    display: inline-block;
}

.footer-compliance-image {
    height: 50px;
    width: auto;
    background: #ffffff;
    padding: 8px;
    border-radius: var(--radius-sm);
    opacity: 0.9;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-compliance-image:hover {
    opacity: 1;
    border-color: var(--pacific-blue);
    box-shadow: 0 0 10px rgba(0, 119, 190, 0.3);
}

/* ============================================
   MODAL - AGE VERIFICATION
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #e4f3ff;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    max-width: 500px;
    width: 90%;
    box-shadow: var(--neuro-shadow-outset);
    text-align: center;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pacific-blue);
    margin-bottom: var(--spacing-md);
}

.modal-text {
    color: var(--wellington-gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--southern-black);
    color: #ffffff;
    padding: var(--spacing-md);
    z-index: 10001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.active {
    display: block;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-link {
    color: var(--pacific-blue);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .header-burger {
        display: flex;
    }
    
    .mobile-menu-section {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .games-title,
    .benefits-title,
    .testimonials-title,
    .faq-title {
        font-size: 2rem;
    }
    
    .btn-gradient {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

.spe-muted{margin-bottom:3rem;color:var(--wellington-gray)}
.spe-button-space{display:inline-block;margin-top:1rem}
.spe-cta-section{padding:4rem 0}
.spe-cta-title{font-size:2.5rem;margin-bottom:1.5rem}
.spe-cta-text{margin-bottom:2rem}
.spe-info-section{border-top:5px solid var(--maori-red)}
.spe-warning-card{margin-bottom:2rem;background:rgba(204,0,0,.05)}
.spe-safe-card{background:rgba(0,168,107,.05)}
.spe-warning-title{color:var(--maori-red);margin-bottom:1rem}
.spe-safe-title{color:var(--kiwi-green);margin-bottom:1rem}
.spe-info-text{font-size:1.05rem;line-height:1.8;margin-bottom:1rem}
.spe-info-list{font-size:1.05rem;line-height:1.8;margin-left:2rem;margin-bottom:1rem}
.spe-help-links{text-align:center;margin-top:1.5rem}
.spe-help-links a{display:inline-block;margin:.5rem;color:var(--pacific-blue);text-decoration:underline;font-weight:600;font-size:1.1rem}
.spe-help-note{font-size:1.1rem;text-align:center;margin-top:1.5rem;font-weight:600;color:var(--maori-red)}
.spe-footer-text{color:#ccc;margin-bottom:1rem}
.spe-footer-small{color:#ccc;font-size:.9rem}
.spe-footer-list{list-style:none}
.spe-footer-compliance{margin-bottom:1rem}
.spe-footer-responsible{color:#ccc;margin-bottom:1rem;font-size:.95rem}
.spe-age{font-size:2rem;text-align:center;margin-top:1rem}
.spe-footer-bottom-note{margin-top:.5rem;font-size:.9rem}
.spe-articles{padding:5rem 0;background:linear-gradient(180deg,#ffffff 0%,#f7f4ee 100%)}
.spe-articles-head{text-align:center;margin-bottom:3rem}
.spe-articles-kicker{display:inline-flex;margin-bottom:.9rem;padding:.45rem .9rem;border-radius:999px;background:rgba(180,42,28,.1);font-size:.82rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
.spe-articles-title{margin:0 0 1rem;font-size:clamp(2rem,4vw,3.2rem);line-height:1.1}
.spe-articles-text{max-width:760px;margin:0 auto;color:var(--wellington-gray);line-height:1.7}
.spe-articles-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.5rem}
.spe-article-card{display:flex;flex-direction:column;min-height:100%;padding:1.6rem}
.spe-article-date{width:max-content;margin-bottom:1rem;padding:.4rem .8rem;border-radius:999px;background:rgba(180,42,28,.1);font-size:.82rem;font-weight:800}
.spe-article-card h3{margin:0 0 .75rem;font-size:1.45rem;line-height:1.2}
.spe-article-card p{margin:0 0 1.2rem;color:var(--wellington-gray);line-height:1.65}
.spe-article-card .btn-gradient{margin-top:auto;width:max-content}
@media(max-width:900px){.spe-articles-grid{grid-template-columns:1fr}}

.spe-page-body{
    background:
            radial-gradient(circle at 10% 8%,rgba(204,0,0,.14),transparent 32%),
            radial-gradient(circle at 88% 12%,rgba(0,168,107,.16),transparent 34%),
            linear-gradient(180deg,#fffaf4 0%,#ffffff 48%,#f4f7fb 100%);
    color:#181818;
}

.spe-page-main{
    position:relative;
    overflow:hidden;
    padding:70px 0 88px;
}

.spe-page-main:before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.38;
    background-image:
            linear-gradient(rgba(204,0,0,.06) 1px,transparent 1px),
            linear-gradient(90deg,rgba(204,0,0,.06) 1px,transparent 1px);
    background-size:46px 46px;
    mask-image:linear-gradient(180deg,transparent 0%,#000 16%,#000 84%,transparent 100%);
}

.spe-page-shell{
    position:relative;
    width:min(960px,calc(100% - 32px));
    margin:0 auto;
    padding:clamp(24px,4vw,56px);
    border-radius:30px;
    background:rgba(255,255,255,.97);
    border:1px solid rgba(20,20,20,.1);
    box-shadow:
            0 28px 80px rgba(20,20,20,.13),
            inset 0 1px 0 rgba(255,255,255,.9);
}

.spe-page-shell:before{
    content:"SlotsPortalEntry guide";
    display:inline-flex;
    width:max-content;
    max-width:100%;
    margin-bottom:22px;
    padding:8px 14px;
    border-radius:999px;
    background:linear-gradient(135deg,rgba(204,0,0,.1),rgba(0,168,107,.14));
    color:var(--maori-red);
    font-size:13px;
    font-weight:800;
    letter-spacing:.06em;
    text-transform:uppercase;
}

.spe-page-shell h1,
.spe-page-shell h2,
.spe-page-shell h3,
.spe-page-shell h4{
    color:#171717;
    letter-spacing:-.03em;
}

.spe-page-shell h1{
    max-width:860px;
    margin:0 0 22px;
    font-size:clamp(34px,5vw,60px);
    line-height:1.03;
}

.spe-page-shell h2{
    position:relative;
    margin:48px 0 16px;
    padding-top:18px;
    font-size:clamp(27px,3.4vw,40px);
    line-height:1.1;
}

.spe-page-shell h2:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:88px;
    height:5px;
    border-radius:999px;
    background:linear-gradient(90deg,var(--maori-red),var(--kiwi-green));
}

.spe-page-shell h3{
    margin:30px 0 12px;
    font-size:clamp(22px,2.4vw,28px);
    line-height:1.18;
    color:var(--maori-red);
}

.spe-page-shell h4{
    margin:24px 0 10px;
    font-size:21px;
}

.spe-page-shell p{
    margin:0 0 18px;
    color:#4f4f4f;
    font-size:17px;
    line-height:1.82;
}

.spe-page-shell .article-meta{
    display:inline-flex;
    width:max-content;
    max-width:100%;
    margin:0 0 20px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(204,0,0,.09);
    color:var(--maori-red);
    font-size:13px;
    font-weight:800;
}

.spe-page-shell a{
    color:var(--maori-red);
    font-weight:800;
    text-decoration:none;
    border-bottom:1px solid rgba(204,0,0,.28);
}

.spe-page-shell a:hover{
    border-bottom-color:currentColor;
}

.spe-page-shell img{
    display:block;
    width:100%;
    height:auto;
    margin:26px 0;
    border-radius:24px;
    border:1px solid rgba(20,20,20,.1);
    box-shadow:0 20px 48px rgba(20,20,20,.12);
}

.spe-page-shell ul,
.spe-page-shell ol{
    display:grid;
    gap:12px;
    margin:22px 0 28px;
    padding:0;
    list-style:none;
}

.spe-page-shell li{
    position:relative;
    padding:15px 16px 15px 50px;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(20,20,20,.1);
    color:#4f4f4f;
    font-size:16.5px;
    line-height:1.65;
    box-shadow:0 10px 26px rgba(20,20,20,.06);
}

.spe-page-shell ul li:before{
    content:"";
    position:absolute;
    left:18px;
    top:23px;
    width:12px;
    height:12px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--maori-red),var(--kiwi-green));
    box-shadow:0 0 0 5px rgba(204,0,0,.08);
}

.spe-page-shell ol{
    counter-reset:spe-counter;
}

.spe-page-shell ol li{
    counter-increment:spe-counter;
}

.spe-page-shell ol li:before{
    content:counter(spe-counter);
    position:absolute;
    left:14px;
    top:14px;
    width:26px;
    height:26px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#171717;
    color:#fff;
    font-size:13px;
    font-weight:800;
}

.spe-page-shell table{
    width:100%;
    margin:30px 0;
    border-collapse:separate;
    border-spacing:0;
    overflow:hidden;
    border-radius:22px;
    border:1px solid rgba(20,20,20,.1);
    background:#fff;
    box-shadow:0 18px 42px rgba(20,20,20,.08);
}

.spe-page-shell th,
.spe-page-shell td{
    padding:16px;
    text-align:left;
    vertical-align:top;
    border-bottom:1px solid rgba(20,20,20,.1);
    color:#4f4f4f;
}

.spe-page-shell th{
    background:linear-gradient(135deg,#fff0ed,#eefaf4);
    color:#171717;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.spe-page-shell tr:last-child td{
    border-bottom:0;
}

.spe-page-shell blockquote{
    margin:32px 0;
    padding:24px 26px;
    border-left:5px solid var(--maori-red);
    border-radius:22px;
    background:#fff4f1;
}

.spe-page-shell blockquote p{
    margin:0;
    color:#2d2d2d;
    font-size:18px;
}

.spe-page-shell .toc,
.spe-page-shell .contents,
.spe-page-shell .table-of-contents{
    margin:26px 0 36px;
    padding:24px;
    border-radius:24px;
    border:1px solid rgba(204,0,0,.16);
    background:
            radial-gradient(circle at 12% 0%,rgba(0,168,107,.16),transparent 32%),
            linear-gradient(135deg,#fff5f2,#f7fffb);
}

.spe-page-shell .toc strong,
.spe-page-shell .contents strong,
.spe-page-shell .table-of-contents strong{
    display:block;
    margin-bottom:14px;
    color:#171717;
    font-size:21px;
}

.spe-page-shell .toc ol,
.spe-page-shell .toc ul,
.spe-page-shell .contents ol,
.spe-page-shell .contents ul,
.spe-page-shell .table-of-contents ol,
.spe-page-shell .table-of-contents ul{
    margin:0;
    display:grid;
    gap:9px;
}

.spe-page-shell .toc li,
.spe-page-shell .contents li,
.spe-page-shell .table-of-contents li{
    padding:0;
    border:0;
    background:transparent;
    box-shadow:none;
}

.spe-page-shell .toc li:before,
.spe-page-shell .contents li:before,
.spe-page-shell .table-of-contents li:before{
    display:none;
}

.spe-page-shell .author-note,
.spe-page-shell .note,
.spe-page-shell .summary-box{
    margin:34px 0 0;
    padding:24px;
    border-radius:24px;
    border:1px solid rgba(0,168,107,.28);
    background:linear-gradient(135deg,#f0fff8,#ffffff);
}

.spe-page-shell .author-note p,
.spe-page-shell .note p,
.spe-page-shell .summary-box p{
    margin-bottom:0;
}

.spe-page-related{
    position:relative;
    width:min(960px,calc(100% - 32px));
    margin:28px auto 0;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}

.spe-page-related a{
    display:block;
    padding:20px;
    border-radius:22px;
    background:rgba(255,255,255,.9);
    border:1px solid rgba(20,20,20,.1);
    color:#171717;
    box-shadow:0 16px 38px rgba(20,20,20,.1);
    text-decoration:none;
}

.spe-page-related span{
    display:block;
    margin-bottom:8px;
    color:var(--maori-red);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.spe-page-related strong{
    display:block;
    line-height:1.35;
}

.spe-footer-text{color:#ccc;margin-bottom:1rem}
.spe-footer-small{color:#ccc;font-size:.9rem}
.spe-footer-list{list-style:none}
.spe-footer-responsible{color:#ccc;margin-bottom:1rem;font-size:.95rem}
.spe-footer-compliance{margin-bottom:1rem}
.spe-age{font-size:2rem;text-align:center;margin-top:1rem}
.spe-footer-bottom-note{margin-top:.5rem;font-size:.9rem}

@media(max-width:900px){
    .spe-page-related{grid-template-columns:1fr}
    .spe-page-shell table{display:block;overflow-x:auto}
}

@media(max-width:640px){
    .spe-page-main{padding:42px 0 58px}
    .spe-page-shell{width:calc(100% - 24px);padding:24px 18px;border-radius:22px}
    .spe-page-shell:before{width:auto;font-size:12px;white-space:normal}
    .spe-page-shell p,
    .spe-page-shell li{font-size:16px}
    .spe-page-shell li{padding-left:44px}
}