/* ==========================================
   GLOBAL DESIGN SYSTEM & THEME
   Brand Theme: Medieval Cartoon (Deep Warm Bronze, Bright Gold, Hot Orange)
========================================== */

:root {
    --primary-bg: #1c0f00; /* Warm near-black brown */
    --secondary-bg: #331b00; /* Deep golden brown */
    --accent-gold: #FFD700; /* Yellow */
    --accent-orange: #FF8C00; /* Dark Orange */
    --accent-ruby: #FF5500; /* Bright Red-Orange */
    --accent-green: #E6B800; /* Golden Yellow */
    --text-light: #FFF8F0; /* Soft warm white */
    --text-muted: #E0A96D; /* Soft warm orange-brown */
    --border-dark: #000000;
    --font-heading: 'Fredoka', 'Nunito', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --header-height-desktop: 72px;
    --header-height-mobile: 60px;
    --transition-bounce: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border: 3px solid var(--primary-bg);
    border-radius: 10px;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-bounce);
}

a:hover {
    color: var(--accent-orange);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.w-100 {
    width: 100%;
}

.highlight-text {
    color: var(--accent-gold);
    text-shadow: 2px 2px 0px #000000;
}

/* ==========================================
   CARTOON COMPONENT BUTTON SYSTEM
========================================== */
.cartoon-btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 16px;
    border: 4px solid var(--border-dark);
    cursor: pointer;
    box-shadow: 0 6px 0 var(--border-dark);
    transition: var(--transition-bounce);
    position: relative;
    top: 0;
    outline: none;
    text-align: center;
}

.cartoon-btn:active {
    top: 4px;
    box-shadow: 0 2px 0 var(--border-dark);
}

.primary-btn {
    background: var(--accent-ruby);
    color: #FFF;
}
.primary-btn:hover {
    background: #FF7722;
    color: #FFF;
}

.secondary-btn {
    background: var(--secondary-bg);
    color: var(--text-light);
    border-color: var(--border-dark);
}
.secondary-btn:hover {
    background: #4A2700;
}

.gold-btn {
    background: var(--accent-gold);
    color: #000;
}
.gold-btn:hover {
    background: #FFE566;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    border-width: 3px;
    box-shadow: 0 4px 0 var(--border-dark);
    border-radius: 10px;
}

