/* ========================================
   MERRY CHRISTMAS — by Johan Jomet
   Official Website (johanjomet.web.app/christmas)
   Pixel-Perfect Mobile-First & Desktop Design System
   ======================================== */

:root {
    --red: #d32f2f;
    --red-hover: #b71c1c;
    --red-deep: #380b0f;
    --red-glow: rgba(211, 47, 47, 0.45);
    --green: #4caf50;
    --green-deep: #0f3813;
    --gold: #f5b041;
    --gold-glow: rgba(245, 176, 65, 0.35);
    --white: #f8f9fa;
    --gray: #9ba7b4;
    --gray-light: #d1d8e0;
    --dark: #04080e;
    --glass: rgba(8, 14, 22, 0.88);
    --glass-accent: rgba(58, 12, 16, 0.82);
    --glass-border: rgba(255, 255, 255, 0.09);
    --glass-border-red: rgba(211, 47, 47, 0.4);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    width: 100%;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-sans);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ========================================
   TOP PORTAL BANNER (DIRECT TO JOHAN JOMET)
   ======================================== */

.portal-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    background: rgba(4, 8, 14, 0.98);
    border-bottom: 1px solid rgba(245, 176, 65, 0.25);
    padding: 0.35rem 0.8rem;
    text-align: center;
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
}

.portal-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.portal-link:hover {
    color: var(--gold);
}

.portal-link strong {
    color: #ffffff;
    font-weight: 700;
}

.portal-pulse {
    width: 6px;
    height: 6px;
    min-width: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

.portal-arrow {
    font-size: 0.8rem;
    color: var(--gold);
}

/* ========================================
   FIXED PARALLAX BACKGROUND & CANVASES
   ======================================== */

.bg-fixed {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.02);
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 30%, transparent 15%, rgba(4, 8, 14, 0.72) 70%, rgba(4, 8, 14, 0.96) 100%),
        linear-gradient(to right, rgba(4, 8, 14, 0.96) 0%, rgba(4, 8, 14, 0.82) 45%, rgba(4, 8, 14, 0.4) 75%, transparent 100%),
        linear-gradient(to top, rgba(4, 8, 14, 0.98) 0%, transparent 35%);
}

#snow-canvas,
#confetti-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#confetti-canvas {
    z-index: 5;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.site-header {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem clamp(1rem, 4vw, 3.5rem);
    background: linear-gradient(to bottom, rgba(4, 8, 14, 0.95) 0%, rgba(4, 8, 14, 0.7) 80%, transparent 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    text-decoration: none;
    color: inherit;
}

.logo-script {
    font-family: var(--font-script);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--white);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.logo-serif {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #ffffff;
}

.logo-sub {
    font-size: 0.6rem;
    color: var(--gold);
    margin-top: 1px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.main-nav a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
    position: relative;
    padding: 0.3rem 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--gray-light);
    padding: 0.5rem 0.85rem;
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.icon-btn.active {
    background: rgba(245, 176, 65, 0.18);
    border-color: var(--gold);
    color: var(--gold);
}

.cta-btn {
    background: var(--red);
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.3rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px var(--red-glow);
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

.cta-btn:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(211, 47, 47, 0.65);
}

/* Mobile Hamburger Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 19px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Fullscreen Mobile Navigation Drawer */
.mobile-nav-drawer {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(4, 8, 14, 0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.8rem 1.5rem 2.2rem;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.98);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    overflow-y: auto;
}

.mobile-nav-drawer.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 1.5rem 0;
}

.mob-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.25rem;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mob-link:hover {
    color: var(--gold);
}

