/* --- Pro Dark Mode Colors & Variables --- */
:root {
    --pure-black: #000000;
    --dark-surface: #161617; /* Apple's specific dark contrast gray */
    --input-surface: #1d1d1f;
    --apple-blue: #0071e3;
    --bright-blue: #2997ff;
    --nav-glass: rgba(0, 0, 0, 0.8);
    --card-shadow: rgba(0, 0, 0, 0.5) 0px 10px 40px 0px;
}

/* Base */
body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: var(--dark-surface); /* CHANGED: Was --pure-black */
    color: #ffffff;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* --- Upgraded Apple Navigation --- */
/* --- Bulletproof Apple Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 48px;
    background: var(--nav-glass);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}



/* Enlarged Logo */
.nav-logo-img {
    height: 35px; /* Increased to compensate for image padding */
    width: auto;
    opacity: 0.66;
    transition: opacity 0.2s ease;
    display: block;
}

.nav-logo-img:hover {
    opacity: 1;
}



.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
}

/* Right Side Icons & Search */
.nav-icon {
    fill: #ffffff;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-icon:hover {
    opacity: 1;
}

.search-wrapper {
    display: flex;
    align-items: center;
}

/* No more absolute positioning. This pushes the icon smoothly. */
.search-input {
    width: 0;
    opacity: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    color: #ffffff;
    font-size: 12px;
    padding: 0;
    margin-right: 0;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-bottom: 1px solid #ffffff;
}

.search-input.active {
    width: 120px;
    opacity: 1;
    padding: 2px 8px;
    margin-right: 10px; /* Smoothly pushes the magnifying glass to the right */
}

/* Typography */
.hero-display { font-size: 56px; font-weight: 600; line-height: 1.07; letter-spacing: -0.28px; margin: 0 0 10px 0; }
.section-heading { font-size: 40px; font-weight: 600; line-height: 1.10; margin: 0 0 20px 0; }
.card-title { font-size: 21px; font-weight: 700; line-height: 1.19; letter-spacing: 0.231px; margin: 0 0 10px 0; }
.body-text { font-size: 17px; font-weight: 400; line-height: 1.47; letter-spacing: -0.374px; margin: 0; color: rgba(255, 255, 255, 0.7); }

/* Layouts - Full Viewport with Snapping */
.section-dark, .section-surface {
    height: 100vh; /* MUST be exactly 100vh for a perfect snap */
    width: 100vw; 
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 20px 20px;
    
    /* The Snap Magic */
    scroll-snap-align: start; /* Aligns the top of the section to the top of the screen */
    scroll-snap-stop: always; /* Forces the scroll wheel to stop at EVERY section, no skipping */
    overflow: hidden; /* Prevents internal scrolling from breaking the main page snap */
}

.section-dark {
    background-color: var(--dark-surface); /* CHANGED: Was --pure-black */
    color: #ffffff;
    position: relative; 
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Forces the video to fill the screen without stretching */
    z-index: 1;
    opacity: 0.5; /* Dims the video so your white text and logo pop */
}

.hero-crt-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2; /* Sits directly on top of the video */
    pointer-events: none; /* Ensures you can still click things underneath if needed */
    background: 
        /* Subtle dark tint to guarantee text legibility */
        rgba(0, 0, 0, 0.4),
        /* CRT Scanlines */
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        /* Subtle phosphor color separation */
        linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03)),
        /* Tactical HUD Grid */
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 100% 4px, 3px 100%, 40px 40px, 40px 40px;
    box-shadow: inset 0 0 120px rgba(0,0,0,0.9); /* Deep cinematic vignette around the edges */
}

.hero-content {
    position: relative;
    z-index: 3; /* Lifts your logo and buttons above the video and CRT filter */
}



.content-max { max-width: 980px; width: 100%; }

/* Grids & Cards */
.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; width: 100%; margin-top: 40px; }
.card-dark { background-color: #272729; border-radius: 12px; padding: 30px; text-align: left; }

/* 50/50 Split Layout for Homepage */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 24px;
    width: 100%;
    margin-top: 20px;
}

/* Collapse to single column on mobile screens */
@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
}

/* Slim Rectangular Cards */
.card-slim {
    background-color: #272729;
    border-radius: 12px;
    padding: 16px 20px; /* Reduced padding for slim profile */
    text-align: left;
    margin-bottom: 12px; /* Tight stacking gap */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s ease;
}

.card-slim:last-child {
    margin-bottom: 0;
}

.card-slim:hover {
    transform: scale(1.01); /* Subtle Apple-style interaction lift */
}