/* ==========================================
   I. MANDATORY TOP DISCLAIMER BAR
========================================== */
.top-disclaimer-bar {
    background: #0F0900;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    border-bottom: 3px solid var(--accent-gold);
    text-align: center;
    padding: 8px 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.disclaimer-content .badge {
    background: var(--accent-ruby);
    color: white;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 11px;
    border: 2px solid #000;
}

/* ==========================================
   II. PERFECT HEADER SYSTEM
========================================== */
.main-header {
    height: var(--header-height-desktop);
    background: rgba(51, 27, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 4px solid var(--border-dark);
    position: sticky;
    top: 35px; /* Directly below sticky disclaimer bar */
    z-index: 999;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-svg {
    height: 40px;
    filter: drop-shadow(2px 2px 0px #000);
}

.logo-text-accent {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-gold);
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #000;
}

/* Centered Navigation with 28px Highlight Font Size */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav .nav-item {
    font-family: var(--font-heading);
    font-size: 28px; /* High contrast custom brand requirement */
    font-weight: 800;
    color: #FFF;
    text-shadow: 2px 2px 0px #000;
    transition: var(--transition-bounce);
}

.desktop-nav .nav-item:hover,
.desktop-nav .nav-item.active {
    color: var(--accent-orange);
    transform: scale(1.08) rotate(-1deg);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-header-btn {
    font-family: var(--font-heading);
    font-weight: 900;
    background: var(--accent-gold);
    color: #000;
    border: 3px solid #000;
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 0 #000;
    font-size: 14px;
    transition: var(--transition-bounce);
}

.cta-header-btn:hover {
    background: var(--accent-orange);
    transform: scale(1.05);
}

/* Custom Hamburger Icon */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    width: 44px;
    height: 44px;
    display: none; /* Blocked via media queries */
    justify-content: center;
    align-items: center;
}

.hamburger-coin {
    display: inline-block;
    transition: transform 0.5s ease;
}

.hamburger-menu:hover .hamburger-coin {
    transform: rotateY(360deg);
}

/* Mobile Slide Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-bg);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #FFF;
    font-size: 40px;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 0 40px;
}

.mobile-nav-item {
    font-family: var(--font-heading);
    font-size: 36px; /* High Visibility size requirement */
    font-weight: 800;
    color: #FFF;
    text-shadow: 2px 2px 0px #000;
}

.cta-mobile-btn {
    margin-top: 20px;
    display: block;
    width: 100%;
    text-align: center;
    background: var(--accent-ruby);
    color: white;
    font-size: 24px;
    font-family: var(--font-heading);
    padding: 15px;
    border-radius: 20px;
    border: 4px solid #000;
    box-shadow: 0 6px 0 #000;
}

/* ==========================================
   PAGE VIEW ARCHITECTURE
========================================== */
.page-view {
    display: none;
}

.page-view.active {
    display: block;
    animation: fadeInPage 0.5s ease-out;
}

@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   PAGE 1: HOME PAGE
========================================== */
.hero-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    border-bottom: 6px dashed var(--accent-gold);
}

.hero-bg-elements .floating-item {
    position: absolute;
    font-size: 40px;
    user-select: none;
    pointer-events: none;
    animation: floatAnim 6s infinite ease-in-out alternate;
}

.coin-1 { top: 15%; left: 10%; animation-delay: 0s; }
.coin-2 { bottom: 20%; right: 12%; animation-delay: 2s; }
.shield-1 { top: 25%; right: 15%; animation-delay: 1s; }
.crown-1 { bottom: 25%; left: 15%; animation-delay: 3s; }

@keyframes floatAnim {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(15deg); }
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    background: rgba(0,0,0,0.4);
    border: 2px solid var(--accent-gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 54px;
    line-height: 1.1;
    margin: 25px 0;
    text-shadow: 4px 4px 0px #000;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Features Grid */
.features-section {
    padding: 80px 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    margin-bottom: 50px;
    text-shadow: 3px 3px 0px #000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--secondary-bg);
    border: 4px solid var(--border-dark);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 0 var(--border-dark);
    transition: var(--transition-bounce);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

/* Game Preview Banner */
.game-preview-banner {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #170c00 100%);
    border-top: 4px solid var(--border-dark);
    border-bottom: 4px solid var(--border-dark);
    padding: 60px 0;
}

.preview-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.preview-text {
    flex: 1 1 500px;
}

.preview-text h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.preview-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.preview-visual {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.preview-img {
    max-width: 100%;
    border-radius: 20px;
    border: 4px solid var(--border-dark);
    box-shadow: 0 10px 0 var(--border-dark);
}

/* Animated Counters */
.stats-banner {
    background: var(--accent-gold);
    color: #000;
    padding: 40px 0;
    border-bottom: 4px solid var(--border-dark);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item {
    flex: 1 1 200px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 900;
}

.stat-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

/* ==========================================
   II. SOCIAL CASINO LOBBY PAGE
========================================== */
.lobby-hero {
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    text-align: center;
    padding: 60px 20px;
    border-bottom: 4px solid var(--border-dark);
}

.lobby-hero h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 3px 3px 0 #000;
}

/* Game Iframe Platform styling */
.iframe-container {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border: 6px solid var(--border-dark);
    border-radius: 24px;
    box-shadow: 0 12px 0 var(--border-dark);
    margin-bottom: 25px;
    transition: var(--transition-bounce), border-color 0.4s ease;
}

.responsive-game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.iframe-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Themed Rooms Grid */
.themed-rooms {
    padding: 60px 20px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.room-card {
    background: var(--secondary-bg);
    border: 4px solid var(--border-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 0 var(--border-dark);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-bounce);
}

.room-card.active-room {
    border-color: var(--accent-orange);
    box-shadow: 0 8px 0 var(--accent-orange);
}

.room-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-orange);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    border: 2px solid #000;
    z-index: 2;
}

.room-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 4px solid var(--border-dark);
}

.room-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-details h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
}

.room-details p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ==========================================
   III. ABOUT PAGE
========================================== */
.about-hero {
    background: radial-gradient(circle, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 4px solid var(--border-dark);
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    margin-bottom: 15px;
    text-shadow: 3px 3px 0 #000;
}

.about-content {
    padding: 60px 20px;
}

.about-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-visual {
    flex: 1 1 400px;
}

.lore-box {
    background: #4D2A00;
    border: 4px dashed var(--accent-gold);
    border-radius: 20px;
    padding: 30px;
}

.lore-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.lore-box ul {
    list-style: none;
}

.lore-box li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.lore-box li::before {
    content: "🛡️";
    position: absolute;
    left: 0;
}

/* ==========================================
   IV. BLOG & ARTICLE DISPLAY (8 Master Articles)
========================================== */
.blog-hero {
    background: var(--secondary-bg);
    text-align: center;
    padding: 60px 20px;
    border-bottom: 4px solid var(--border-dark);
}

.blog-hero h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    text-shadow: 3px 3px 0 #000;
}

.blog-articles-container {
    padding: 60px 20px;
}

.blog-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--secondary-bg);
    border: 4px solid var(--border-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 0 var(--border-dark);
    display: flex;
    flex-direction: column;
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-meta {
    font-size: 12px;
    color: var(--accent-gold);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
    color: #FFF;
}

.blog-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Single Full Article View */
.article-view-wrapper {
    padding: 60px 20px;
}

.full-article-content {
    background: var(--secondary-bg);
    border: 4px solid var(--border-dark);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 0 var(--border-dark);
    margin-top: 30px;
}

.full-article-content h1 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.full-article-content .meta {
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 30px;
}

.full-article-content h2,
.full-article-content h3 {
    font-family: var(--font-heading);
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.full-article-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ==========================================
   V. CONTACT PAGE
========================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 80px 20px;
}

.contact-info-panel h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.detail-item .icon {
    font-size: 32px;
}

.contact-form-panel {
    background: var(--secondary-bg);
    border: 4px solid var(--border-dark);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 0 var(--border-dark);
}

.contact-form-panel h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.cartoon-input {
    width: 100%;
    padding: 12px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    background: #FFF;
    border: 3px solid #000;
    border-radius: 12px;
    outline: none;
    color: #000;
}

.cartoon-input:focus {
    border-color: var(--accent-orange);
}

/* ==========================================
   VI. RESPONSIBLE GAMING PAGE
========================================== */
.responsible-hero {
    background: linear-gradient(135deg, var(--accent-ruby) 0%, var(--primary-bg) 100%);
    text-align: center;
    padding: 60px 20px;
    border-bottom: 4px solid var(--border-dark);
}

.responsible-hero h1 {
    font-family: var(--font-heading);
    font-size: 40px;
    text-shadow: 2px 2px 0 #000;
}

.responsible-body {
    padding: 60px 20px;
}

.responsible-card {
    background: var(--secondary-bg);
    border: 4px solid var(--border-dark);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 0 var(--border-dark);
    margin-bottom: 40px;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.responsible-column {
    background: #422300;
    border: 3px dashed var(--text-muted);
    border-radius: 20px;
    padding: 25px;
}

.responsible-column h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.responsible-column ul {
    list-style: none;
}

.responsible-column li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.responsible-column li::before {
    content: "✔️";
    position: absolute;
    left: 0;
}

.support-channels {
    text-align: center;
    background: var(--accent-gold);
    color: #000;
    padding: 40px 20px;
    border-radius: 20px;
    border: 4px solid #000;
}

.support-channels h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 15px;
}

.channels-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.channels-links a {
    background: #000;
    color: #FFF;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
}

/* ==========================================
   VII. LEGAL DETAILS PAGE SYSTEM
========================================== */
.legal-page {
    padding: 60px 20px;
    max-width: 800px;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    margin-bottom: 15px;
}

/* ==========================================
   VIII. 404 PAGE
========================================== */
.error-container {
    padding: 100px 20px;
}

.error-character {
    font-size: 90px;
    margin-bottom: 30px;
}

.error-container h1 {
    font-family: var(--font-heading);
    font-size: 38px;
    margin-bottom: 20px;
}

/* ==========================================
   COOKIE CONSENT POPUP
========================================== */
.cookie-banner-popup {
    position: fixed;
    bottom: -100px;
    left: 20px;
    right: 20px;
    background: var(--secondary-bg);
    border: 4px solid var(--border-dark);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 0 var(--border-dark);
    z-index: 1002;
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner-popup.active {
    bottom: 20px;
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cookie-monster-icon {
    font-size: 40px;
}

.cookie-banner-text {
    flex: 1 1 300px;
}

.cookie-banner-text h4 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
}

/* ==========================================
   FOOTER (Finland address & social disclaimer)
========================================== */
.main-footer {
    background: #0E0500;
    border-top: 4px solid var(--border-dark);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    flex: 1 1 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
}

.footer-links-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-links-grid h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent-orange);
}

