


/* Global Styles & Variables */
:root {
    --bg-color: #120d19;
    --primary-color: #c832ff;
    --secondary-color: #ff38a1;
    --text-color: #e0e0e0;
    --text-color-dark: #a09cb0;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: #21182e;
    --font-family-heading: 'Cinzel', serif;
    --font-family-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family-body);
    line-height: 1.6;
}

.page-content {
    position: relative;
    z-index: 2;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-shadow: 0 0 8px var(--primary-color), 0 0 12px var(--secondary-color);
    animation: pulse-glow 2.5s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from {
        text-shadow: 0 0 8px var(--primary-color), 0 0 12px var(--secondary-color), 0 0 16px var(--primary-color);
    }
    to {
        text-shadow: 0 0 12px var(--primary-color), 0 0 20px var(--secondary-color), 0 0 28px var(--primary-color);
    }
}

a, button, .talent-card {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Header */
.main-header {
    background: rgba(18, 13, 25, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    font-family: var(--font-family-heading);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease-out;
}

.main-nav a:hover {
    color: white;
}
.main-nav a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icon {
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--primary-color), 0 0 25px var(--secondary-color);
}

.cta-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--primary-color), 0 0 40px var(--primary-color);
    }
    to {
        text-shadow: 0 0 20px #fff, 0 0 30px var(--secondary-color), 0 0 40px var(--secondary-color);
    }
}

/* Sections General */
section {
    padding: 5rem 0;
}

/* Talent & Team Section */
.talent-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.talent-link, .team-link {
    text-decoration: none;
    color: inherit;
}

.card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    padding: 1.5rem;
}