.mob-portal-btn {
    display: block;
    text-align: center;
    background: rgba(245, 176, 65, 0.12);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.85rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

/* ========================================
   SECTIONS ARCHITECTURE
   ======================================== */

main {
    position: relative;
    z-index: 1;
    width: 100%;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem clamp(1rem, 4vw, 4rem) 5rem;
    width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    padding-top: clamp(8.5rem, 16vh, 12rem);
    justify-content: flex-start;
}

.hero-inner {
    max-width: 720px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(245, 176, 65, 0.12);
    border: 1px solid rgba(245, 176, 65, 0.35);
    color: var(--gold);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: clamp(0.72rem, 2vw, 0.82rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.3rem;
    backdrop-filter: blur(8px);
    max-width: 100%;
}

.hero-h1 {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 9vw, 6.8rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-h1 .accent {
    color: var(--red);
    font-style: italic;
    text-shadow: 0 0 40px rgba(211, 47, 47, 0.45);
}

/* Hero Date Card */
.hero-date-card {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
    padding: 0.85rem 1.4rem;
    border-radius: 16px;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    max-width: 100%;
}

.date-col {
    display: flex;
    flex-direction: column;
}

.date-col-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--gray);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.date-col-val {
    font-size: clamp(0.92rem, 2.5vw, 1.12rem);
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.date-col-val.highlight {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 3vw, 1.25rem);
}

.date-divider {
    width: 1px;
    height: 32px;
    background: var(--glass-border);
}

.hero-intro {
    font-size: clamp(0.98rem, 2.5vw, 1.12rem);
    color: var(--gray-light);
    line-height: 1.75;
    margin-bottom: 2.2rem;
    max-width: 580px;
}

.hero-intro strong {
    color: #ffffff;
}

.hero-intro em {
    color: var(--gold);
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--red-deep);
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 1.8rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--red);
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.3);
    transition: all 0.25s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(211, 47, 47, 0.6);
}

.btn-ghost {
    display: inline-block;
    color: var(--gray-light);
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

/* ========================================
   CONTENT GLASS CARDS
   ======================================== */

.card {
    background: var(--glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: clamp(18px, 3vw, 26px);
    padding: clamp(1.8rem, 4vw, 3.5rem) clamp(1.4rem, 4vw, 3.8rem);
    max-width: 820px;
    width: 100%;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.card-wide {
    max-width: 1100px;
}

.card-left { margin-right: auto; }
.card-right { margin-left: auto; }
.card-center { margin: 0 auto; }

.card-accent {
    background: var(--glass-accent);
    border: 1px solid var(--glass-border-red);
    box-shadow: 0 28px 60px rgba(40, 6, 9, 0.6), inset 0 1px 1px rgba(255, 100, 100, 0.15);
}

.card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    padding: 0.25rem 0.7rem;
    background: rgba(211, 47, 47, 0.12);
    border-radius: 6px;
    border: 1px solid rgba(211, 47, 47, 0.25);
}

.card-h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 1.3rem;
    letter-spacing: -0.01em;
    word-break: normal;
    overflow-wrap: break-word;
}

.card-h2 em {
    font-style: italic;
    color: var(--gold);
}

.card-body {
    font-size: clamp(0.96rem, 2vw, 1.08rem);
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1.1rem;
}

.card-body strong {
    color: var(--white);
    font-weight: 600;
}

.card-body:last-child {
    margin-bottom: 0;
}

.card-highlight {
    background: rgba(245, 176, 65, 0.08);
    border-left: 3px solid var(--gold);
    padding: 1rem 1.3rem;
    border-radius: 0 12px 12px 0;
    margin: 1.3rem 0;
    font-style: italic;
    color: var(--white);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

/* Comparison Grid */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin: 1.6rem 0;
    width: 100%;
}

.comp-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.comp-item h4 {
    font-size: clamp(1rem, 2.5vw, 1.12rem);
    font-weight: 700;
    color: #ffffff;
}

.comp-label {
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.25rem;
}

.comp-label.accepted {
    background: rgba(76, 175, 80, 0.18);
    color: var(--green);
    border: 1px solid rgba(76, 175, 80, 0.35);
}

.comp-label.questioned {
    background: rgba(211, 47, 47, 0.18);
    color: var(--red);
    border: 1px solid rgba(211, 47, 47, 0.35);
}

.comp-text {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* Big Quote */
.big-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 3.5vw, 1.55rem);
    font-style: italic;
    color: #ffffff;
    line-height: 1.55;
    margin: 1.6rem 0 1rem;
    padding: 1.3rem 1.5rem;
    background: rgba(0, 0, 0, 0.35);
    border-left: 4px solid var(--red);
    border-radius: 0 16px 16px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.quote-credit {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.6rem;
    padding-left: 0.6rem;
    letter-spacing: 0.04em;
}

/* ========================================
   POSTER STUDIO & CARD GENERATOR
   ======================================== */

.card-header-group {
    margin-bottom: 1.5rem;
}

.studio-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    margin-top: 1.2rem;
    align-items: start;
    width: 100%;
}

.studio-controls {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
}

.form-group label {
    font-size: 0.82rem;
    color: var(--gray-light);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.studio-input,
.studio-select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    color: white;
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    transition: all 0.25s ease;
    width: 100%;
}

.studio-input:focus,
.studio-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 176, 65, 0.25);
    background: rgba(255, 255, 255, 0.1);
}

.studio-select option {
    background: #0d1520;
    color: white;
}

/* Artwork / Theme Selectors */
.artwork-selector,
.theme-selector {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    width: 100%;
}

.art-btn,
.theme-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--gray-light);
    padding: 0.5rem 0.85rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.art-btn:hover,
.theme-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.art-btn.active,
.theme-btn.active {
    background: var(--red);
    color: white;
    border-color: var(--red);
    box-shadow: 0 2px 12px var(--red-glow);
}

.theme-btn[data-theme="aurora"].active {
    background: #1b5e20;
    border-color: #4caf50;
    box-shadow: 0 2px 12px rgba(76, 175, 80, 0.4);
}

.theme-btn[data-theme="gold"].active {
    background: #b78103;
    border-color: var(--gold);
    box-shadow: 0 2px 12px var(--gold-glow);
}

.studio-btn-group {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-top: 0.4rem;
    width: 100%;
}

.toast {
    padding: 0.75rem 1.1rem;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid var(--green);
    border-radius: 10px;
    color: #bbf7d0;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.toast.hidden {
    display: none;
    opacity: 0;
}

/* Live Poster Card Preview */
.studio-preview-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.poster-card {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.poster-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85);
}

.poster-card.theme-crimson {
    background: linear-gradient(150deg, #42080d 0%, #150305 60%, #2a0508 100%);
    border-color: rgba(211, 47, 47, 0.45);
}

.poster-card.theme-aurora {
    background: linear-gradient(150deg, #092e15 0%, #031307 60%, #0c381c 100%);
    border-color: rgba(76, 175, 80, 0.45);
}

.poster-card.theme-gold {
    background: linear-gradient(150deg, #3d2a05 0%, #171002 60%, #291c03 100%);
    border-color: rgba(245, 176, 65, 0.45);
}

/* Poster Artwork Box */
.poster-illustration-box {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.poster-img-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-art-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 3, 5, 0.95) 0%, transparent 60%);
}

.poster-card.theme-aurora .poster-art-overlay {
    background: linear-gradient(to top, rgba(3, 19, 7, 0.95) 0%, transparent 60%);
}

.poster-card.theme-gold .poster-art-overlay {
    background: linear-gradient(to top, rgba(23, 16, 2, 0.95) 0%, transparent 60%);
}

.poster-card-body {
    padding: 1.2rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.poster-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.poster-tag {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-transform: uppercase;
}

.poster-days-badge {
    background: rgba(255, 255, 255, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.poster-greeting {
    margin: 0.9rem 0 0.5rem;
}

.poster-to {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--gray-light);
    font-weight: 400;
    margin-bottom: 0.2rem;
}

.poster-title {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.05;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.poster-quote {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-light);
    line-height: 1.5;
    margin: 0.7rem 0;
    padding-left: 0.8rem;
    border-left: 3px solid var(--gold);
}

.poster-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.9rem;
    margin-top: 0.5rem;
}

.poster-author-tag {
    display: flex;
    flex-direction: column;
}

.p-by {
    font-size: 0.6rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.p-name {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
}

.poster-url {
    font-size: 0.65rem;
    color: var(--gray);
    letter-spacing: 0.04em;
}

/* Join Stats */
.join-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.2rem;
    margin-top: 2.4rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    width: 100%;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.3rem;
    width: 100%;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1rem 1.3rem;
    transition: background 0.25s ease, border-color 0.25s ease;
    width: 100%;
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    font-size: clamp(0.92rem, 2.5vw, 1.05rem);
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    gap: 0.8rem;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--gold);
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
    color: var(--red);
}

.faq-answer {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.75;
}

.text-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: #ffffff;
}