.footer-links-grid ul {
    list-style: none;
}

.footer-links-grid li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 2px solid #5C3200;
    padding-top: 25px;
}

.finland-identity {
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.copyright {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================
   RESPONSIVE LAYOUT RESPONSES
========================================== */
@media (max-width: 1023px) {
    .desktop-nav {
        display: none;
    }
    .hamburger-menu {
        display: flex;
    }
    .main-header {
        height: var(--header-height-mobile);
    }
    .top-disclaimer-bar {
        font-size: 11px;
    }
    .logo-svg {
        height: 32px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 34px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .section-title {
        font-size: 28px;
    }
    .main-header {
        top: 45px;
    }
}

/* ==========================================
   COMPLIANCE & DISCLOSURE LAYOUTS
========================================== */
.game-disclosures-panel {
    background: #4A2700;
    border: 4px solid var(--border-dark);
    border-radius: 20px;
    padding: 25px;
    margin-top: 25px;
    box-shadow: 0 6px 0 var(--border-dark);
}

.compliance-badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.comp-badge {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    font-size: 24px;
}

.badge-info h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--accent-gold);
    margin-bottom: 2px;
}

.badge-info p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.2;
}

.disclosure-legal-note {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-ruby);
}

/* ==========================================
   ENVIRONMENT INTERACTIVE NOTICE SYSTEM
========================================== */
.environment-toast {
    animation: popNotice 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popNotice {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}