:root {
    --color-sound: #800020;
    /* Burgundy */
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --text-secondary: #a0a0a0;

    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: exclusion;
}

.header-branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left aligned as requested */
    text-decoration: none;
}

.header-branding .brand-sub {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
    opacity: 0.6;
    margin-bottom: -0.2rem;
}

.header-branding .logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-color);
}

.logo:hover {
    opacity: 1;
    /* Override default logo:hover */
}

/* Main Content */
.sound-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 100px;
    /* Space for header */
}

/* Background Blob */
.bg-blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.sound-blob {
    width: 60vw;
    height: 60vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-sound);
    animation: pulse-glow 10s infinite alternate;
}

@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

.content-wrapper {
    text-align: center;
    width: 90%;
    max-width: 1200px;
    z-index: 10;
}

.sound-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(128, 0, 32, 0.5);
    /* Sound Burgundy Shadow */
    line-height: 1.1;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
}

.sound-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

/* Footer */
.sub-footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 4rem;
    position: relative;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-header {
        padding: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .sound-title {
        font-size: clamp(1.8rem, 10vw, 3.5rem);
        word-break: normal;
        overflow-wrap: normal;
        padding: 0 1rem;
    }
}