@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Inter:wght@400;600;800&family=Fredoka:wght@400;600;700&display=swap');

:root {
    --bg-dark: #0f0b18;
    --bg-surface: #221a30;
    --bg-surface-elevated: #2f2543;
    --primary: #ffbd14; /* Vibrant Cartoon Gold */
    --primary-dark: #cc8e00;
    --primary-glow: rgba(255, 189, 20, 0.4);
    --secondary: #9d50ff; /* Magical Comic Purple */
    --secondary-dark: #7026cc;
    --secondary-glow: rgba(157, 80, 255, 0.4);
    --accent-red: #ff3c73; /* Neon Ruby Red */
    --accent-green: #00ff88; /* Emerald Poison Green */
    --text-main: #fcfbfe;
    --text-muted: #b4a8cb;
    --border-color: #4a3765;
    --border-highlight: #ffbd14;
    --font-heading: 'Fredoka', 'Cinzel', Georgia, serif; /* Mixed Cartoonish Gothic */
    --font-body: 'Inter', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

body {
    overflow-x: hidden;
    position: relative;
    /* Rich Cartoon Stone Wall Gradient texture */
    background: 
        radial-gradient(circle at 50% 0%, rgba(157, 80, 255, 0.2) 0%, rgba(15, 11, 24, 0) 60%),
        radial-gradient(circle at 10% 40%, rgba(255, 60, 115, 0.08) 0%, rgba(15, 11, 24, 0) 40%),
        radial-gradient(circle at 90% 70%, rgba(0, 255, 136, 0.05) 0%, rgba(15, 11, 24, 0) 40%),
        #0f0b18;
}

/* Base Typography with Game UI style */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.25;
    text-shadow: 0 4px 0px rgba(0, 0, 0, 0.6), 0 0 10px rgba(157, 80, 255, 0.3);
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease;
}

/* Cartoonish Frame styling */
.cartoon-frame {
    background: var(--bg-surface);
    border: 4px solid var(--border-color);
    box-shadow: 
        0 8px 0px rgba(0, 0, 0, 0.5), 
        inset 0 4px 0px rgba(255, 255, 255, 0.1),
        0 12px 24px rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cartoon-frame:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: 
        0 12px 0px rgba(0, 0, 0, 0.6), 
        0 0 20px var(--secondary-glow),
        inset 0 4px 0px rgba(255, 255, 255, 0.15);
}

/* Decorative Golden Rivets for Dungeon UI Panel corners */
.riveted::before, .riveted::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffd700;
    border: 2px solid #5d4500;
    border-radius: 50%;
    z-index: 10;
    box-shadow: inset -1px -1px 2px rgba(0,0,0,0.6);
}

.riveted::before { top: 12px; left: 12px; }
.riveted::after { top: 12px; right: 12px; }

/* Disclaimer Bar */
.disclaimer-bar {
    background-color: #07040d;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    padding: 12px 15px;
    border-bottom: 4px solid #1c152a;
    position: relative;
    z-index: 1001;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* Navigation & Slim Header */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 11, 24, 0.95);
    border-bottom: 4px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 3px 3px 0px #50169b;
}

