/* Custom styles to complement Tailwind CSS */
@layer utilities {
    .backdrop-blur-xl {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    /* Trademark Symbol Styling */
    .tm-symbol {
        vertical-align: super;
        font-size: 0.9em;
        color: white;
        /* Indigo 600 */
        font-weight: 600;
        margin-left: 2px;
        display: inline-block;
        line-height: 0;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Section fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-visible {
    animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   HERO SLIDER STYLES
   ============================================ */

#heroSlider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
    transform: scale(1);
    transition: opacity 1s ease-in-out;
}

/* .hero-slide.active img {
    filter: blur(0px);
    transform: scale(1);
} */

/* Hero overlay */
.hero-overlay {
    /* background: linear-gradient(120deg, rgba(79, 70, 229, 0.12), rgba(255, 255, 255, 0.2)); */
    z-index: 10;
}

.slider-dot {
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #4F46E5 !important;
    border-color: #4F46E5 !important;
}

/* ============================================
   TRIANGLE & GEOMETRIC THEME UTILITIES
   ============================================ */

/* Triangle Clip Paths */
.triangle-up {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.triangle-down {
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.triangle-diagonal-up {
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
}

.triangle-diagonal-down {
    clip-path: polygon(0% 0%, 100% 10%, 100% 100%, 0% 100%);
}

.triangle-left {
    clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
}

.triangle-right {
    clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
}

/* Triangle frame with indigo border - Enhanced sleek design with premium glow */
.triangle-frame {
    position: relative;
    padding: 3px;
    background: #4F46E5;
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(79, 70, 229, 0.4));
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.3), 0 4px 15px rgba(79, 70, 229, 0.2);
    /* Sharper edges with improved contrast */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.triangle-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: rgba(79, 70, 229, 0.2);
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(8px);
}

.triangle-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.4), 0 0 20px rgba(79, 70, 229, 0.2);
    filter: drop-shadow(0 4px 12px rgba(79, 70, 229, 0.35));
}

.triangle-frame:hover::before {
    opacity: 1;
}

.triangle-frame-featured {
    background: #4F46E5;
    padding: 4px;
    filter: drop-shadow(0 3px 10px rgba(67, 56, 202, 0.35));
}

.triangle-frame-featured:hover {
    box-shadow: 0 15px 35px rgba(67, 56, 202, 0.5), 0 0 25px rgba(67, 56, 202, 0.3);
    filter: drop-shadow(0 5px 15px rgba(67, 56, 202, 0.45));
}

.triangle-frame-inner {
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
    overflow: hidden;
    background: #ffffff;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    /* Sharp edges and improved contrast */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Subtle inner edge highlight using indigo accent */
.triangle-frame-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(79, 70, 229, 0.1);
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.triangle-frame:hover .triangle-frame-inner::before {
    opacity: 1;
}

.triangle-frame-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(79, 70, 229, 0.08);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.triangle-frame:hover .triangle-frame-inner::after {
    opacity: 1;
}

.triangle-frame-featured .triangle-frame-inner {
    background: #4F46E5;
}

.triangle-frame-featured .triangle-frame-inner::before {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Object position for images in triangle masks to keep faces visible */
.triangle-frame-inner img,
.triangle-diagonal-up img,
.triangle-diagonal-down img {
    object-position: center top;
}

/* Indigo accent lines (changed from cyan) */
.indigo-accent-line {
    position: relative;
}

.indigo-accent-line::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 60%;
    background: #4F46E5;
    left: -15px;
    top: 20%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.indigo-accent-line:hover::after {
    opacity: 1;
}

/* Geometric overlays - subtle for white background */
.geometric-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background: transparent;
    pointer-events: none;
}

/* Section divider with triangles - indigo instead of cyan */
.section-divider {
    position: relative;
    height: 1px;
    background: #4F46E5;
    margin: 4rem 0;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    top: -5px;
}

.section-divider::before {
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #4F46E5;
    left: 20%;
}

.section-divider::after {
    border-width: 6px 10px 6px 0;
    border-color: transparent #4F46E5 transparent transparent;
    right: 20%;
}

/* Video thumbnail fallback */
img[src*="maxresdefault"] {
    background: #4F46E5;
}

/* ============================================
   PREMIUM BUTTON HOVER GLOW EFFECTS
   ============================================ */

/* Hero CTA Button */
a[href="contact.html"].bg-indigo-600,
button.bg-indigo-600 {
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

a[href="contact.html"].bg-indigo-600:hover,
button.bg-indigo-600:hover {
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5), 0 0 30px rgba(79, 70, 229, 0.3);
    transform: translateY(-2px) scale(1.02);
}

/* Service Request Buttons */
a.bg-indigo-600.rounded-lg {
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(79, 70, 229, 0.25);
}

a.bg-indigo-600.rounded-lg:hover {
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4), 0 0 20px rgba(79, 70, 229, 0.2);
    transform: translateY(-1px);
}

/* Contact Form Submit Button */
button[type="submit"].bg-indigo-600 {
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

button[type="submit"].bg-indigo-600:hover {
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5), 0 0 30px rgba(79, 70, 229, 0.3);
    transform: translateY(-2px) scale(1.02);
}

/* White button on indigo background */
a.bg-white.text-indigo-600 {
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

a.bg-white.text-indigo-600:hover {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* ============================================
   GLOBAL INDIGO GLOW FOR ALL CARDS
   ============================================ */

/* VALUE PACKAGES / Service Cards */
.bg-white.p-8,
.group.relative.indigo-accent-line {
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.15), 0 4px 15px rgba(79, 70, 229, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bg-white.p-8:hover,
.group.relative.indigo-accent-line:hover {
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.25), 0 8px 25px rgba(79, 70, 229, 0.15);
}

/* CREATORS Section Cards */
#artistsGrid>div {
    box-shadow: 0 0 18px rgba(79, 70, 229, 0.2), 0 4px 12px rgba(79, 70, 229, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#artistsGrid>div:hover {
    box-shadow: 0 0 28px rgba(79, 70, 229, 0.3), 0 8px 20px rgba(79, 70, 229, 0.2);
}

/* Video Cards with triangle frames */
.triangle-frame-inner {
    box-shadow: inset 0 0 15px rgba(79, 70, 229, 0.1);
}

/* ============================================
   MUSIC UNIVERSE REDESIGN
   ============================================ */
:root {
    --bg-void: #ffffff;
    --bg-deep: #ffffff;
    --bg-charcoal: #ffffff;
    --accent: #4F46E5;
    --accent-bright: #4F46E5;
    --accent-glow: rgba(79, 70, 229, 0.25);
    --text-main: #111827;
    --text-muted: #4B5563;
    --text-dim: #6B7280;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.music-body {
    margin: 0;
    background: #ffffff;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1200px, 100% - 2.5rem);
    margin: 0 auto;
}

.section {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.section-header,
.realm-header,
.manifesto {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.section-kicker {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.72rem;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2.4rem, 3.4vw, 3.8rem);
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 64px;
    height: 3px;
    background: #4F46E5;
    border-radius: 999px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.6;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: none;
    filter: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(79, 70, 229, 0.08);
}

.hero-glow {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: transparent;
    mix-blend-mode: normal;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 820px;
    text-align: center;
    padding: 0 1.5rem;
    color: #ffffff;
}

.hero-label {
    text-transform: uppercase;
    letter-spacing: 0.38em;
    font-size: 0.7rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    text-shadow: 0 6px 18px rgba(17, 24, 39, 0.15);
}

.hero-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 76px;
    height: 4px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.85);
}

.hero-subtitle {
    color: rgba(17, 24, 39, 0.72);
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 32px;
    text-shadow: 0 6px 16px rgba(255, 255, 255, 0.35);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 28px;
}

.btn-primary {
    padding: 14px 32px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.45);
}

.btn-ghost {
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: #ffffff;
    transition: border 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.btn-ghost:hover {
    border-color: var(--accent-bright);
    transform: translateY(-2px);
    background: rgba(79, 70, 229, 0.08);
}

.hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(79, 70, 229, 0.25);
    backdrop-filter: none;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.meta-pill {
    background: rgba(79, 70, 229, 0.1);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(79, 70, 229, 0.4);
    background: rgba(79, 70, 229, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-bright);
    border-color: var(--accent-bright);
    transform: scale(1.2);
}

/* Trending */
.section-trending {
    background: #ffffff;
}

.section-trending::before {
    background: rgba(79, 70, 229, 0.08);
}

.scroll-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
}

.scroll-row::-webkit-scrollbar {
    height: 6px;
}

.scroll-row::-webkit-scrollbar-thumb {
    background: rgba(79, 70, 229, 0.35);
    border-radius: 999px;
}

.video-card {
    flex: 0 0 clamp(260px, 40vw, 420px);
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(79, 70, 229, 0.2);
    scroll-snap-align: start;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(17, 24, 39, 0.12);
    border-color: rgba(79, 70, 229, 0.5);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(79, 70, 229, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(79, 70, 229, 0.4);
    position: relative;
}

.play-icon::before {
    content: '';
    position: absolute;
    inset: 16px 18px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: var(--accent);
}

.video-meta {
    padding: 18px 20px 22px;
}

.video-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.video-subtitle {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Sound realms */
.sound-realm {
    background: #ffffff;
}

.realm-1 {
    background: rgba(79, 70, 229, 0.06);
}

.realm-2 {
    background: #ffffff;
}

.realm-3 {
    background: rgba(79, 70, 229, 0.06);
}

.realm-1::before,
.realm-3::before {
    background: linear-gradient(130deg, rgba(79, 70, 229, 0.14) 0%, rgba(79, 70, 229, 0.04) 55%, rgba(79, 70, 229, 0.12) 100%);
    opacity: 0.45;
}

.realm-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.track-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(79, 70, 229, 0.18);
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.06), 0 0 0 rgba(79, 70, 229, 0);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.track-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.12), 0 0 24px rgba(79, 70, 229, 0.18);
    border-color: rgba(79, 70, 229, 0.55);
}

.track-art {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.track-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.track-glow {
    position: absolute;
    inset: 0;
    background: rgba(79, 70, 229, 0.12);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.track-card:hover .track-glow {
    opacity: 1;
}

.track-card:hover .track-art img {
    transform: scale(1.04);
}

.track-info {
    padding: 16px 18px 20px;
}

.track-title {
    font-weight: 700;
    margin-bottom: 4px;
}

.track-subtitle {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Services */
.section-services {
    background: #ffffff;
}

.section-services::before {
    background: rgba(79, 70, 229, 0.08);
}

.services-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 12px 22px rgba(17, 24, 39, 0.08);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 18px 30px rgba(17, 24, 39, 0.12);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 1.2rem;
    margin: 12px 0;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-card.highlight {
    background: #ffffff;
    border-color: rgba(79, 70, 229, 0.5);
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
}

.text-link {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
}

.text-link:hover {
    color: #4338CA;
}

/* Manifesto */
.section-manifesto {
    background: #ffffff;
}

.manifesto {
    padding: 40px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
}

/* Creators */
.section-creators {
    background: #ffffff;
}

.section-creators::before {
    background: rgba(79, 70, 229, 0.08);
}

.creators-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.creator-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(79, 70, 229, 0.2);
    min-height: 320px;
}

.creator-card:hover {
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 18px 30px rgba(17, 24, 39, 0.12);
}

.creator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.creator-card:hover .creator-image img {
    transform: scale(1.05);
}

.creator-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
}

.creator-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.creator-name {
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.creator-role {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.68rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.creator-hover {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.creator-card:hover .creator-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Credits */
.section-credits {
    background: #ffffff;
}

.section-credits::before {
    background: rgba(79, 70, 229, 0.08);
}

.credits-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.credit-card {
    display: grid;
    gap: 20px;
    align-items: center;
    padding: 24px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(79, 70, 229, 0.2);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.credit-card:hover {
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 18px 30px rgba(17, 24, 39, 0.12);
}

.credit-image {
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
}

.credit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.credit-role {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.7rem;
}

.credit-info h3 {
    margin: 8px 0;
    font-size: 1.4rem;
}

.credit-note {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 70px 0 40px;
    color: var(--text-muted);
    border-top: 1px solid rgba(79, 70, 229, 0.15);
}

.footer-top {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: start;
    margin-bottom: 28px;
}

.footer-title {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
}

.footer-links a {
    color: var(--accent);
}

.footer-links a:hover {
    color: #4338CA;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    background: rgba(79, 70, 229, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(79, 70, 229, 0.12);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}

.tm-symbol {
    color: var(--accent);
    vertical-align: super;
    font-size: 0.8em;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}