/* ========================================
   AUTHOR CARD WITH PHOTO
   ======================================== */

.author-card {
    display: flex;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    width: 100%;
}

.author-avatar-wrap {
    position: relative;
    width: clamp(95px, 15vw, 130px);
    height: clamp(95px, 15vw, 130px);
    min-width: clamp(95px, 15vw, 130px);
}

.author-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(245, 176, 65, 0.6);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
}

.author-badge-glow {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--gold));
    opacity: 0.65;
    filter: blur(10px);
    z-index: 1;
    animation: glow-pulse 3s infinite ease-in-out;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 0.9; }
}

.author-info {
    flex: 1;
    width: 100%;
}

.author-bio {
    font-size: clamp(0.92rem, 2.5vw, 1.05rem);
    color: var(--gray-light);
    line-height: 1.75;
    margin-bottom: 1.3rem;
}

.author-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    padding: 3rem clamp(1rem, 4vw, 4rem) 2rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(4, 8, 14, 0.96);
    backdrop-filter: blur(16px);
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 1.3rem;
    width: 100%;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.footer-desc {
    font-size: 0.8rem;
    color: var(--gray);
}

.footer-links {
    display: flex;
    gap: 1.3rem;
    flex-wrap: wrap;
}

.footer-links a,
.footer-a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.78rem;
    color: var(--gray);
}

/* ========================================
   REVEAL ANIMATION (GSAP SCROLLTRIGGER)
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(35px);
}

/* ========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ======================================== */

@media (max-width: 960px) {
    .site-header { padding: 0.7rem 1.5rem; }
    .studio-layout { grid-template-columns: 1fr; gap: 2.2rem; }
    .comparison { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
    .main-nav { display: none; }
    .desktop-only { display: none; }
    .mobile-menu-btn { display: flex; }
    .section { padding: 5.5rem 1rem 3.5rem; min-height: auto; }
    .hero-section { padding-top: 7.5rem; }
    .card { padding: 1.8rem 1.2rem; width: 100%; max-width: 100%; }
    .hero-date-card { flex-direction: row; justify-content: space-between; width: 100%; padding: 0.75rem 1rem; gap: 0.8rem; }
    .date-divider { display: block; }
    .author-card { flex-direction: column; text-align: center; }
    .author-links { justify-content: center; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .join-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .portal-banner { font-size: 0.72rem; padding: 0.3rem 0.5rem; height: 28px; }
    .site-header { top: 28px; padding: 0.65rem 0.9rem; }
    .section { padding: 5rem 0.8rem 3rem; }
    .hero-section { padding-top: 6.8rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-primary, .btn-ghost { width: 100%; }
    .studio-btn-group { flex-direction: column; }
    .studio-btn-group button { width: 100%; }
    .author-links a { width: 100%; text-align: center; }
    .poster-illustration-box { height: 160px; }
    .hero-date-card { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .date-divider { display: none; }
    .art-btn, .theme-btn { flex: 1 1 45%; justify-content: center; }
}
