@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Shadows+Into+Light&family=Roboto:wght@300;400;500&family=Bebas+Neue&family=Special+Elite&display=swap');

:root {
    --primary: #cf193f;
    --secondary: #0056a6;
    --dark: #1a1a1a;
    --darker: #0a0a0a;
    --light: #e8e3d5;
    --lighter: #f5f2e8;
    --text-light: #e8e3d5;
    --text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    --transition: 0.3s ease;
}

/* ============ SCROLLBARS ============ */
/* Hide main scrollbar */
html::-webkit-scrollbar { display: none; }
html { scrollbar-width: none; -ms-overflow-style: none; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: rgba(10, 10, 10, 0.8); border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #cf193f; border-radius: 10px; border: 2px solid rgba(10, 10, 10, 0.8); }
::-webkit-scrollbar-thumb:hover { background: #0056a6; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto', sans-serif;
    background: #0a0f1a;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Audiowide', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--light);
    text-shadow: var(--text-shadow);
}

/* ============ NAVIGATION ============ */
.main-nav {
    position: fixed; top: 0; width: 100%; background: transparent !important;
    backdrop-filter: none !important; z-index: 1000; padding: 0 !important;
    transition: transform 0.3s ease; border: none !important;
}
.main-nav.hide-nav { transform: translateY(-100%); }
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
    font-size: 1.4rem; letter-spacing: 2px; color: #0056a6;
    text-shadow: 0 0 15px rgba(0, 86, 166, 0.8); font-family: 'Audiowide', sans-serif;
}
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-link {
    color: var(--text-light); text-decoration: none; font-size: 0.9rem;
    transition: var(--transition); position: relative; letter-spacing: 1px;
    font-family: 'Audiowide', sans-serif;
}
.nav-link:hover { color: #cf193f; }
.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: #cf193f; transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }
.hamburger-btn {
    background: rgba(207, 25, 63, 0.2); color: var(--text-light); padding: 0.5rem 0.8rem;
    border-radius: 4px; font-size: 1.1rem; border: 1px solid #cf193f; cursor: pointer;
    display: none; align-items: center; justify-content: center;
}

/* ============ SIDEBAR ============ */
.sidebar-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(5px); z-index: 9998;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.sidebar-overlay.active { opacity: 1; pointer-events: all; }
.sidebar-menu {
    position: fixed; top: 0; right: -400px; width: 350px; height: 100%;
    background: rgba(26, 26, 26, 0.95); backdrop-filter: blur(20px);
    border-left: 2px solid rgba(0, 86, 166, 0.3); z-index: 9999; padding: 2rem;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.sidebar-menu.active { right: 0; }
.sidebar-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px solid rgba(0, 86, 166, 0.3);
}
.sidebar-title { font-size: 1.5rem; color: #0056a6; letter-spacing: 2px; font-family: 'Audiowide', sans-serif; }
.close-sidebar {
    background: rgba(0, 86, 166, 0.2); border: 1px solid #0056a6; color: var(--text-light);
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.5rem; cursor: pointer; transition: var(--transition);
}
.close-sidebar:hover { background: #cf193f; transform: rotate(90deg); }
.sidebar-content { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-card {
    display: flex; align-items: center; gap: 1.2rem; padding: 1.2rem;
    background: rgba(0, 86, 166, 0.15); backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 86, 166, 0.3); border-radius: 12px;
    text-decoration: none; color: var(--text-light); transition: all 0.3s ease;
}
.sidebar-card:hover {
    background: rgba(207, 25, 63, 0.25); border-color: #cf193f;
    transform: translateX(5px); box-shadow: 0 5px 20px rgba(207, 25, 63, 0.5);
}
.sidebar-card-icon {
    width: 50px; height: 50px; background: rgba(0, 86, 166, 0.2);
    border: 1px solid #0056a6; border-radius: 10px; display: flex;
    align-items: center; justify-content: center; font-size: 1.5rem; color: #0056a6;
}
.sidebar-card:hover .sidebar-card-icon { background: #cf193f; color: var(--lighter); }

/* ============ HERO SECTION ============ */
.hero {
    position: relative; height: 100vh; display: flex; align-items: center;
    justify-content: flex-start; overflow: hidden;
    background: radial-gradient(ellipse at center, #1a2a1d 0%, #0a0a0a 70%);
}
.hero-media {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: 0;
}
.hero-media-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.hero-overlay {
    display: none;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: left;
    max-width: 600px;
    padding: 2rem 3rem 2rem 6rem;
}
.hero-heading {
    font-family: 'Audiowide', sans-serif; font-size: 5rem; font-weight: 400;
    letter-spacing: 2px; margin-bottom: 2.5rem; color: #cf193f;
    text-shadow: 0 0 30px rgba(207, 25, 63, 0.8), 0 2px 8px rgba(0,0,0,0.9);
    line-height: 1.05;
}
.hero-subheading {
    font-size: 1.6rem; font-weight: 400; margin-bottom: 3rem; color: var(--lighter);
    max-width: 700px; line-height: 1.6; letter-spacing: 1px;
}
.hero-button {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    width: 220px; height: 58px; background: transparent; border: 2px solid #0056a6;
    border-radius: 4px; color: var(--light); font-size: 1.2rem; font-weight: 400;
    letter-spacing: 3px; text-transform: uppercase; cursor: pointer; overflow: hidden;
    transition: var(--transition); text-decoration: none; font-family: 'Audiowide', sans-serif;
}
.hero-button::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: rgba(207, 25, 63, 0.3); transition: 0.5s;
}
.hero-button:hover::before { left: 100%; }
.hero-button:hover {
    transform: translateY(-3px); box-shadow: 0 10px 25px rgba(207, 25, 63, 0.4); border-color: #cf193f;
}
.hero-button span { position: relative; z-index: 1; }
.hero-btn-wrap { display: flex; justify-content: flex-start; }
.hero-button { width: 100%; }

/* ============ CONTENT SECTIONS ============ */
.content-section {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 4rem 0;
}
.dashboard-section { min-height: auto; padding: 3rem 0; }
.section-background {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    background-size: cover; background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}
.section-background.active {
    opacity: 1;
    z-index: 1;
}
.section-media {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
}
/* Unique color fallback per section — shows when image is missing or loading */
#dashboard .section-background    { background-color: #0d1a2e; }
#quick-tasks .section-background   { background-color: #1a0d0d; }
#spiritual .section-background     { background-color: #0d1a12; }
#academic .section-background      { background-color: #0d1220; }
#financial .section-background     { background-color: #1a1200; }
#physical .section-background      { background-color: #1a0a0a; }
#responsibility .section-background { background-color: #0a0a1a; }
.container {
    position: relative; z-index: 2; width: 100%; max-width: 1400px; margin: 0 auto;
    padding: 0 2.5rem; display: flex; flex-direction: column; justify-content: center;
}
.compact-container { padding: 0 2rem; }
.section-title {
    font-size: 3rem; font-weight: 700; text-align: center; margin-bottom: 2rem;
    color: var(--light); text-shadow: 0 0 20px rgba(0, 86, 166, 0.6), var(--text-shadow);
    letter-spacing: 3px; position: relative; padding-bottom: 1rem;
}
.compact-title { font-size: 2.2rem; margin-bottom: 1.5rem; }
.section-title::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 120px; height: 3px; background: #0056a6; border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 86, 166, 0.5);
}

/* ============ DASHBOARD - COMPACT ============ */
.date-selector {
    display: flex; align-items: center; justify-content: center; gap: 0.8rem;
    margin-bottom: 1.5rem; flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    padding: 0.8rem 1.5rem; border-radius: 10px; border: 1px solid rgba(0, 86, 166, 0.3);
}
.date-selector label {
    font-family: 'Audiowide', sans-serif; color: var(--light);
    display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem;
}
.date-input {
    background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(0, 86, 166, 0.5);
    color: var(--text-light); padding: 0.5rem 0.8rem; border-radius: 6px;
    font-family: 'Roboto', sans-serif; font-size: 0.9rem; outline: none; transition: var(--transition);
}
.date-input:focus { border-color: #cf193f; box-shadow: 0 0 10px rgba(207, 25, 63, 0.3); }
.today-btn {
    background: rgba(0, 86, 166, 0.2); border: 1px solid #0056a6; color: var(--text-light);
    padding: 0.5rem 1rem; border-radius: 6px; font-family: 'Audiowide', sans-serif;
    cursor: pointer; transition: var(--transition); font-size: 0.85rem;
}
.today-btn:hover { background: #cf193f; border-color: #cf193f; transform: translateY(-2px); }

.compact-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem; margin-bottom: 1.5rem;
}
.stat-card {
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 86, 166, 0.3); border-radius: 10px;
    padding: 1rem; display: flex; align-items: center; gap: 0.8rem; transition: var(--transition);
}
.stat-card:hover { transform: translateY(-3px); border-color: #cf193f; }
.stat-icon {
    font-size: 1.5rem; color: #0056a6; width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0, 86, 166, 0.1); border-radius: 50%;
}
.stat-card:nth-child(even) .stat-icon { color: #cf193f; background: rgba(207, 25, 63, 0.1); }
.stat-content h3 {
    font-size: 0.75rem; color: rgba(232, 227, 213, 0.7); margin-bottom: 0.2rem;
    font-family: 'Roboto', sans-serif; font-weight: 400;
}
.stat-value {
    font-size: 1.5rem; font-weight: 700; color: var(--light);
    font-family: 'Audiowide', sans-serif; line-height: 1;
}

.compact-charts {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-bottom: 0;
}
.chart-card {
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 86, 166, 0.3); border-radius: 10px; padding: 1rem;
}
.chart-card h3 {
    font-size: 1rem; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem; color: var(--light);
}
.chart-card h3 i { color: #cf193f; }
.chart-card canvas { max-height: 200px; }

/* ============ QUICK TASKS SECTION ============ */
.quick-tasks h3 {
    font-size: 1.3rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.8rem; color: var(--light);
}
.quick-tasks h3 i { color: #0056a6; }
.quick-tasks-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.8rem;
}
.quick-task-item {
    background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px; padding: 0.8rem; display: flex; align-items: center; gap: 0.8rem;
    cursor: pointer; transition: var(--transition);
}
.quick-task-item:hover { background: rgba(255, 255, 255, 0.88); border-color: #0056a6; }
.quick-task-item.completed { border-color: #0056a6; background: rgba(0, 86, 166, 0.15); }
.quick-task-item.completed .qt-name { text-decoration: line-through; opacity: 0.5; color: #333; }
.qt-check {
    width: 20px; height: 20px; border: 2px solid #0056a6; border-radius: 4px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.quick-task-item.completed .qt-check { background: #0056a6; }
.qt-name { font-family: 'Audiowide', sans-serif; font-size: 0.85rem; color: #111111; }
.qt-points { margin-left: auto; font-size: 0.75rem; color: #cf193f; font-family: 'Audiowide', sans-serif; }

/* ============ GLASS TASK CARDS ============ */
.tasks-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem; width: 100%;
}
.glass-card {
    background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%); border-radius: 12px;
    padding: 1.5rem; border: 2px solid rgba(0, 86, 166, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); transition: var(--transition);
}
.glass-card:nth-child(even) { border-color: rgba(207, 25, 63, 0.3); }
.glass-card:hover {
    transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 86, 166, 0.4);
    background: rgba(255, 255, 255, 0.12);
}
.card-header {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem;
    padding-bottom: 0.8rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.card-header i { font-size: 1.5rem; color: #0056a6; }
.glass-card:nth-child(even) .card-header i { color: #cf193f; }
.card-header h3 { margin: 0; font-size: 1.2rem; font-family: 'Audiowide', sans-serif; }
.task-list { display: flex; flex-direction: column; gap: 0.6rem; }
.task-item {
    display: flex; align-items: center; gap: 0.8rem; padding: 0.7rem;
    border-radius: 8px; cursor: pointer; transition: var(--transition);
    background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(8px);
}
.task-item:hover { background: rgba(255, 255, 255, 0.88); }
.task-item input[type="checkbox"] { display: none; }
.checkmark {
    width: 22px; height: 22px; border: 2px solid #0056a6; border-radius: 4px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: var(--transition); position: relative; background: rgba(255,255,255,0.6);
}
.glass-card:nth-child(even) .checkmark { border-color: #cf193f; }
.task-item input[type="checkbox"]:checked + .checkmark { background: #0056a6; border-color: #0056a6; }
.glass-card:nth-child(even) .task-item input[type="checkbox"]:checked + .checkmark { background: #cf193f; border-color: #cf193f; }
.checkmark::after {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: white; font-size: 12px; opacity: 0; transform: scale(0); transition: var(--transition);
}
.task-item input[type="checkbox"]:checked + .checkmark::after { opacity: 1; transform: scale(1); }
.task-info { display: flex; flex-direction: column; flex: 1; }
.task-info strong { font-family: 'Audiowide', sans-serif; font-size: 0.95rem; color: #111111; letter-spacing: 0.5px; }
.task-info span { font-family: 'Shadows Into Light', cursive; font-size: 0.9rem; color: #444444; margin-top: 2px; }
.task-item input[type="checkbox"]:checked ~ .task-info strong { text-decoration: line-through; opacity: 0.5; }

/* ============ REFLECTION TEXTAREAS ============ */
.reflection-container { display: flex; flex-direction: column; gap: 1rem; }
.reflection-item { display: flex; flex-direction: column; gap: 0.4rem; }
.reflection-item label {
    font-family: 'Audiowide', sans-serif; color: var(--light); font-size: 0.9rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.reflection-item label i { color: #cf193f; }
.reflection-textarea {
    width: 100%; min-height: 80px; background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 86, 166, 0.3); border-radius: 8px; padding: 0.8rem;
    color: var(--text-light); font-family: 'Roboto', sans-serif; font-size: 0.9rem;
    resize: vertical; transition: var(--transition); backdrop-filter: blur(10px);
}
.reflection-textarea:focus { outline: none; border-color: #0056a6; box-shadow: 0 0 10px rgba(0, 86, 166, 0.3); }
.reflection-textarea::placeholder { color: rgba(232, 227, 213, 0.4); }
.reflection-footer { text-align: right; margin-top: 0.3rem; }
.auto-save-indicator { font-size: 0.8rem; color: rgba(232, 227, 213, 0.5); font-style: italic; }

/* ============ FOOTER ============ */
/* ============ FOOTER — CINEMATIC ============ */
.footer {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0;
    text-align: center;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cf193f, #0056a6, #cf193f, transparent);
}
.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

/* QUOTE */
.footer-quote-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
}
.footer-quote-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(207,25,63,0.5));
    max-width: 160px;
}
.footer-quote-line:last-child {
    background: linear-gradient(90deg, rgba(207,25,63,0.5), transparent);
}
.footer-quote {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.65rem;
    letter-spacing: 2px;
    line-height: 1.4;
    color: #0056a6;
    text-shadow: 0 0 30px rgba(0,86,166,0.5);
    max-width: 560px;
    margin: 0;
}
.footer-sub-quote {
    font-family: 'Special Elite', cursive;
    font-size: 0.95rem;
    color: rgba(207, 25, 63, 0.75);
    letter-spacing: 1.5px;
    margin: -1rem 0 0;
    font-style: italic;
}

/* SKULL DIVIDER */
.footer-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}
.footer-divider span {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}
.footer-divider i {
    color: rgba(232,227,213,0.25);
    font-size: 0.9rem;
}

/* SOCIAL BUTTONS */
.footer-socials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-social-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    text-decoration: none;
    color: #e8e3d5;
    font-family: 'Audiowide', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.footer-social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(207,25,63,0.15), rgba(0,86,166,0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.footer-social-btn:hover::before { opacity: 1; }
.footer-social-btn:hover {
    border-color: #cf193f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(207,25,63,0.25);
}
.footer-social-btn i {
    font-size: 1.1rem;
    color: #0056a6;
    transition: color 0.3s;
}
.footer-social-btn:hover i { color: #fff; }

/* COPYRIGHT */
.footer-copy {
    font-family: 'Special Elite', cursive;
    font-size: 0.78rem;
    color: rgba(232,227,213,0.25);
    letter-spacing: 1px;
    margin: 0;
}

/* ============ READING PROGRESS BAR ============ */
.reading-progress {
    position: fixed; top: 0; left: 0; height: 3px; background: #cf193f;
    z-index: 9999; transition: width 0.1s ease-out; width: 0%;
}

/* ============ ANIMATIONS ============ */
.fade-in-up {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .hero-heading { font-size: 3.5rem; }
    .section-title { font-size: 2.2rem; }
    .compact-title { font-size: 1.8rem; }
    .compact-stats { grid-template-columns: repeat(2, 1fr); }
    .compact-charts { grid-template-columns: 1fr; }
    .tasks-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hamburger-btn { display: flex; }
}
@media (max-width: 768px) {
    .hero-heading { font-size: 2.5rem; }
    .hero-subheading { font-size: 1.2rem; }
    .section-title { font-size: 1.8rem; }
    .compact-stats { grid-template-columns: 1fr 1fr; }
    .sidebar-menu { width: 300px; right: -350px; }
}
@media (max-width: 576px) {
    .hero-heading { font-size: 2rem; }
    .compact-stats { grid-template-columns: 1fr; }
    .quick-tasks-grid { grid-template-columns: 1fr; }
}

/* Alternating section titles */
.content-section:nth-of-type(2n) .section-title { color: #cf193f; text-shadow: 0 0 20px rgba(207, 25, 63, 0.6), var(--text-shadow); }
.content-section:nth-of-type(2n) .section-title::after { background: #0056a6; }
.content-section:nth-of-type(2n+1) .section-title { color: #0056a6; text-shadow: 0 0 20px rgba(0, 86, 166, 0.6), var(--text-shadow); }
.content-section:nth-of-type(2n+1) .section-title::after { background: #cf193f; }
/* ============ MUSIC PLAYER BUTTON ============ */
#musicBtn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(207, 25, 63, 0.6);
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(12px);
    color: #e8e3d5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* hidden until hovered */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
    overflow: visible;
}
/* show on hover of the button itself */
#musicBtn:hover,
#musicBtn.playing {
    opacity: 1 !important;
    pointer-events: auto !important;
}
#musicBtn:hover {
    border-color: #cf193f;
    background: rgba(207, 25, 63, 0.2);
    box-shadow: 0 0 18px rgba(207, 25, 63, 0.45);
    transform: scale(1.08);
}
#musicBtn.playing {
    border-color: #0056a6;
    box-shadow: 0 0 18px rgba(0, 86, 166, 0.55);
}
#musicBtn.playing:hover {
    border-color: #cf193f;
    box-shadow: 0 0 18px rgba(207, 25, 63, 0.45);
}
#musicBtn svg {
    width: 17px;
    height: 17px;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

/* pulse waves */
.music-waves {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
}
.music-waves .wave {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(0, 86, 166, 0.5);
    opacity: 0;
    transform: scale(1);
}
.music-waves.active .wave {
    animation: musicPulse 2.2s ease-out infinite;
}
.music-waves.active .w1 { animation-delay: 0s; }
.music-waves.active .w2 { animation-delay: 0.75s; }
.music-waves.active .w3 { animation-delay: 1.5s; }
@keyframes musicPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(2.4); opacity: 0;   }
}