/* --- IMPORTS & CORE SETUP --- */
@import url('https://cdn.cursors-4u.net/cursors/animated/hot-pink-glitter-pointer-b0d43ff0-32.css');

/* Define your brand colors */
:root {
    --brand-pink: #ff1493;
    --brand-plum: #4a0e4e;
    --brand-orange: #ff8c00;
    --brand-gold: #d4af37;
}

/* --- INTERACTIVE EFFECTS --- */
button, .read-more, a {
    transition: transform 0.2s ease-in-out;
}

button:hover, .read-more:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #fff9fc;
}

::-webkit-scrollbar-thumb {
    background-color: var(--brand-pink);
    border: 3px solid #fff9fc;
    border-radius: 6px;
}

/* Ensure the Pinterest board is responsive inside the card */
span[data-pin-nopin=""] {
    width: 100% !important;
}

/* --- SIDEBAR TITLES --- */
.LunarLog-sidebar h2 {
    color: white;
}

/* --- EDITORIAL TYPOGRAPHY --- */
h1, h2, h3 {
    font-family: 'Georgia', serif;
    color: var(--brand-plum);
}

p {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

/* --- LOGO SIZING --- */
.logo-img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --- QUIZ POP-UP WINDOW STYLE --- */
.quiz-card {
    background-color: #ffffff;
    border: 2px solid var(--brand-plum); 
    border-radius: 8px;
    padding: 20px;
    box-shadow: 5px 5px 0px var(--brand-pink);
    margin: 20px auto;
    max-width: 500px;
    text-align: center;
}

.quiz-card .read-more {
    display: block;
    margin: 10px auto;
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #999;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
}

.quiz-card .read-more:hover {
    background-color: var(--brand-pink);
    color: white;
}

/* --- NAVIGATION MENU --- */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background: #ffffff;
    border-top: 1px solid var(--brand-pink);
    border-bottom: 2px solid var(--brand-gold);
    margin-bottom: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--brand-plum);
    font-family: 'Georgia', serif;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--brand-pink);
    text-decoration: underline;
}

.issue-date {
    background-color: var(--brand-gold);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-style: normal;
    text-transform: uppercase;
}

footer {
    text-align: center;
    padding: 40px;
    font-size: 14px;
    color: var(--brand-plum);
    border-top: 1px solid var(--brand-gold);
    margin-top: 40px;
}

/* --- THE MAXIMALIST PINK OVERLOAD --- */
.maximalist-card {
    background: linear-gradient(135deg, #ff1493, #ff69b4, #da70d6);
    color: white;
    padding: 40px;
    border: 5px double #ffffff;
    box-shadow: 0 0 20px #ff1493, 0 0 40px #ff69b4;
    text-align: center;
    font-family: 'Comic Sans MS', cursive; /* The peak Y2K ironic/nostalgic choice */
    margin: 30px 0;
}

.maximalist-card h1 { color: #ffffff; text-shadow: 2px 2px #4a0e4e; }


.radio-card {
    position: sticky;
    top: 20px;
    z-index: 100;
}