.logo svg {
    fill: var(--primary);
    filter: drop-shadow(0 0 6px var(--primary-glow));
    transform: rotate(-5deg);
    animation: bounce-cartoon 3s infinite ease-in-out;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-link:hover {
    color: #fff;
    background: rgba(157, 80, 255, 0.15);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #fff;
    background: var(--secondary);
    box-shadow: 0 4px 0px var(--secondary-dark);
    border: 2px solid #fff;
}

.header-cta {
    display: flex;
    align-items: center;
}

/* Cartoon Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 3px solid #1a1001;
    position: relative;
    transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #ff9500 100%);
    color: #241100;
    box-shadow: 
        0 6px 0px #ab6000, 
        0 10px 20px rgba(255, 189, 20, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 0px #ab6000, 
        0 12px 25px rgba(255, 189, 20, 0.5);
}

.btn-primary:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0px #ab6000;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #fff;
    border-color: #25094d;
    box-shadow: 
        0 6px 0px #37067d,
        0 10px 20px rgba(157, 80, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 0px #37067d,
        0 12px 25px rgba(157, 80, 255, 0.5);
}

.btn-secondary:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0px #37067d;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: var(--bg-surface-elevated);
    border: 3px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
    transition: transform 0.2s ease;
}

.mobile-toggle:active {
    transform: scale(0.9);
}

/* Hero Section */
.hero {
    padding: 90px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '✦';
    position: absolute;
    top: 15%;
    left: 10%;
    font-size: 32px;
    color: var(--primary);
    animation: spin-portal 8s infinite linear;
    opacity: 0.7;
}

.hero::after {
    content: '✦';
    position: absolute;
    bottom: 20%;
    right: 12%;
    font-size: 24px;
    color: var(--secondary);
    animation: bounce-cartoon 4s infinite ease-in-out;
    opacity: 0.7;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary);
    background: rgba(255, 189, 20, 0.1);
    border: 2px solid var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: inline-block;
}

.hero h1 {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(to bottom, #fff 30%, #ffda79 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.6));
}

.hero p {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto 40px auto;
    color: var(--text-muted);
}

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

/* Game Interface Frame Wrapper */
.game-container-wrapper {
    background: #181124;
    border: 6px solid var(--border-color);
    box-shadow: 
        0 15px 0px #09060e,
        0 20px 40px rgba(0,0,0,0.8),
        0 0 40px rgba(157, 80, 255, 0.4);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    margin: 50px auto 0 auto;
    max-width: 1000px;
}

.game-header-bar {
    background: linear-gradient(to right, #241a35, #1b1328);
    padding: 16px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid var(--border-color);
}

.game-status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}

.game-status-dot {
    width: 12px;
    height: 12px;
    background-color: var(--accent-green);
    border: 2px solid #004d2c;
    border-radius: 50%;
    animation: pulse-green-glow 1.5s infinite;
}

.game-frame-holder {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #0b0712;
}

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

/* Section styling */
.section {
    padding: 110px 0;
}

.section-accent {
    background-color: #171124;
    border-top: 4px solid var(--border-color);
    border-bottom: 4px solid var(--border-color);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-wrapper h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #fff;
    background: linear-gradient(to bottom, #fff 40%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cartoon Illustrated Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-surface);
    border: 4px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 
        0 10px 0px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.25s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 
        0 14px 0px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(255, 189, 20, 0.25);
}

.feature-illustration-wrapper {
    width: 100%;
    height: 180px;
    background: var(--bg-surface-elevated);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.feature-icon-svg {
    width: 90px;
    height: 90px;
    fill: var(--primary);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

/* Split Layouts */
.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.cartoon-character-graphic {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 4px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Highlight List style */
.highlight-list {
    list-style: none;
    margin: 32px 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    background: rgba(47, 37, 67, 0.5);
    padding: 16px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--primary);
}

.highlight-bullet {
    font-size: 20px;
    color: var(--primary);
    animation: bounce-cartoon 2s infinite ease-in-out;
}

/* Statistics Grid - Stone Tablet UI style */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--bg-surface);
    border: 4px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin: 60px auto;
    text-align: center;
    box-shadow: 0 12px 0px rgba(0, 0, 0, 0.5);
}

.stat-item {
    position: relative;
}

.stat-item h4 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 900;
    text-shadow: 3px 3px 0 #5d4500;
}

.stat-item p {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
}

/* FAQ Accordion UI style */
.faq-grid {
    max-width: 850px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: var(--bg-surface);
    border: 3px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 6px 0 rgba(0,0,0,0.3);
    transition: transform 0.2s ease, border-color 0.2s;
}

.faq-item:hover {
    border-color: var(--secondary);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    color: var(--text-muted);
    font-size: 15px;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--primary);
    font-size: 14px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Interactive parchment reader styling */
.parchment-unroll-container {
    background: #f1e6c9; /* Warm Comic Parchment */
    border: 5px solid #84683c;
    border-radius: var(--radius-md);
    color: #3b2a12;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 
        0 8px 0px #4d3c22,
        inset 0 0 30px rgba(132, 104, 60, 0.2);
    position: relative;
    transform-origin: top;
    animation: fold-out 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15) forwards;
}

