/* --- Global Styles & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --color-black: #0a0a0a;
    --color-dark-grey: #1a1a1a;
    --color-light-grey: #cccccc;
    --color-white: #f0f0f0;
    --color-purple: #660099;
    --color-pink: #FF00FF;
    --gradient-accent: linear-gradient(90deg, var(--color-purple), var(--color-pink));
    --font-body: 'Roboto', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --texture-velvet: url('../assets/images/red-velvet-texture.png');
    --velvet-strip-width: 400px; /* Doubled width */
}

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

html {
    scroll-behavior: smooth;
}

body {
    /* Base body styles */
    color: var(--color-light-grey);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--color-black); /* Body background is just black */
}

/* --- Velvet Side Strip using Dedicated Div --- */
#velvet-strip {
    position: fixed; /* Fixed position */
    top: 0;
    left: 0;
    bottom: 0; /* Full height */
    width: var(--velvet-strip-width); /* Use variable */
    background-image: var(--texture-velvet);
    background-repeat: no-repeat; /* Don't repeat with cover */
    background-size: cover; /* Zoom effect */
    background-position: left center; /* Position */
    z-index: 0; /* Behind content wrapper */

    /* Fade out mask */
    mask-image: linear-gradient(to right, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);

    /* Needed for the ::after overlay */
    position: relative; /* Use relative for pseudo-element positioning */
}

/* Gradient overlay for the velvet strip */
#velvet-strip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Dark gradient overlay, darker on the right */
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 1; /* Sit on top of the texture */
    pointer-events: none; /* Allow clicks through the overlay */
}
/* --- END: Velvet Side Strip --- */

/* --- Page Wrapper to push content over --- */
.page-wrapper {
    margin-left: var(--velvet-strip-width); /* Push content over */
    position: relative; /* Needed for z-index stacking */
    z-index: 1; /* Ensure content is above strip */
    background-color: var(--color-black); /* Give wrapper a background */
    min-height: 100vh; /* Ensure it covers height */
    display: flex; /* Use flexbox for footer */
    flex-direction: column;
    overflow-x: hidden; /* Prevent horizontal scrollbar if slight overlap */
}
main {
     flex-grow: 1; /* Allow main content to fill space */
     background-color: var(--color-black); /* Ensure main is opaque */
}
/* --- END: Page Wrapper --- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Headings, Text, Links etc. (Keep existing) --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}
h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
p { margin-bottom: 1rem; }
p.lead { font-size: 1.15rem; color: var(--color-light-grey); max-width: 700px; margin-left: auto; margin-right: auto; }
a { color: var(--color-pink); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--color-purple); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Utility Classes (Keep existing) --- */
.text-center { text-align: center; }
.section-padding { padding: 60px 0; }
.accent-gradient-text { background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.subtle-texture-bg { background-color: var(--color-dark-grey); background-image: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.95)), var(--texture-velvet); background-size: cover; }

/* --- Layout Backgrounds (Ensuring Opacity within Main) --- */
/* These ensure sections *within* main have correct backgrounds */
.page-title-section,
.bio-intro,
.featured-merch,
.featured-gear,
.contact-page-content,
.terms-content,
.privacy-content,
.article-content,
.stream-page,
.reviews-list-section,
.merch-page-content,
.section-padding {
    background-color: var(--color-black); /* Default opaque background */
}
.featured-reviews,
.subtle-texture-bg {
    background-color: var(--color-dark-grey);
    background-image: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.95)), var(--texture-velvet);
    background-size: cover;
}
.featured-merch,
.featured-gear {
    background-color: var(--color-dark-grey);
}
.hero {
     background: var(--color-black) url('../assets/images/photo_of_me.jpg') no-repeat center center/cover;
     position: relative;
}
/* --- End Layout Backgrounds --- */

/* --- Header --- */
.main-header {
    background-color: rgba(10, 10, 10, 0.95); /* Slightly more opaque */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000; /* High z-index */
    border-bottom: 1px solid var(--color-purple);
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Reset */
    margin: 0 auto; /* Reset */
}
.logo img {
    max-height: 50px;
    transition: filter 0.3s ease;
}
.logo img:hover {
    filter: drop-shadow(0 0 5px var(--color-pink));
}
.main-nav ul { display: flex; }
.main-nav li { margin-left: 25px; }
.main-nav a {
    color: var(--color-white);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--color-pink);
    border-bottom-color: var(--color-pink);
}

/* --- General Page Title Section --- */
.page-title-section h1 { margin-bottom: 0.5rem; }

/* --- Hero Section (Homepage) --- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    color: var(--color-white);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);