.card.interactive-glow::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 10px;
    background: radial-gradient(
        circle 250px at var(--mouse-x) var(--mouse-y),
        rgba(200, 50, 255, 0.25),
        transparent 80%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card.interactive-glow > * {
    position: relative;
    z-index: 2;
}


.talent-card {
    padding: 0;
    text-align: center;
}

.talent-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    margin: 1.5rem auto 0;
    border: 4px solid var(--border-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.talent-link:hover .talent-card img,
.team-link:hover .talent-card img {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.talent-card h3 {
    margin: 1.5rem 0 0.5rem;
    color: white;
    font-size: 1.5rem;
}

.talent-card p {
    color: var(--text-color-dark);
    font-weight: 600;
    padding-bottom: 1.5rem;
}

/* Service Section */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card p {
    color: var(--text-color);
}

/* About Section */
.about-section .container {
    max-width: 800px;
    text-align: center;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section .container {
    max-width: 600px;
    text-align: center;
}

.contact-section iframe {
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(200, 50, 255, 0.2);
    border: 1px solid var(--border-color);
}

.contact-email {
    font-size: 1.1rem;
    color: var(--text-color-dark);
}

.contact-email a {
    color: var(--primary-color);
    text-decoration: none; /* remove default underline */
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.contact-email a:hover {
    color: white;
    border-bottom-color: var(--secondary-color);
    text-shadow: 0 0 8px var(--secondary-color);
}

/* Footer */
.main-footer {
    background: rgba(18, 13, 25, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.main-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-color-dark);
    font-family: var(--font-family-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: white;
}

/* Music Player Styles */
.music-player {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 0 15px rgba(200, 50, 255, 0.1);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.player-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-btn:disabled {
    color: var(--text-color-dark);
    cursor: not-allowed;
}

.player-btn:not(:disabled):hover svg {
    transform: scale(1.1);
    color: var(--primary-color);
}

.player-btn svg {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.progress-container, .volume-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color-dark);
}

.progress-container {
    flex-grow: 1;
}

.track-info {
    text-align: center;
    color: var(--text-color-dark);
    font-size: 0.9rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 1.2rem;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
    transition: opacity .2s;
    cursor: pointer;
}

.slider:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    box-shadow: 0 0 8px var(--primary-color);
    transition: background .2s;
}

.slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    box-shadow: 0 0 8px var(--primary-color);
    transition: background .2s;
}

#volume-slider {
    max-width: 100px;
}

.volume-icon {
    width: 24px;
    height: 24px;
    color: var(--text-color-dark);
}


/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 6px;
    border: 2px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
}

::-webkit-scrollbar-button {
    height: 12px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-color 0.2s ease;
}

::-webkit-scrollbar-button:hover {
    background-color: var(--border-color);
}

/* Up arrow button */
::-webkit-scrollbar-button:vertical:decrement {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c832ff"><path d="M7.41 15.41 12 10.83l4.59 4.58L18 14l-6-6-6 6z"/></svg>');
}

/* Down arrow button */
::-webkit-scrollbar-button:vertical:increment {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff38a1"><path d="M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6z"/></svg>');
}


/* Animations */
.animated {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Spooky Background Animations */
.spooky-animations-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.stars-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url('https://www.transparenttextures.com/patterns/stardust.png') repeat;
    z-index: 0;
}

.glowing-moon {
    position: fixed;
    /* Slightly smaller size to reduce overwhelming brightness */
    width: 95vh;
    height: 95vh;
    top: 8vh;
    left: -52vh;
    /* Textured background instead of bright gradient */
    background-color: #666; /* Base color for texture blending */
    background-image: url('https://www.solarsystemscope.com/textures/download/2k_moon.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    border-radius: 50%;
    /* Subtler glow to reveal texture and reduce screen brightness */
    box-shadow: 
        /* Inner shadow for 3D effect */
        inset 0 0 120px 40px rgba(0, 0, 0, 0.75),
        /* Faint outer glow */
        0 0 35px 12px rgba(255, 255, 255, 0.1),
        0 0 150px 65px rgba(200, 50, 255, 0.2),
        0 0 280px 110px rgba(18, 13, 25, 0.9);
    z-index: 1;
    animation: pulse-moon-glow 6s ease-in-out infinite alternate;
}

.cityscape {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25vh;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 250'%3E%3Cdefs%3E%3ClinearGradient id='cityGrad' x1='0.5' y1='0' x2='0.5' y2='1'%3E%3Cstop offset='0%25' stop-color='%231a1224'/%3E%3Cstop offset='100%25' stop-color='%230d0912'/%3E%3C/linearGradient%3E%3Cfilter id='windowGlow' x='-50%25' y='-50%25' width='200%25' height='200%25'%3E%3CfeGaussianBlur in='SourceGraphic' stdDeviation='1.5' result='blur'/%3E%3C/filter%3E%3C/defs%3E%3Cpath fill='url(%23cityGrad)' d='M-5,250 V132 c31,-12 33,22 75,20 V250 H-5 M90,250 V100 c20,-15 35,20 60,10 V250 H90 M160,250 V145 c40,15 42,-20 80,-15 V250 H160 M260,250 V120 c20,10 25,-20 50,-20 V250 H260 M330,250 V170 c30,8 32,-15 60,-12 V250 H330 M410,250 V80 c40,-25 50,30 90,20 V250 H410 M520,250 V160 c30,10 30,-20 60,-15 V250 H520 M600,250 V100 c25,-10 30,20 55,15 V250 H600 M670,250 V150 c30,12 35,-15 65,-10 V250 H670 M750,250 V90 c30,-15 40,25 70,15 V250 H750 M840,250 V180 c30,5 30,-15 50,-15 V250 H840 M910,250 V130 c40,-10 50,20 80,10 V250 H910 M1010,250 V110 c30,10 30,-20 60,-15 V250 H1010 M1090,250 V160 c30,-10 35,15 60,10 V250 H1090 M1170,250 V125 c30,5 35,-15 50,-10 V250 H1170'/%3E%3Crect x='100' y='120' width='2' height='4' fill='%23ff38a1' filter='url(%23windowGlow)' opacity='0.8' /%3E%3Crect x='125' y='180' width='2' height='4' fill='%23c832ff' filter='url(%23windowGlow)' opacity='0.8' /%3E%3Crect x='200' y='160' width='2' height='4' fill='%23ff38a1' filter='url(%23windowGlow)' opacity='0.8' /%3E%3Crect x='280' y='130' width='2' height='4' fill='%23c832ff' filter='url(%23windowGlow)' opacity='0.8' /%3E%3Crect x='450' y='100' width='2' height='4' fill='%23c832ff' filter='url(%23windowGlow)' opacity='0.8' /%3E%3Crect x='480' y='190' width='2' height='4' fill='%23ff38a1' filter='url(%23windowGlow)' opacity='0.8' /%3E%3Crect x='620' y='150' width='2' height='4' fill='%23c832ff' filter='url(%23windowGlow)' opacity='0.8' /%3E%3Crect x='780' y='110' width='2' height='4' fill='%23ff38a1' filter='url(%23windowGlow)' opacity='0.8' /%3E%3Crect x='950' y='150' width='2' height='4' fill='%23c832ff' filter='url(%23windowGlow)' opacity='0.8' /%3E%3Crect x='1120' y='180' width='2' height='4' fill='%23ff38a1' filter='url(%23windowGlow)' opacity='0.8' /%3E%3Crect x='1190' y='140' width='2' height='4' fill='%23c832ff' filter='url(%23windowGlow)' opacity='0.8' /%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: 2;
}


@keyframes pulse-moon-glow {
    from {
        transform: scale(1);
        box-shadow: 
            inset 0 0 120px 40px rgba(0, 0, 0, 0.75),
            0 0 35px 12px rgba(255, 255, 255, 0.1),
            0 0 150px 65px rgba(200, 50, 255, 0.2),
            0 0 280px 110px rgba(18, 13, 25, 0.8);
    }
    to {
        transform: scale(1.02);
        box-shadow: 
            inset 0 0 120px 40px rgba(0, 0, 0, 0.75),
            0 0 50px 18px rgba(255, 255, 255, 0.15),
            0 0 200px 85px rgba(200, 50, 255, 0.3),
            0 0 380px 130px rgba(18, 13, 25, 0.7);
    }
}

.cloud {
    position: absolute;
    background: radial-gradient(circle, rgba(200, 50, 255, 0.05), rgba(18, 13, 25, 0) 70%);
    border-radius: 50%;
    opacity: 0.6;
    animation: float linear infinite;
    z-index: 2;
}

.cloud1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -300px;
    animation-duration: 60s;
    animation-delay: -10s;
}

.cloud2 {
    width: 400px;
    height: 400px;
    top: 30%;
    left: -400px;
    animation-duration: 80s;
}

.cloud3 {
    width: 250px;
    height: 250px;
    top: 60%;
    left: -250px;
    animation-duration: 50s;
    animation-delay: -25s;
}

.cloud4 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 10%;
    animation: float-around 45s ease-in-out infinite;
    animation-delay: -2s;
}

.cloud5 {
    width: 150px;
    height: 150px;
    top: 55%;
    right: 5%;
    animation: float-around 60s ease-in-out infinite alternate;
    animation-delay: -10s;
}

@keyframes float {
    from { transform: translateX(0); }
    to { transform: translateX(calc(100vw + 400px)); }
}

@keyframes float-around {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-25px, 15px) scale(1.05);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

.wisp {
    position: absolute;
    bottom: -50px;
    background: radial-gradient(circle, var(--secondary-color) 0%, rgba(255, 56, 161, 0) 70%);
    border-radius: 50%;
    animation: float-up linear infinite;
    z-index: 3;
}

@keyframes float-up {
    0% {
        transform: translateY(0);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-110vh);
        opacity: 0;
    }
}

