>
/* Font Classes */
.pacifico-regular { font-family: "Pacifico", cursive; font-weight: 400; font-style: normal; }
.sacramento-regular { font-family: "Sacramento", cursive; font-weight: 400; font-style: normal; }
.young-serif-regular { font-family: "Young Serif", serif; font-weight: 400; font-style: normal; }
.monoton-regular { font-family: "Monoton", sans-serif; font-weight: 400; font-style: normal; }
.black-ops-one-regular { font-family: "Black Ops One", system-ui; font-weight: 400; font-style: normal; }
.nixie-one-regular { font-family: "Nixie One", system-ui; font-weight: 400; font-style: normal; }
.playwrite-gb-j-guides-regular { font-family: "Playwrite GB J Guides", cursive; font-weight: 400; font-style: normal; }
.playwrite-gb-j-guides-regular-italic { font-family: "Playwrite GB J Guides", cursive; font-weight: 400; font-style: italic; }
.playwrite-ie-regular { font-family: "Playwrite IE", cursive; font-optical-sizing: auto; font-weight: 300; font-style: normal; }

/* Root Colors */
:root {
    --light-yellow: #FFF8D2;   /* page background */
    --dark-brown: #4B2E2E;     /* primary text */
    --soft-brown: #7B5E57;     /* secondary text */
    --coral-gloss: #FF6B61;    /* buttons / accents */
    --coral-gloss-hover: #FF8C7F;
    --card-bg: rgba(255,235,200,0.2);  /* glass card overlay */
}

/* Body */
body {
    background-color: var(--light-yellow);
    color: var(--dark-brown);
    font-family: "Young Serif", serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Headings & Typography */
.header-font { font-family: "Black Ops One", system-ui; color: var(--dark-brown); }
.font-serif { font-family: "Young Serif", serif; }
.font-cursive { font-family: "Playwrite GB J Guides", cursive; font-size: 3rem; line-height: 1; color: var(--coral-gloss); }
.font-display { font-family: "Monoton", sans-serif; color: var(--coral-gloss); }

/* Initial Loader */
#loader {
    position: fixed;
    inset: 0;
    background: var(--light-yellow);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease;
}

.logo-draw {
    font-family: "Pacifico", cursive;
    font-size: 5rem;
    opacity: 0;
    animation: fadeInOut 3s forwards;
    color: var(--coral-gloss);
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(10px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* Hero Particles */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.4;
}

/* Section Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Magazine Images */
.magazine-img {
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(75,46,46,0.1);
}
.magazine-img img {
    transition: transform 3s cubic-bezier(0.19, 1, 0.22, 1);
}
.magazine-img:hover img { transform: scale(1.08); }

/* Navigation */
nav.scrolled { 
    background: rgba(255,248,210,0.95); 
    padding: 1rem 3rem !important; 
    border-bottom: 1px solid rgba(75,46,46,0.1); 
}

/* Buttons */
.btn-editorial {
    padding: 0.8rem 2rem;
    border: 1px solid var(--coral-gloss);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    transition: all 0.4s ease;
    cursor: pointer;
    background: var(--coral-gloss);
    color: var(--light-yellow);
    position: relative;
    overflow: hidden;
    font-family: "Sacramento", cursive;
}
.btn-editorial:hover { 
    background: var(--coral-gloss-hover); 
    color: var(--light-yellow);
}

/* Glass Cards */
.glass-card {
    background: var(--card-bg);
    border: 1px solid rgba(75,46,46,0.2);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}
.glass-card:hover { 
    background: rgba(255,203,180,0.3); 
    transform: translateY(-5px);
}

/* Pages */
.page { display: none; }
.page.active { display: block; animation: pageFade 0.8s ease; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

/* Modals */
#modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(75,46,46,0.2);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
.modal-content {
    background: var(--light-yellow);
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 4rem;
    font-family: "Young Serif", serif;
}

/* Scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }