/* ============================================
   UNIQUENESS PROJECT: site24-nz
   DOMAIN: depointlounge.com
   COUNTRY: NZ (New Zealand)
   LANGUAGE: EN
   
   CSS ARCHITECTURE: Utility-First
   PALETTE: NZ Nature (hills-green, turquoise-waters, golden-beaches, forest-deep, sky-blue, sunset-orange)
   EFFECT: Animated Gradients
   TYPOGRAPHY: Bold Display (Oswald + Raleway)
   BUTTONS: Split Color
   HTML STRUCTURE: Semantic Style
   JS NAMING: camelCase with prefixes (ui*, el*)
   ============================================ */

/* ============================================
   CSS VARIABLES - NZ NATURE THEME
   ============================================ */
:root {
    /* NZ Nature Palette */
    --hills-green: #2d7d4f;
    --turquoise-waters: #00b8d4;
    --golden-beaches: #f4a460;
    --forest-deep: #1a5f2f;
    --sky-blue: #4a90e2;
    --sunset-orange: #ff8c42;
    
    /* Utility Colors */
    --text-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --bg-light: #ffffff;
    --bg-dark: #0d1b1f;
    --border-color: rgba(255, 255, 255, 0.2);
    
    /* Spacing Utilities */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Raleway', sans-serif;
    
    /* Header */
    --header-height: 70px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

@media (max-width: 600px) {
    :root {
        --header-height: 60px;
    }
}

/* ============================================
   UTILITY-FIRST BASE STYLES
   ============================================ */
* {
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--spacing-md) 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.text-center { text-align: center; }
.w-full { width: 100%; }
.max-w-1200 { max-width: 1200px; margin: 0 auto; }
.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.m-auto { margin: 0 auto; }

/* ============================================
   ANIMATED GRADIENTS EFFECT
   ============================================ */
.animated-gradient-bg {
    background: linear-gradient(45deg, var(--hills-green), var(--turquoise-waters), var(--sky-blue), var(--sunset-orange));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.main-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--bg-dark);
    color: var(--text-light);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.primary-site-navigation {
    display: none;
}

.navigation-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.navigation-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.navigation-link:hover {
    color: var(--turquoise-waters);
}

.mobile-menu-button {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s;
}

.mobile-menu-button.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-button.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-navigation {
    position: fixed;
    top: calc(var(--header-height) - 1px);
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: var(--spacing-lg);
    display: none;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu-navigation.active {
    display: block;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    margin-bottom: var(--spacing-sm);
}

.mobile-menu-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    display: block;
    padding: var(--spacing-sm);
    transition: color 0.3s;
}

.mobile-menu-link:hover {
    color: var(--turquoise-waters);
}

@media (min-width: 900px) {
    .primary-site-navigation {
        display: block;
    }
    
    .mobile-menu-button {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-banner {
    padding-top: 120px;
    min-height: calc(100vh - var(--header-height));
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--hills-green) 50%, var(--turquoise-waters) 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: scroll;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS - SPLIT COLOR STYLE
   ============================================ */
.primary-action-btn {
    background: linear-gradient(to right, var(--hills-green) 50%, var(--turquoise-waters) 50%);
    background-size: 200% 100%;
    background-position: right;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    color: var(--text-light);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-position 0.3s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.primary-action-btn:hover {
    background-position: left;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.secondary-action-btn {
    background: transparent;
    border: 2px solid var(--text-light);
    padding: var(--spacing-sm) var(--spacing-lg);
    color: var(--text-light);
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.secondary-action-btn:hover {
    background: var(--text-light);
    color: var(--forest-deep);
}

/* ============================================
   SECTIONS
   ============================================ */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--forest-deep);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-showcase {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.benefit-card {
    background: var(--bg-light);
    border: 2px solid var(--hills-green);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.benefit-title {
    font-size: 1.5rem;
    color: var(--forest-deep);
    margin-bottom: var(--spacing-sm);
}

.benefit-text {
    color: var(--text-dark);
    line-height: 1.8;
}

@media (min-width: 900px) {
    .benefits-grid {
        flex-direction: row;
        justify-content: center;
    }
    
    .benefit-card {
        flex: 1;
        max-width: 350px;
    }
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games-showcase {
    background: linear-gradient(180deg, var(--bg-light) 0%, #f0f8ff 100%);
    padding: var(--spacing-xl) 0;
}

.games-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    flex: 0 0 auto;
    width: clamp(280px, 25vw, 350px);
    max-width: 350px;
    min-width: 280px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-info {
    padding: var(--spacing-md);
}

.game-title {
    font-size: 1.5rem;
    color: var(--forest-deep);
    margin-bottom: var(--spacing-sm);
}

.game-description {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.game-button {
    width: 100%;
    padding: var(--spacing-sm);
    background: linear-gradient(to right, var(--hills-green) 50%, var(--turquoise-waters) 50%);
    background-size: 200% 100%;
    background-position: right;
    border: none;
    color: var(--text-light);
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-position 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.game-button:hover {
    background-position: left;
}

@media (max-width: 768px) {
    .games-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .game-card {
        width: 100%;
        max-width: 400px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    border: 2px solid var(--hills-green);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md);
    background: var(--hills-green);
    color: var(--text-light);
    border: none;
    text-align: left;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--forest-deep);
}

.faq-question.active {
    background: var(--forest-deep);
}

.faq-answer {
    padding: 0 var(--spacing-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
    padding: var(--spacing-md);
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: linear-gradient(180deg, #f0f8ff 0%, var(--bg-light) 100%);
    padding: var(--spacing-xl) 0;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--bg-light);
    border: 2px solid var(--turquoise-waters);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.testimonial-author {
    color: var(--forest-deep);
    font-weight: 600;
}

@media (min-width: 900px) {
    .testimonials-grid {
        flex-direction: row;
        justify-content: center;
    }
    
    .testimonial-card {
        flex: 1;
        max-width: 350px;
    }
}

/* ============================================
   LEADERBOARD SECTION
   ============================================ */
.leaderboard-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.leaderboard-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 600px;
    margin: 0 auto;
}

.leaderboard-card {
    background: var(--bg-light);
    border: 2px solid var(--golden-beaches);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.leaderboard-rank {
    font-size: 2rem;
}

.leaderboard-name {
    font-size: 1.3rem;
    color: var(--forest-deep);
    margin: 0;
}

.leaderboard-score {
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

@media (min-width: 900px) {
    .leaderboard-grid {
        flex-direction: row;
        justify-content: center;
        max-width: 1200px;
        flex-wrap: wrap;
    }
    
    .leaderboard-card {
        flex: 0 1 300px;
    }
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */
.disclaimer-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: var(--text-light);
    padding: var(--spacing-xl) 0;
    border-top: 3px solid var(--sunset-orange);
    border-bottom: 3px solid var(--sunset-orange);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.disclaimer-content h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.disclaimer-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.disclaimer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.disclaimer-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
}

.disclaimer-help {
    margin-top: var(--spacing-md);
}

.disclaimer-help a {
    color: var(--text-light);
    text-decoration: underline;
    font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.main-site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: var(--spacing-xl) 0 var(--spacing-md) 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section {
    flex: 1;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--turquoise-waters);
}

.compliance-section {
    text-align: center;
}

.age-restriction {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--golden-beaches);
}

.compliance-logos {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.compliance-logo {
    height: 35px !important;
    width: auto !important;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: var(--radius-sm);
    opacity: 0.9;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.compliance-logo:hover {
    opacity: 1;
    border-color: var(--turquoise-waters);
    box-shadow: 0 0 10px var(--turquoise-waters);
}

.compliance-text {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--turquoise-waters);
    text-decoration: none;
}

@media (min-width: 900px) {
    .footer-content {
        flex-direction: row;
    }
}

/* ============================================
   MODAL STYLES
   ============================================ */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: var(--spacing-md);
}

.age-verification-modal.hidden {
    display: none;
}

.age-verification-content {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.age-verification-header h2 {
    color: var(--forest-deep);
    margin-bottom: var(--spacing-md);
}

.age-verification-body p {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.age-verification-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.age-warning-text {
    font-size: 0.875rem;
    color: #666;
    margin-top: var(--spacing-md);
}

.cookie-acceptance-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--forest-deep) 100%);
    border: 2px solid var(--hills-green);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    z-index: 9999;
    display: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-acceptance-banner.active {
    display: block;
}

.cookie-acceptance-content {
    color: var(--text-light);
}

.cookie-acceptance-content p {
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-acceptance-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
}

@media (max-width: 600px) {
    .cookie-acceptance-banner {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .content-wrapper {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
}