.ghost {
    position: absolute;
    bottom: -100px; /* Start off-screen */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cdefs%3E%3CradialGradient id='g' cx='50%25' cy='0%25' r='100%25'%3E%3Cstop offset='0%25' stop-color='rgba(150, 255, 150, 0.8)'/%3E%3Cstop offset='100%25' stop-color='rgba(50, 200, 50, 0.1)'/%3E%3C/radialGradient%3E%3C/defs%3E%3Cpath d='M12 64C12 54 18 52 22 52s6 2 10 2 6-2 10-2 6 2 10 2c4 0 10-2 10-12V22C52 10 42 2 32 2S12 10 12 22v42z' fill='url(%23g)'/%3E%3Ccircle cx='24' cy='30' r='3' fill='black'/%3E%3Ccircle cx='40' cy='30' r='3' fill='black'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
    animation: float-ghost linear infinite;
    filter: blur(1px);
}

@keyframes float-ghost {
    0% {
        transform: translate(0, 0) rotate(-10deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translate(var(--ghost-sway, 20vw), -110vh) rotate(10deg);
        opacity: 0;
    }
}

/* Space Battle Animations */
#space-battle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.ufo {
    position: absolute;
    width: 80px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.ufo-fly-left {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cpath d='M0 20 C 20 0, 80 0, 100 20 L 90 25 C 80 35, 20 35, 10 25 Z' fill='%236c757d'/%3E%3Cpath d='M30 20 C 30 10, 70 10, 70 20 Z' fill='rgba(173, 216, 230, 0.6)'/%3E%3C/svg%3E");
    animation-name: ufo-fly-left-anim;
    left: 100%;
}

.ufo-fly-right {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cpath d='M0 20 C 20 0, 80 0, 100 20 L 90 25 C 80 35, 20 35, 10 25 Z' fill='%236c757d' transform='scale(-1, 1)' transform-origin='center'/%3E%3Cpath d='M30 20 C 30 10, 70 10, 70 20 Z' fill='rgba(173, 216, 230, 0.6)' transform='scale(-1, 1)' transform-origin='center'/%3E%3C/svg%3E");
    animation-name: ufo-fly-right-anim;
    right: 100%;
}

@keyframes ufo-fly-left-anim {
    from { transform: translateX(100px) translateY(0px); }
    50% { transform: translateX(calc(-50vw - 40px)) translateY(20px); }
    to { transform: translateX(calc(-100vw - 100px)) translateY(-10px); }
}

@keyframes ufo-fly-right-anim {
    from { transform: translateX(-100px) translateY(0px); }
    50% { transform: translateX(calc(50vw + 40px)) translateY(-15px); }
    to { transform: translateX(calc(100vw + 100px)) translateY(10px); }
}

.laser {
    position: absolute;
    width: 40px;
    height: 3px;
    border-radius: 2px;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

.laser-shoot-left {
    animation-name: laser-shoot-left-anim;
    left: 100%;
}

.laser-shoot-right {
    animation-name: laser-shoot-right-anim;
    right: 100%;
}

@keyframes laser-shoot-left-anim {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-100vw); opacity: 1; }
}

