/* ==========================================================================
   SPOOKY CAT · DREAM Y2K PITCH - CENTERED COLUMN
========================================================================== */

@font-face {
    font-family: 'basiic';
    src: url(https://cinni.net/fonts/basiic.ttf);
}

:root {
    --window-bg: rgba(255, 240, 252, 0.85);
    --text-dark: #4f3862;
    --shadow-color: #bda0d0;
    --shadow-dark: #a57cb0;
    --shadow-soft: #b592c0;
}

/* ---------- BODY & CONTAINER ---------- */
body {
    margin: 0;
    padding: 25px;
    min-height: 100vh;
    background-image: 
        url('https://bettysgraphics.neocities.org/images/backgrounds/stars%202.gif'),
        radial-gradient(circle at 20% 30%, rgba(255, 217, 240, 0.5) 0%, transparent 30%),
        radial-gradient(circle at 90% 70%, rgba(217, 192, 255, 0.4) 0%, transparent 40%),
        linear-gradient(125deg, rgba(255, 230, 245, 0.3) 0%, rgba(229, 213, 255, 0.3) 100%);
    background-repeat: repeat, no-repeat, no-repeat, no-repeat;
    background-attachment: fixed;
    cursor: url('https://whimsical.heartette.net/_files/material/cursors/cursor_anipoint1e.gif'), auto;
    font-family: 'basiic', 'Segoe UI', 'VT-100', monospace;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ---------- GRID ---------- */
.pitch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

/* ---------- HEADER ---------- */
.hero-header {
    grid-column: 1 / -1;
    background: rgba(255, 240, 252, 0.9);
    backdrop-filter: blur(6px);
    border: 3px solid white;
    border-radius: 60px;
    padding: 25px 35px;
    margin-bottom: 15px;
    filter: drop-shadow(8px 8px 0 var(--shadow-color));
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.hero-header h1 {
    font-size: 3.2rem;
    color: #a5486b;
    text-shadow: 3px 3px 0 #ffd0ea, 5px 5px 0 #c79ec0;
    margin: 0;
}

.header-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 1.2rem;
    color: #7a4f8c;
}

.header-details span {
    background: white;
    padding: 8px 18px;
    border-radius: 40px;
    border: 1px solid #d9b0ff;
    filter: drop-shadow(3px 3px 0 var(--shadow-soft));
    display: inline-block;
}

/* ---------- LOGLINE ---------- */
.logline-block {
    grid-column: 1 / -1;
    background: rgba(255, 230, 243, 0.9);
    backdrop-filter: blur(4px);
    border: 2px dashed #d9b0ff;
    border-radius: 50px;
    padding: 20px 30px;
    margin-bottom: 20px;
    filter: drop-shadow(6px 6px 0 var(--shadow-color));
    text-align: center;
}

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

.logline-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #6d4f7a;
    max-width: 800px;
    line-height: 1.5;
}

/* ---------- WINDOWS ---------- */
.window {
    background: var(--window-bg);
    backdrop-filter: blur(4px);
    border: 2px solid white;
    border-radius: 20px 20px 15px 15px;
    margin-bottom: 20px;
    filter: drop-shadow(6px 6px 0 var(--shadow-color));
}

.window-title {
    background: linear-gradient(90deg, #f2b5d4, #d9b0ff, #aac7ff);
    color: white;
    padding: 12px 16px;
    border-radius: 18px 18px 0 0;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 1px 1px 0 #b282b0;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid white;
}

.window-title i { margin-right: 8px; color: #fff3b0; }
.window-close { font-family: Arial; color: #ffe3f0; }

.window-content {
    padding: 20px 18px;
}

/* ---------- STORY ---------- */
.story-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ---------- CHARACTER CARDS ---------- */
.character-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    padding: 18px;
    border: 1px solid white;
    margin-bottom: 16px;
    filter: drop-shadow(4px 4px 0 #cfb0d9);
}

.character-name {
    font-size: 1.4rem;
    color: #a5486b;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dotted #deb0bf;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.character-desc {
    line-height: 1.5;
    color: #5c3d6b;
}

/* ---------- AUTHOR ---------- */
.author-bio {
    background: rgba(255, 225, 240, 0.6);
    border-radius: 30px;
    padding: 16px;
    margin: 15px 0;
    border: 1px solid #f3cedb;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.stat-badge {
    background: white;
    border-radius: 30px;
    padding: 8px 15px;
    border: 1px solid #d9b0ff;
    display: inline-block;
    filter: drop-shadow(3px 3px 0 var(--shadow-color));
}

.stat-number {
    font-size: 1.6rem;
    font-weight: bold;
    color: #b84a6f;
    line-height: 1;
}

.social-row {
    margin: 15px 0;
}

.social-icon {
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9b0ff;
    margin-right: 6px;
    filter: drop-shadow(2px 2px 0 var(--shadow-soft));
}

/* ---------- BUTTONS ---------- */
.pitch-btn {
    display: inline-block;
    background: #f0dbff;
    border: 2px solid white;
    border-radius: 40px;
    padding: 10px 20px;
    margin: 5px 5px 5px 0;
    color: #5b3b70;
    text-decoration: none;
    font-weight: bold;
    filter: drop-shadow(4px 4px 0 var(--shadow-soft));
    cursor: url('https://whimsical.heartette.net/_files/material/cursors/cursor_anipoint1e.gif'), auto;
    transition: all 0.1s ease;
}

.pitch-btn:hover,
.pitch-btn:active {
    transform: translate(2px, 2px);
    filter: drop-shadow(2px 2px 0 var(--shadow-soft));
    background: #ffd0ea;
}

/* ---------- TRAILER ---------- */
.trailer-block {
    background: linear-gradient(145deg, #fbc3d0, #d9b0ff);
    border-radius: 30px;
    padding: 35px 20px;
    text-align: center;
    border: 3px solid white;
    filter: drop-shadow(5px 5px 0 var(--shadow-soft));
}

.play-symbol {
    font-size: 4rem;
    color: white;
    text-shadow: 3px 3px 0 #a57cb0;
}

.trailer-text {
    font-size: 1.8rem;
    color: white;
    text-shadow: 2px 2px 0 #b28096;
}

.trailer-badge {
    margin-top: 10px;
    background: white;
    border-radius: 40px;
    padding: 6px 16px;
    display: inline-block;
    color: #7a4d63;
    filter: drop-shadow(2px 2px 0 var(--shadow-soft));
}

/* ---------- QUOTE ---------- */
.quote-block {
    background: #ffe6f3;
    border-radius: 40px 40px 40px 10px;
    padding: 22px;
    border: 2px solid white;
    filter: drop-shadow(5px 5px 0 #d9b0ff);
    font-style: italic;
    margin-bottom: 20px;
}

.quote-author {
    text-align: right;
    margin-top: 10px;
    color: #9a5580;
}

/* ---------- CONTACT ---------- */
.contact-section {
    margin-top: 25px;
    text-align: center;
}

.mailto-btn {
    background: #d9b0ff;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid white;
    display: inline-block;
    text-decoration: none;
    filter: drop-shadow(4px 4px 0 #a57cb0);
    cursor: url('https://whimsical.heartette.net/_files/material/cursors/cursor_anipoint1e.gif'), auto;
}

.social-tags {
    margin-top: 15px;
    color: #7a4d63;
}

/* ---------- FOOTER ---------- */
.footer {
    text-align: center;
    margin-top: 30px;
    color: #b28096;
    font-size: 0.8rem;
}

/* ---------- UTILITY ---------- */
.mt-15 { margin-top: 15px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .pitch-grid { 
        grid-template-columns: 1fr;
    }
    .hero-header { 
        flex-direction: column; 
        text-align: center;
    }
    .hero-header h1 { 
        font-size: 2.5rem; 
        margin-bottom: 15px;
    }
    .logline-text {
        font-size: 1.1rem;
    }
}