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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background: #000;
}

/* Full-screen slideshow container */
[data-render="hero-slideshow"] {
    width: 100vw;
    height: 100vh;
}

/* Slide content styling */
.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Top-left alignment */
.slide-top-left {
    justify-content: flex-start;
    align-items: flex-start;
}

/* Bottom-left alignment */
.slide-bottom-left {
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 3.5rem;
}

/* Slide content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    padding: 2rem;
    max-width: 600px;
    margin: 2rem;
    border-radius: 12px;
}

.hero-content h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: none;
}

.hero-content .subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    text-shadow: none;
}

.hero-content .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: 2px solid transparent;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Slideshow controls */
.slide-controls {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.slide-controls .chevron-btn {
    cursor: pointer;
    padding: 0.5rem;
    user-select: none;
    -webkit-user-select: none;
    transition: transform 0.2s;
}

.slide-controls .chevron-btn:hover {
    transform: scale(1.1);
}

.slide-controls .chevron-btn span {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    transition: color 0.3s;
    user-select: none;
    -webkit-user-select: none;
}

.slide-controls .chevron-btn:hover span {
    color: rgba(255, 255, 255, 1);
}

.slide-controls .dots-container {
    display: flex;
    gap: 0.75rem;
}

.slide-controls .dot {
    cursor: pointer;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    transition: all 0.3s;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.slide-controls .dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.slide-controls .dot.active {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

/* Navigation Trigger Button (Three Dots) */
#nav-trigger {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s;
}

#nav-trigger:hover {
    background: rgba(0, 0, 0, 1);
    transform: scale(1.05);
}

#nav-trigger span {
    display: block;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

/* Music Page Styles */
.music-hero {
    width: 100vw;
    height: 100vh;
    background-image: url('/pub/american-nightmare/asylum/Asylum_American-Nightmare_Mr5@0.5x.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem;
    position: relative;
}

/* Dev version - use relative path */
body.dev-mode .music-hero {
    background-image: url('../pub-bucket/pub/american-nightmare/asylum/Asylum_American-Nightmare_Mr5@0.5x.png');
}

.music-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    background-color: rgba(255, 105, 180, 0.95);
    border-radius: 12px;
    max-width: 600px;
}

.music-hero__content h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: black;
    text-shadow: none;
}

.music-hero__tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    color: black;
    text-shadow: none;
}

.music-bio {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
}

.music-bio__container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.music-bio__image {
    flex: 0 0 300px;
}

.music-bio__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.music-bio__text {
    flex: 1;
}

.music-bio__text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.music-bio__text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #fff;
}

@media (max-width: 768px) {
    .music-hero__content h1 {
        font-size: 2.5rem;
    }
    
    .music-hero__tagline {
        font-size: 1.125rem;
    }
    
    .music-bio__container {
        flex-direction: column;
    }
    
    .music-bio__image {
        flex: 0 0 auto;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Development Page Styles */
.dev-hero {
    width: 100vw;
    height: 100vh;
    background-image: url('/pub/dev/coffee-code_right.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem;
    position: relative;
}

.dev-hero__content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    padding: 2rem;
    background-color: rgba(147, 112, 219, 0.95);
    border-radius: 12px;
    max-width: 600px;
}

.dev-hero__content h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    text-shadow: none;
}

.dev-hero__tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    color: white;
    text-shadow: none;
}

.dev-spacewalk {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
}

.dev-spacewalk__container {
    color: #fff;
}

.dev-spacewalk__container h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #9370db;
}

.dev-spacewalk__intro {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.dev-spacewalk__container p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.dev-spacewalk__links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.dev-skills {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
}

.dev-skills__container {
    color: #fff;
}

.dev-skills__container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.dev-skills__list {
    list-style: none;
    padding: 0;
}

.dev-skills__list li {
    font-size: 1.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333;
}

.dev-skills__list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .dev-hero__content h1 {
        font-size: 2.5rem;
    }
    
    .dev-hero__tagline {
        font-size: 1.125rem;
    }
}

/* Companies Page Styles */
.companies-hero {
    width: 100vw;
    height: 100vh;
    background-image: url('/pub/mood-crate/mc-library/edm_nt_l.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem;
    position: relative;
}

.companies-hero__content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.95);
    border-radius: 12px;
    max-width: 600px;
}

.companies-hero__content h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    text-shadow: none;
}

.companies-hero__tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0.03em;
    color: white;
    text-shadow: none;
}

.company-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-bottom: 1px solid #333;
}

.company-section:last-child {
    border-bottom: none;
}

.company-section__container {
    color: #fff;
}

.company-section__container h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.company-section__subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #9370db;
    font-weight: 500;
}

.company-section__container p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.company-section__products {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.company-section__products li {
    font-size: 1.125rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333;
}

.company-section__products li:last-child {
    border-bottom: none;
}

.company-section__tagline {
    font-style: italic;
    color: #9370db;
    font-size: 1.25rem;
}

.company-section__links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.company-section--featured {
    background: #111;
}

.dark-gift__content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.dark-gift__poster {
    flex: 0 0 300px;
}

.dark-gift__poster img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.dark-gift__text {
    flex: 1;
}

@media (max-width: 768px) {
    .dark-gift__content {
        flex-direction: column;
    }
    
    .dark-gift__poster {
        flex: 0 0 auto;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Contact Page Styles */
.contact-hero {
    width: 100vw;
    height: 60vh;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.contact-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
}

.contact-hero__content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-hero__tagline {
    font-size: clamp(1.125rem, 2.5vw, 1.75rem);
    font-weight: 300;
    letter-spacing: 0.03em;
}

.contact-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    text-align: center;
}

.contact-section__container {
    color: #fff;
}

.contact-section__container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-section__intro {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #ccc;
}

.contact-section__email {
    margin: 3rem 0;
}

.contact-section__email a {
    font-size: 1.5rem;
    color: #9370db;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid #9370db;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s;
}

.contact-section__email a:hover {
    background: #9370db;
    color: #fff;
}

.contact-social {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    text-align: center;
    border-top: 1px solid #333;
}

.contact-social__container {
    color: #fff;
}

.contact-social__container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-social__links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    font-size: 1.125rem;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid #fff;
    border-radius: 8px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .contact-social__links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
    }
}

/* ========================================================================
   FILM PAGE STYLES
   ======================================================================== */

/* Film Hero */
.film-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: white;
    text-align: center;
    padding: 6rem 2rem 4rem;
}

.film-hero__content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.film-hero__tagline {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Film Sections */
.film-section {
    padding: 5rem 2rem;
    background: #fff;
}

.film-section--alt {
    background: #f5f5f5;
}

.film-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.film-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 0.05em;
    color: #222;
}

/* Film Content Layout */
.film-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.film-content--reverse {
    grid-template-columns: 2fr 1fr;
}

.film-content__image {
    width: 100%;
}

.film-content__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.film-content__text {
    color: #333;
}

.film-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #444;
}

.film-content__text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #222;
}

.film-content__text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #222;
}

.film-credits {
    list-style: none;
    margin: 1rem 0 2rem;
}

.film-credits li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    line-height: 1.6;
}

.film-credits li:last-child {
    border-bottom: none;
}

.film-featured {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #222;
}

.film-featured p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.film-note {
    font-size: 0.9375rem;
    color: #666;
    font-style: italic;
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .film-content,
    .film-content--reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .film-content--reverse .film-content__image {
        order: 1;
    }
    
    .film-content--reverse .film-content__text {
        order: 2;
    }
}

@media (max-width: 768px) {
    .film-section {
        padding: 3rem 1.5rem;
    }
    
    .film-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}