@keyframes laser-shoot-right-anim {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100vw); opacity: 1; }
}

/* Talent Profile Page Styles */
.talent-profile-section {
    padding: 4rem 0;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

#talent-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 5px solid;
    flex-shrink: 0;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.profile-img-circle {
    border-radius: 50%;
    border-color: var(--primary-color);
    box-shadow: 0 0 25px var(--primary-color);
}

.profile-img-square {
    border-radius: 12px;
    border-color: var(--secondary-color);
    box-shadow: 0 0 25px var(--secondary-color);
}

.profile-title h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-shadow: none;
    animation: none;
    text-align: left;
    color: white; /* Default color for non-gradient text */
}

.profile-name-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.profile-title p {
    font-size: 1.5rem;
    color: var(--text-color-dark);
    font-family: var(--font-family-heading);
    text-transform: uppercase;
}

.profile-body {
    padding: 2.5rem;
}

.profile-body h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.profile-body .showcase-title {
    margin-top: 2.5rem;
}

.profile-body #talent-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.socials-title {
    margin-top: 2.5rem;
}

.profile-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 1rem;
}

.social-link-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: var(--font-family-body);
}

.social-link-item:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(200, 50, 255, 0.4);
}

.back-link-container {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* MOBILE PERFORMANCE OPTIMIZATIONS START */
    .main-header, .main-footer {
        backdrop-filter: none;
        background: rgba(18, 13, 25, 0.9);
    }

    h2, .hero h1 {
        animation: none;
    }

    .hero h1 {
        /* Add back a static glow for the hero title on mobile */
        text-shadow: 0 0 10px #fff, 0 0 20px var(--secondary-color), 0 0 30px var(--secondary-color);
    }
    
    /* Hide some of the less important animated elements */
    .cloud4, .cloud5, .ufo {
        display: none;
    }
    /* MOBILE PERFORMANCE OPTIMIZATIONS END */


    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }

    .glowing-moon {
        width: 110vw;
        height: 110vw;
        top: 18vh;
        left: -75vw;
        /* Disable expensive animation on mobile and use a simpler static shadow */
        animation: none;
        box-shadow: 
            inset 0 0 80px 30px rgba(0, 0, 0, 0.7),
            0 0 25px 8px rgba(255, 255, 255, 0.05),
            0 0 100px 40px rgba(200, 50, 255, 0.1);
    }

    .cityscape {
        height: 15vh;
    }

    .main-header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        height: 70vh;
    }
    
    .main-footer .container {
      flex-direction: column;
      gap: 2rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    /* Profile Responsive */
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    .profile-title h1 {
        font-size: 3rem;
        text-align: center;
    }
    #talent-img {
        width: 200px;
        height: 200px;
    }

    .profile-socials {
        justify-content: center;
    }

    .player-controls {
        justify-content: center;
        gap: 0.5rem;
    }

    .progress-container {
        width: 100%;
        order: 99;
    }
}

