:root {
    --black: #0D0D0D;
    --dark-grey: #1A1A1A;
    --grey: #808080;
    --soft-grey: #E5E5E5;
    --white: #FFFFFF;
    --dusty-rose: #C89F9C;
    --dusty-rose-dark: #A57C79;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body, html {
    font-family: var(--font-body);
    line-height: 1.8;
    background-color: var(--black);
    color: var(--soft-grey);
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Background Blurs */
.blur-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-size: cover; background-position: center;
    filter: blur(15px) grayscale(40%) brightness(0.8);
    opacity: 0; transition: opacity 2.5s ease-in-out;
    z-index: -3; transform: scale(1.05); /* hide blur edges */
}
.blur-bg.active { opacity: 0.6; }
.cinema-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(13,13,13,0.7), rgba(0,0,0,0.95));
    z-index: -2;
}

/* Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 5; }
.container-sm { max-width: 700px; }
.section { padding: 15vh 0; }
.section-spaced { padding-top: 20vh; padding-bottom: 20vh; }
.mt-3 { margin-top: 1.5rem; }
.mt-5 { margin-top: 5rem; }
.d-block { display: inline-block; width: auto; margin-inline: auto;}
.footer-space { height: 15vh; }

/* Typography */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 500; color: var(--white); }

.dramatic-title {
    font-size: 6.5rem; letter-spacing: -2px; line-height: 1.1; margin-bottom: 40px;
    color: var(--soft-grey); text-shadow: 0 10px 40px rgba(0,0,0,0.9); font-style: italic;
}
.small-drama { font-size: 4.5rem; }
.sub-heading {
    font-size: 2.8rem; color: var(--dusty-rose); margin-bottom: 30px; letter-spacing: 0.5px;
}

.hero-quote {
    font-size: 1.45rem; color: #CCCCCC; max-width: 800px; margin: 0 auto;
    font-weight: 300; line-height: 2.1; padding: 0 20px;
}

/* Scroll indicator */
.scroll-down-cinematic {
    position: absolute; bottom: 5vh; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; color: var(--grey);
    font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase;
}
.scroll-down-cinematic i {
    margin-top: 15px; font-size: 1.2rem;
    animation: slowBounce 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes slowBounce {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(15px); opacity: 1; }
}

/* Music Button */
.music-btn {
    position: fixed; top: 30px; right: 30px; width: 45px; height: 45px;
    border-radius: 50%; background: rgba(0,0,0,0.5); color: var(--grey);
    border: 1px solid var(--grey); display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 100; transition: all 0.5s ease;
}
.music-btn:hover { background: var(--dusty-rose); color: var(--black); border-color: var(--dusty-rose); }
.music-btn i { font-size: 1rem; }

/* Typewriter Section */
.typewriter-box {
    min-height: 250px; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.accent-icon { font-size: 2.5rem; color: var(--dusty-rose); margin-bottom: 40px; opacity: 0.6; }
.typed-text {
    font-family: var(--font-heading); font-size: 2.5rem; color: var(--white); line-height: 1.6;
    font-style: italic; font-weight: 400; text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}
.typed-cursor { opacity: 1; animation: blink 0.7s infinite; color: var(--dusty-rose); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Confession Block */
.has-border-left {
    border-left: 2px solid rgba(255,255,255,0.06); padding-left: 30px;
    margin-left: 5%; position: relative;
}
.has-border-left::before {
    content:''; position: absolute; left: -6px; top: 10px; width:10px; height: 10px;
    background: var(--dusty-rose); border-radius: 50%;
}
.content-block p {
    font-size: 1.3rem; font-weight: 300; color: #BBBBBB; margin-bottom: 25px; line-height: 2;
}

/* Cinematic Gallery */
.cinematic-gallery {
    display: flex; flex-direction: column; gap: 120px;
}
.cine-img { width: 85%; max-width: 650px; position: relative; }
.cine-img.img-down { align-self: flex-end; }

.cine-img img {
    width: 100%; height: auto; filter: grayscale(80%) sepia(10%);
    box-shadow: 0 25px 60px rgba(0,0,0,0.95); border: 1px solid rgba(255,255,255,0.03);
    transition: filter 1.5s ease;
}
.cine-img:hover img { filter: grayscale(20%) sepia(20%); }

.fade-caption {
    font-family: var(--font-heading); font-size: 1.25rem; color: var(--grey); margin-top: 20px; font-style: italic;
    opacity: 0.8;
}

/* Final CTA */
.final-text {
    font-size: 1.35rem; font-weight: 300; color: #AAAAAA; max-width: 700px; margin: 0 auto 25px; line-height: 1.9;
}
.final-action { display: flex; flex-direction: column; align-items: center; gap: 15px; }

.btn-rose, .btn-dark {
    padding: 18px 45px; border-radius: 2px; border: none; font-size: 1.15rem; font-family: var(--font-body);
    font-weight: 400; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: all 0.5s ease;
}
.btn-rose {
    background-color: var(--dusty-rose); color: var(--black); font-weight: 500;
    box-shadow: 0 10px 40px rgba(200, 159, 156, 0.15);
}
.btn-rose:hover { background-color: var(--dusty-rose-dark); box-shadow: 0 15px 50px rgba(200, 159, 156, 0.3); transform: scale(1.03); color: var(--white); }

.btn-dark {
    background-color: transparent; color: var(--grey); border: 1px solid var(--grey); font-size: 1rem;
    padding: 14px 40px;
}
.btn-dark:hover { background-color: rgba(255,255,255,0.05); color: var(--white); border-color: var(--white); letter-spacing: 5px;}

/* Modal Response */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); }
.modal-content {
    margin: 15vh auto; width: 90%; max-width: 550px; position: relative; padding: 60px;
    background: var(--dark-grey); border: 1px solid rgba(255,255,255,0.05); border-radius: 4px; border-top: 4px solid var(--dusty-rose);
    animation: slowFadeIn 0.8s ease; box-shadow: 0 30px 60px rgba(0,0,0,0.95);
}
.close-modal { position: absolute; top: 15px; right: 25px; color: var(--grey); font-size: 30px; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: var(--white); }
#modalMessage img { width: 100%; max-width: 300px; margin-bottom: 30px; opacity: 0.9; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);}
#modalMessage h3 { font-size: 2.5rem; color: var(--white); margin-bottom: 20px; font-style: italic; }
#modalMessage p { font-size: 1.15rem; color: #BBBBBB; font-weight: 300; line-height: 1.8; }

@keyframes slowFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive Media Options */
@media (max-width: 768px) {
    .dramatic-title { font-size: 4rem; }
    .hero-quote { font-size: 1.15rem; padding: 0 10px; }
    .small-drama { font-size: 3.2rem; }
    .sub-heading { font-size: 2.2rem; }
    .typed-text { font-size: 1.6rem; }
    .cine-img { width: 100%; }
    .section-spaced { padding-top: 10vh; padding-bottom: 10vh; }
    .has-border-left { margin-left: 0; border-left: none; padding-left: 0; }
    .has-border-left::before { display: none; }
    .content-block p { text-align: left; font-size: 1.1rem;}
    .final-text { font-size: 1.15rem; padding: 0 15px;}
    .modal-content { padding: 40px 25px; }
}