/* Buttons */
.cta-group { display: flex; gap: 15px; justify-content: center; margin-top: 30px; }
.btn-primary { background-color: var(--apple-blue); color: #ffffff; padding: 8px 15px; border-radius: 980px; font-size: 17px; text-decoration: none; border: 1px solid transparent; transition: background-color 0.2s ease; display: inline-block; cursor: pointer; }
.btn-primary:hover { background-color: #0077ED; }
.btn-secondary { background-color: transparent; color: var(--bright-blue); padding: 8px 15px; border-radius: 980px; font-size: 17px; text-decoration: none; border: 1px solid var(--bright-blue); transition: background-color 0.2s ease; display: inline-block; cursor: pointer; }
.btn-secondary:hover { background-color: rgba(41, 151, 255, 0.1); }

/* --- Apple Segmented Control (Tabs) --- */
.apple-tabs {
    display: inline-flex;
    background-color: var(--input-surface);
    border-radius: 12px;
    padding: 4px;
    margin: 0 auto 30px auto;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.tab-btn:hover:not(.active) { color: #ffffff; }

.tab-btn.active {
    background-color: #424245; /* Lighter gray for active state */
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Dark Mode Form Update --- */
.apple-form { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; text-align: left; width: 100%; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
/* Less bright labels for visual hierarchy */
.form-group label { 
    font-size: 17px; 
    font-weight: 600; 
    color: rgba(255, 255, 255, 0.85); /* Slightly muted from pure white */
    letter-spacing: -0.374px; 
}

/* Base input styling */
.apple-form input, .apple-form textarea, .apple-form select { 
    width: 100%; 
    padding: 15px 16px; 
    font-family: inherit; 
    font-size: 17px; 
    border-radius: 11px; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    background-color: var(--input-surface); 
    color: #ffffff; 
    transition: all 0.2s ease; 
    box-sizing: border-box; 
    appearance: none; /* Removes native OS styling on some select boxes */
    -webkit-appearance: none;
}

.apple-form input:focus, .apple-form textarea:focus, .apple-form select:focus { 
    outline: none; 
    border-color: var(--apple-blue); 
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.3); 
}

.apple-form textarea { 
    resize: vertical; 
    min-height: 150px; 
}

/* --- Consistent Placeholder Styling --- */
.apple-form input::placeholder, 
.apple-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35); /* Faded placeholder color */
    opacity: 1; /* Required for Firefox */
}

/* Force Date and Select inputs to look like placeholders until filled */
.apple-form select:invalid,
.apple-form input[type="date"]:invalid {
    color: rgba(255, 255, 255, 0.35);
}

/* Ensure the actual dropdown options remain solid white when clicked */
.apple-form select option {
    color: #ffffff;
    background-color: var(--input-surface);
}
/* Custom Logo Sizing */
.hero-logo {
    max-width: 400px; /* Adjust this number to make it bigger or smaller */
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory; /* Tells the page to strictly snap on the vertical Y axis */
}

/* Override for tall pages (Forms, Long Articles) */
.section-scroll {
    height: auto !important;
    min-height: 100vh;
    scroll-snap-align: none !important;
    overflow-y: visible !important;
    padding-top: 80px; /* Extra padding to clear the fixed navigation */
    padding-bottom: 80px;
}

/* Consistent Form Placeholders */
.apple-form input::placeholder, 
.apple-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    opacity: 1; /* Required for Firefox */
}


/* Custom High-Visibility Checkbox (Refined Apple Style) */
/* We use a stronger selector here to override the main input styles */
.apple-form input[type="checkbox"].apple-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px !important;
    height: 18px !important;
    padding: 0 !important; /* Strips away the bulky 15px padding */
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 4px !important; /* Overrides the 11px roundness */
    cursor: pointer;
    position: relative;
    margin: 0;
    transition: all 0.2s ease;
}

/* Checked State Background */
.apple-form input[type="checkbox"].apple-checkbox:checked {
    background-color: var(--apple-blue) !important;
    border-color: var(--apple-blue) !important;
}

/* The actual checkmark icon (Refined stroke weight) */
.apple-form input[type="checkbox"].apple-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

/* Eyebrow Date Text for Cards */
.card-date {
    font-size: 12px;
    font-weight: 600;
    color: #86868b;
    margin: 0 0 2px 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* --- Profile Picture --- */
.profile-pic {
    display: block;
    width: 200px; 
    height: 200px; 
    border-radius: 50%; /* Forces the perfect circle */
    object-fit: cover; /* Ensures the image doesn't stretch or squash */
    margin: 0 auto 20px auto; /* Centers the image and adds 20px gap below it */
    box-shadow: 0 8px 24px rgba(0,0,0,0.4); /* Soft, premium Apple-style shadow */
    border: 1px solid rgba(255,255,255,0.1); /* Very subtle edge highlight */
}

/* --- Pinterest-Style Masonry Feed --- */
.masonry-grid {
    column-count: 4; /* Upgraded to 4 columns */
    column-gap: 20px;
    width: 100%;
    max-width: 1400px; /* Widened to let 4 columns breathe */
    margin: 0 auto 40px auto;
    padding: 0 20px;
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
    .masonry-grid { column-count: 3; }
}
@media (max-width: 768px) {
    .masonry-grid { column-count: 2; }
}
@media (max-width: 480px) {
    .masonry-grid { column-count: 1; }
}

/* Ensure images/videos stay within columns */
.masonry-item {
    margin-bottom: 20px;
    break-inside: avoid;
    border-radius: 12px;
    overflow: hidden;
    background: #1d1d1f; /* Dark placeholder color */
    min-height: 100px; /* SAFETY NET: Prevents the grid from collapsing if a file is missing */
    transition: transform 0.2s ease;
}

.masonry-item:hover { transform: scale(1.01); }

.masonry-item img, .masonry-item video {
    width: 100%;
    display: block;
}

/* Explicit Video Wrapper Fix */
.video-wrapper { 
    position: relative; 
    cursor: pointer;
    background: #000;
}

/* --- Side-by-Side Story Layout (Fixed) --- */
.story-layout {
    display: flex;
    align-items: flex-start; /* Prevents vertical stretching */
    gap: 60px; /* Increased gap for the wider layout */
    margin-top: 40px;
}

.story-image-wrap {
    flex: 1; 
    /* This ensures the wrapper itself doesn't stretch to the height of the text */
    align-self: flex-start; 
}

.story-text-wrap {
    flex: 3;
    text-align: left;
}

/* Force the circle regardless of container height */
.story-image-wrap .profile-pic {
    width: 100%;
    aspect-ratio: 1 / 1; /* FORCES a perfect square */
    object-fit: cover;   /* Ensures the photo fills the square without squishing */
    border-radius: 50%;  /* Turns that square into a perfect circle */
    height: auto; 
    display: block;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Fix: Stack on Mobile */
@media (max-width: 768px) {
    .story-layout {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .story-text-wrap {
        text-align: center;
    }

    .story-image-wrap .profile-pic {
        width: 160px; /* Locked size for mobile screens */
    }
}

/* --- 3-Column Music Grid --- */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Strictly enforces 3 equal columns */
    gap: 24px;
    width: 100%;
    margin-top: 30px;
}

/* Responsive fallbacks for smaller screens */
@media (max-width: 980px) {
    .grid-3-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
    .grid-3-col { grid-template-columns: 1fr; }
}

/* Clean Wrapper for SoundCloud Visual Players */
.sc-embed-card {
    border-radius: 12px;
    overflow: hidden; /* Clips the iframe to your rounded corners */
    transition: transform 0.2s ease;
    aspect-ratio: 1 / 1; /* Forces the card to be a perfect square */
    width: 100%;
    box-shadow: 0 14px 28px rgba(0,0,0,0.5); /* Deeper shadow for full-image cards */
    background-color: #111; /* Dark fallback while iframe loads */
}

.sc-embed-card:hover {
    transform: scale(1.02);
}

/* Forces the iframe to fill the square */
.sc-embed-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* --- Floating Social Sidebar --- */
.social-sidebar {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 9998; /* Ensures it sits above images but below the top nav */
    
    /* The Glassmorphic Pill */
    background: rgba(30, 30, 32, 0.6);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 14px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.social-icon {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.6); /* Slightly muted standard color */
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slick Hover Effect */
.social-icon:hover {
    color: #ffffff; /* Brightens up */
    transform: scale(1.15); /* Subtle pop */
}

/* --- Mobile Device Adjustment --- */
@media (max-width: 768px) {
    .social-sidebar {
        /* Move from right side to bottom center */
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row; /* Lay them out horizontally */
        padding: 12px 24px;
        gap: 24px;
    }
    
    /* Make sure the main content doesn't get hidden behind the bottom bar */
    .section-scroll, .section-surface, .section-dark {
        padding-bottom: 100px; 
    }
}


/* --- Master Nav Container --- */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    height: 100%;
}

/* --- Left Side: Socials --- */
.nav-socials {
    display: flex;
    gap: 16px;
    align-items: center;
    flex: 1; /* This pushes against the center to keep it in the middle */
    justify-content: flex-start;
}

/* --- Right Side: Invisible Spacer --- */
.nav-right-spacer {
    flex: 1; /* This balances the Left side perfectly */
}

/* --- Dead Center: Links & Search --- */
.nav-links {
    display: flex;
    gap: 30px; /* Identical harmonic distance between EVERY item */
    align-items: center;
    justify-content: center;
    white-space: nowrap; /* Prevents text from breaking onto a new line */
}

/* --- Clean Icon Styling --- */
.nav-logo-img {
    height: 36px; 
    width: auto;
    opacity: 0.6;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: block;
}

.nav-social-icon {
    width: 15px; 
    height: 15px;
    color: #ffffff;
    opacity: 0.15; 
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: flex;
}

.nav-social-icon:hover, .nav-logo-img:hover {
    opacity: 1; 
    transform: scale(1.1); 
}

/* --- SAFETY GUARD FOR SMALL SCREENS --- */
/* If the screen gets too small (like an iPad), this hides the left/right blocks so the main menu never overlaps or breaks again. */
@media (max-width: 1050px) {
    .nav-socials, .nav-right-spacer {
        display: none;
    }
    .nav-container {
        justify-content: center; /* Locks the main menu center when socials are hidden */
    }
}

/* --- Clean Wrapper for Horizontal Mixes --- */
.mix-embed-card {
    border-radius: 12px;
    overflow: hidden; /* Clips the iframe to the rounded corners */
    transition: transform 0.2s ease;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4); 
    background-color: #111; /* Dark fallback while iframe loads */
    line-height: 0; /* CRITICAL: Removes the tiny invisible gap below iframes */
}

.mix-embed-card:hover {
    transform: scale(1.01); /* Subtle Apple-style interaction lift */
}

.mix-embed-card iframe {
    width: 100%;
    display: block;
    border: none;
}

/* --- Intersection Observer Lazy Loading --- */
.lazy-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lazy-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Floating Persistent Audio Player (Apple Pill Design) --- */
.persistent-player {
    position: fixed;
    bottom: 30px; /* Lifts it off the bottom of the screen */
    left: 50%;
    transform: translateX(-50%); /* Perfectly centers the player */
    width: calc(100% - 40px); /* Keeps it from touching the edges on mobile */
    max-width: 800px; /* Restricts maximum width for a premium desktop feel */
    height: 64px; /* Slightly slimmer for the pill aesthetic */
    
    /* The Glassmorphic Pill */
    border-radius: 32px; /* Creates the perfect rounded pill shape */
    background: var(--nav-glass); /* Matches top nav */
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5); /* Deep shadow forces it to "float" */
    z-index: 10000;
    display: flex;
    justify-content: center;
}

.player-container {
    width: 100%;
    padding: 0 24px; /* Breathes nicely inside the rounded edges */
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
}

/* Ensure main content doesn't hide behind the floating player */
.section-scroll, .section-surface, .section-dark {
    padding-bottom: 120px; 
}

.player-left { display: flex; align-items: center; justify-content: flex-start; }
.player-right { display: flex; align-items: center; justify-content: flex-end; }
.player-info { 
    display: flex; 
    align-items: center; /* Centers the single line of text vertically */
}

.player-title { 
    font-size: 11px; 
    font-weight: 500; 
    color: rgba(255, 255, 255, 0.65); 
    margin: 0; 
    max-width: 240px; 
    line-height: 1.3;
    
/* Apple-style Multi-line Truncation */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

    /* Link Styling */
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

/* Hover effect so they know it's clickable */
.player-title:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* You can delete the old .player-artist rule completely */

/* Play Button */
.player-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.player-btn:hover { transform: scale(1.05); }
.player-btn svg { width: 20px; height: 20px; margin-left: 2px; /* optical center fix for play icon */ }

/* Skip/Back Buttons */
.player-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: none;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    padding: 0;
}
.player-btn-secondary:hover { opacity: 1; transform: scale(1.1); }

/* Ensure content doesn't hide behind the new 70px footer */
.section-scroll, .section-surface, .section-dark {
    padding-bottom: 90px; 
}

/* SoundCloud Branding Link */
.player-brand-link {
    font-size: 9px;
    font-weight: 600;
    opacity: 0.4;
    letter-spacing: 1px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.player-brand-link:hover {
    opacity: 0.8; /* Brightens slightly on hover */
}