.parchment-unroll-container h4 {
    color: #4a2f00;
    text-shadow: none;
    margin-bottom: 12px;
    font-size: 22px;
}

.parchment-unroll-container p {
    color: #554124;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.parchment-close-btn {
    background: #ff3c73;
    color: #fff;
    font-family: var(--font-heading);
    border: 2px solid #4a0017;
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    float: right;
    box-shadow: 0 3px 0 #800021;
}

.parchment-close-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #800021;
}

/* Blog Layout styling */
.blog-featured {
    margin-bottom: 60px;
}

.featured-post-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 4px solid var(--border-color);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    box-shadow: 0 12px 0px rgba(0,0,0,0.5);
}

.post-img-holder {
    background-color: var(--bg-surface-elevated);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 4px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.post-img-holder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 40%, rgba(15, 11, 24, 0.4));
}

.post-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.post-title {
    font-size: 32px;
    margin-bottom: 16px;
}

.post-excerpt {
    margin-bottom: 24px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 4px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 0px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.25s;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 14px 0px rgba(0,0,0,0.5);
}

.blog-card-img {
    height: 220px;
    background-color: var(--bg-surface-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid var(--border-color);
    position: relative;
}

.blog-card-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content h3 {
    font-size: 20px;
    margin: 8px 0 12px 0;
}

.blog-card-content p {
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Contact Page Form */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    margin: 60px 0;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--bg-surface);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 4px solid var(--border-color);
    box-shadow: 0 10px 0px rgba(0,0,0,0.4);
}

.info-card h3 {
    margin-bottom: 12px;
}

.contact-form {
    background: var(--bg-surface);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 4px solid var(--border-color);
    box-shadow: 0 12px 0px rgba(0,0,0,0.5);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
}

.form-input {
    background: var(--bg-surface-elevated);
    border: 3px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

textarea.form-input {
    resize: vertical;
    min-height: 150px;
}

/* Legal Pages wrapper */
.legal-wrapper {
    max-width: 850px;
    margin: 60px auto;
    background: var(--bg-surface);
    padding: 50px;
    border: 4px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 0px rgba(0,0,0,0.5);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
    border-bottom: 4px solid var(--border-color);
    padding-bottom: 8px;
}

/* Footer Section */
.footer-wrapper {
    background: #09060f;
    border-top: 6px solid var(--border-color);
    padding: 80px 0 30px 0;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h5 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-info-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 4px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom-disclaimer {
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-bottom-copy {
    font-size: 13px;
    color: var(--text-muted);
}

/* Cartoon Styled Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 420px;
    background: var(--bg-surface-elevated);
    border: 4px solid var(--primary);
    box-shadow: 0 12px 0px rgba(0, 0, 0, 0.7);
    border-radius: var(--radius-lg);
    padding: 28px;
    z-index: 10000;
    transform: translateY(180%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    flex: 1;
    font-size: 11px;
    padding: 10px;
}

/* Animations */
@keyframes bounce-cartoon {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.03); }
}

@keyframes spin-portal {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fold-out {
    from { transform: scaleY(0); opacity: 0; }
    to { transform: scaleY(1); opacity: 1; }
}

@keyframes pulse-green-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .split-layout {
        flex-direction: column;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-post-card {
        grid-template-columns: 1fr;
    }
    .post-img-holder {
        border-right: none;
        border-bottom: 4px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-surface-elevated);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 4px solid var(--border-color);
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .hero h1 {
        font-size: 38px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .legal-wrapper {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .stats-bar {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}