@media (max-width: 480px) {
    .glowing-moon {
        width: 140vw;
        height: 140vw;
        top: 22vh;
        left: -105vw;
    }

    .cityscape {
        height: 12vh;
    }
    
    .main-header {
      padding: 0.5rem;
    }
    .header-right {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
      margin-top: 1rem;
    }
    .header-right .cta-button, .header-right .social-icon {
      width: 100%;
      text-align: center;
    }

    .main-nav {
      width: 100%;
      justify-content: space-around;
    }

    h1 {
      font-size: 2.2rem;
    }
    .hero-logo svg {
      width: 100px;
      height: 100px;
    }
}

/* DESKTOP-ONLY STYLES (for devices with fine pointers/hover capability) */
@media (hover: hover) and (pointer: fine) {
    html {
        /* Updated custom cursor for better visual cohesion */
        cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0%' stop-color='%23c832ff' stop-opacity='0.7'/><stop offset='100%' stop-color='%23ff38a1' stop-opacity='0.7'/></linearGradient></defs><path d='M12 2 L6 9 L12 22 L18 9 L12 2 Z' fill='url(%23g)' stroke='%23e0e0e0' stroke-width='1'/><path d='M6 9 L18 9' fill='none' stroke='%23e0e0e0' stroke-width='0.5'/><path d='M12 2 L12 22' fill='none' stroke='%23e0e0e0' stroke-width='0.5'/></svg>") 14 2, auto;
    }

    a, button, .talent-card {
        /* Updated brighter, glowing cursor for interactive elements */
        cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0%' stop-color='%23c832ff' stop-opacity='0.9'/><stop offset='100%' stop-color='%23ff38a1' stop-opacity='0.9'/></linearGradient></defs><path d='M12 2 L6 9 L12 22 L18 9 L12 2 Z' fill='url(%23g)' stroke='%23ffffff' stroke-width='1'/><path d='M6 9 L18 9' fill='none' stroke='%23ffffff' stroke-width='0.5'/><path d='M12 2 L12 22' fill='none' stroke='%23ffffff' stroke-width='0.5'/></svg>") 16 2, auto;
    }

    .card.interactive-glow:hover::before {
        opacity: 1;
    }
}