/* ===================================
   VELOCITY SOUND STUDIOS - MAIN STYLESHEET
   Grammy-Caliber AI Music Production
   =================================== */

/* === ROOT VARIABLES === */
:root {
    /* Colors */
    --primary-color: #00d9ff;
    --secondary-color: #ff00ff;
    --accent-color: #ff0080;
    --success-color: #00ff88;
    --warning-color: #ffaa00;
    --background-dark: #0a0a0f;
    --background-darker: #050508;
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Fonts */
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --glow-primary: 0 0 20px rgba(0, 217, 255, 0.5);
    --glow-secondary: 0 0 20px rgba(255, 0, 255, 0.5);
    --glow-accent: 0 0 20px rgba(255, 0, 128, 0.5);
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === STARFIELD BACKGROUND === */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, #0a0a0f, #050508);
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* === GLASS MORPHISM === */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: var(--spacing-md);
    transition: all var(--transition-normal);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
    transform: translateY(-5px);
}

.featured-card {
    border: 2px solid var(--primary-color);
    box-shadow: var(--glow-primary);
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand i {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-link {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white !important;
}

.cta-link::after {
    display: none;
}

.cta-link:hover {
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all var(--transition-normal);
}

/* === CONTAINER === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === SECTION === */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-dark {
    background: rgba(5, 5, 8, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-badge i {
    color: #ffd700;
    font-size: 1.2rem;
    animation: rotate 4s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 2rem;
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-secondary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: var(--glow-primary);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--glow-primary);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* === ABOUT SECTION === */
.about-content {
    margin-bottom: 3rem;
}

.about-main {
    margin-bottom: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.glass-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mission-statement {
    margin-top: 3rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* === STUDIO LOCATIONS === */
.studios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.studio-card {
    position: relative;
    overflow: hidden;
}

.studio-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
}

.opening-soon {
    background: rgba(0, 217, 255, 0.2);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.coming-soon {
    background: rgba(255, 0, 255, 0.2);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.studio-image {
    text-align: center;
    font-size: 5rem;
    color: var(--primary-color);
    margin: 2rem 0;
    animation: float 3s ease-in-out infinite;
}

.studio-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.studio-status {
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-upcoming {
    background: rgba(0, 217, 255, 0.2);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.status-planning {
    background: rgba(255, 0, 255, 0.2);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.studio-description {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.studio-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.studio-cta {
    text-align: center;
}

.studios-info {
    margin-top: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    text-align: center;
}

.info-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-secondary);
}

/* === AI ARTISTS SECTION === */
.genre-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-secondary);
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: var(--glow-primary);
}

.ai-artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.artist-card {
    text-align: center;
    transition: all var(--transition-normal);
}

.artist-card.hidden {
    display: none;
}

.artist-avatar {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
}

.avatar-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    animation: rotateRing 10s linear infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.avatar-ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 3px solid;
    animation: rotateRing 10s linear infinite reverse;
}

.artist-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.artist-genre {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.artist-specialty {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.sample-tracks {
    margin-top: 1.5rem;
}

.sample-tracks h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.track-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all var(--transition-fast);
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.track-play {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.track-play:hover {
    background: var(--primary-color);
    box-shadow: var(--glow-primary);
}

.track-play i {
    color: var(--primary-color);
}

.track-play:hover i {
    color: white;
}

.track-info {
    flex: 1;
    text-align: left;
}

.track-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.track-duration {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* === SERVICES SECTION === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
}

.featured-service {
    border: 2px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.service-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    width: fit-content;
    font-weight: 600;
    color: #ffd700;
}

.service-badge i {
    font-size: 1.2rem;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-process {
    margin: 2rem 0;
}

.process-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.service-features i {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* === TEAM SECTION === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.team-card {
    text-align: center;
}

.team-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    color: #ffd700;
}

.team-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.team-avatar .avatar-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: var(--success-color);
    border-radius: 50%;
    border: 3px solid var(--background-dark);
    animation: pulse 2s infinite;
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-education {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.team-education i {
    color: var(--primary-color);
}

.team-bio {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: left;
}

.team-credentials {
    text-align: left;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
}

.team-credentials h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.credential-item {
    margin-bottom: 1.5rem;
}

.credential-item:last-child {
    margin-bottom: 0;
}

.credential-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.credential-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.credential-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-box {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.stat-box .stat-number {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-box .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.team-website {
    margin: 2rem 0;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.expertise-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* === DIFFERENCE SECTION === */
.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.difference-card {
    position: relative;
}

.difference-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    width: fit-content;
    font-weight: 600;
    color: #ffd700;
}

.difference-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.difference-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.experience-list {
    list-style: none;
    margin: 1rem 0;
}

.experience-list li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.experience-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.mini-stat {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.mini-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.credentials-list {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.credential-badge i {
    font-size: 1.2rem;
}

.team-website-inline {
    margin: 1.5rem 0;
}

.link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.link-button:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--glow-primary);
}

.philosophy-quote {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 0, 255, 0.05);
    border-left: 3px solid var(--secondary-color);
    border-radius: 8px;
    position: relative;
}

.philosophy-quote i {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.philosophy-quote p {
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.capabilities-list {
    list-style: none;
    margin: 1rem 0;
}

.capabilities-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.capabilities-list i {
    color: var(--success-color);
    margin-top: 0.25rem;
}

.difference-cta {
    margin-top: 3rem;
}

.difference-cta .glass-card {
    text-align: center;
    padding: 3rem 2rem;
}

.difference-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.difference-cta p {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

/* === STAR MANAGER SECTION === */
.star-manager-intro {
    margin-bottom: 3rem;
}

.platform-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.platform-logo i {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1rem;
    display: block;
}

.platform-logo h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.platform-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.integration-benefits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    font-weight: 600;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.integration-arrow {
    font-size: 2rem;
    color: var(--secondary-color);
}

.star-manager-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-card .stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card .stat-number {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--text-secondary);
}

.platform-features {
    margin-bottom: 4rem;
}

.features-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.feature-card {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-list i {
    color: var(--success-color);
}

.pricing-section {
    margin-bottom: 4rem;
}

.pricing-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    text-align: center;
    padding: 2rem;
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.pricing-badge.popular {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 2px solid #ffd700;
}

.pricing-badge.best-value {
    background: rgba(255, 0, 255, 0.1);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price {
    margin-bottom: 1rem;
}

.price .amount {
    font-size: 3rem;
    font-family: var(--font-primary);
    color: var(--primary-color);
}

.price .period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.plan-features i {
    color: var(--success-color);
    margin-top: 0.25rem;
}

.pricing-footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 12px;
}

.pricing-footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.pricing-footer i {
    color: var(--success-color);
}

.platform-cta {
    margin-top: 3rem;
}

.platform-cta .glass-card {
    text-align: center;
    padding: 3rem 2rem;
}

.platform-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.platform-cta p {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* === REQUEST FORM === */
.request-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.request-form {
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.request-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.request-info h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-steps {
    list-style: none;
    counter-reset: step-counter;
}

.info-steps li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2.5rem;
}

.info-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.info-steps li strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.info-steps li p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

/* === FEATURED SAMPLES SECTION === */
#featured-samples {
    position: relative;
    overflow: hidden;
}

#featured-samples .section-description {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.featured-tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.track-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.track-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.2),
                0 0 30px rgba(255, 0, 255, 0.1);
    border-color: var(--primary-color);
}

/* Track Artwork */
.track-artwork {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, 
                var(--primary-color) 0%, 
                var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.artwork-placeholder {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all var(--transition-normal);
}

.track-card:hover .artwork-placeholder {
    transform: scale(1.2) rotate(10deg);
    color: rgba(255, 255, 255, 0.5);
}

.genre-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.genre-tag.kpop {
    background: rgba(255, 0, 128, 0.9);
    color: white;
}

.genre-tag.latin {
    background: rgba(255, 170, 0, 0.9);
    color: white;
}

.genre-tag.rnb {
    background: rgba(138, 43, 226, 0.9);
    color: white;
}

/* Track Info */
.track-info {
    padding: 1.5rem;
    flex: 1;
}

.track-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.track-artist {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.track-artist strong {
    color: var(--primary-color);
    font-weight: 600;
}

.track-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.track-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.track-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 12px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 20px;
}

.track-stats i {
    color: var(--primary-color);
}

/* Custom Audio Player */
.audio-player {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.audio-player audio {
    display: none; /* Hide default player */
}

.play-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.play-button:active {
    transform: scale(0.95);
}

.play-button.playing i::before {
    content: "\f04c"; /* Pause icon */
}

.progress-container {
    flex: 1;
    min-width: 0;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                rgba(0, 217, 255, 0.2), 
                rgba(255, 0, 255, 0.2));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: monospace;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.volume-control i {
    color: var(--text-secondary);
    font-size: 1rem;
}

.volume-slider {
    width: 80px;
    height: 4px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* Genre Roadmap */
.genre-roadmap {
    margin: 5rem 0 4rem;
    padding: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
}

.roadmap-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap-title i {
    color: var(--warning-color);
    margin-right: 0.5rem;
}

.roadmap-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.genre-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.genre-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all var(--transition-normal);
}

.genre-badge.coming-soon {
    position: relative;
    overflow: hidden;
}

.genre-badge.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(0, 217, 255, 0.3), 
                transparent);
    animation: slide 3s infinite;
}

@keyframes slide {
    to { left: 100%; }
}

.genre-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.3);
    background: rgba(0, 217, 255, 0.2);
}

.genre-badge i {
    font-size: 1.1rem;
}

/* Samples CTA */
.samples-cta {
    text-align: center;
    padding: 3rem 0 0;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Featured Samples */
@media (max-width: 768px) {
    .featured-tracks-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .track-title {
        font-size: 1.3rem;
    }

    .audio-player {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .play-button {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .volume-control {
        width: 100%;
        justify-content: center;
    }

    .volume-slider {
        flex: 1;
        max-width: 200px;
    }

    .genre-roadmap {
        padding: 2rem 1.5rem;
    }

    .roadmap-title {
        font-size: 1.5rem;
    }

    .genre-badge {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .cta-text {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .track-stats {
        flex-direction: column;
    }

    .track-stats span {
        width: 100%;
        justify-content: center;
    }
}

/* === FOOTER === */
.footer {
    background: var(--background-darker);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: var(--glow-primary);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.footer-tagline {
    margin-top: 0.5rem;
    color: #ffd700;
    font-weight: 600;
}

.footer-tagline i {
    color: #ffd700;
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    box-shadow: var(--glow-primary);
    transform: translateY(-5px);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: left var(--transition-normal);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .studios-grid {
        grid-template-columns: 1fr;
    }
    
    .request-form-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FEATURED SAMPLES SECTION STYLES
   =================================== */

/* Featured Tracks Grid */
.featured-tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.featured-track-card {
    position: relative;
    padding: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.featured-track-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4);
}

/* Track Badge */
.track-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff0080, #ff00ff);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.5);
}

.track-badge i {
    animation: pulse 2s infinite;
}

/* Track Artwork */
.track-artwork {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.artwork-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

.artwork-placeholder i {
    animation: float 3s ease-in-out infinite;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.featured-track-card:hover .play-overlay {
    opacity: 1;
}

.play-btn-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
}

.play-btn-large:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.7);
}

.play-btn-large i {
    margin-left: 3px; /* Center play icon */
}

/* Track Info */
.track-info-detailed {
    padding: 2rem;
}

.track-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.track-artist {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.track-genre {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.track-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.track-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.track-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.track-stats i {
    color: var(--primary-color);
}

/* Custom Audio Player */
.audio-player-container {
    padding: 0 2rem 2rem;
}

.custom-audio {
    display: none; /* Hide native player */
}

.custom-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--primary-color);
}

.play-pause-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.play-pause-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-primary);
}

.play-pause-btn i {
    margin-left: 2px; /* Center play icon */
}

.play-pause-btn.playing i {
    margin-left: 0; /* Reset for pause icon */
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

.time-display {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    white-space: nowrap;
}

.volume-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.volume-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--glow-primary);
}

/* Genre Expansion Section */
.genre-expansion-section {
    margin-bottom: 3rem;
}

.expansion-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.expansion-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.genre-expansion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.genre-category {
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.genre-category:hover {
    border-color: var(--primary-color);
    background: rgba(0, 217, 255, 0.1);
    transform: translateY(-5px);
}

.genre-category h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.genre-category h4 i {
    font-size: 1.3rem;
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.genre-tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--secondary-color);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    transition: all var(--transition-normal);
}

.genre-tag:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.genre-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warning-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.genre-status i {
    animation: pulse 2s infinite;
}

.expansion-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.cta-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-text strong {
    color: var(--primary-color);
}

/* Samples CTA */
.samples-cta {
    text-align: center;
}

.samples-cta .glass-card {
    padding: 3rem 2rem;
}

.samples-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.samples-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .studios-grid {
        grid-template-columns: 1fr;
    }
    
    .request-form-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .team-grid,
    .services-grid,
    .difference-grid,
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .integration-benefits {
        flex-direction: column;
    }
    
    .integration-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* ===================================
   ENHANCED MOBILE OPTIMIZATION
   =================================== */

/* === MOBILE FIRST - EXTRA SMALL DEVICES (320px - 480px) === */
@media (max-width: 480px) {
    /* Base font size reduction for small screens */
    html {
        font-size: 14px;
    }
    
    /* Container padding */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero section */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Section headers */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Navigation - mobile menu */
    .nav-menu {
        padding: 1rem;
    }
    
    .nav-menu li {
        margin-bottom: 0.5rem;
    }
    
    .nav-link {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    /* Glass cards */
    .glass-card {
        padding: 1.5rem;
    }
    
    /* Featured tracks */
    .track-title {
        font-size: 1.2rem;
    }
    
    .track-genre {
        font-size: 0.85rem;
    }
    
    .track-description {
        font-size: 0.9rem;
    }
    
    /* Audio players */
    .custom-player {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .play-pause-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .time-display {
        font-size: 0.8rem;
    }
    
    /* Testimonials */
    .glass-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* FAQ Section */
    .glass-card h4 {
        font-size: 1rem;
    }
    
    /* Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem; /* Prevents zoom on iOS */
    }
    
    /* Tables */
    table {
        font-size: 0.85rem;
    }
    
    table th,
    table td {
        padding: 0.5rem;
    }
    
    /* Chat widget */
    .chat-placeholder {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .chat-placeholder i {
        font-size: 1.4rem;
    }
    
    .chat-placeholder-text {
        display: none; /* Hide on very small screens */
    }
}

/* === SMALL MOBILE DEVICES (481px - 767px) === */
@media (min-width: 481px) and (max-width: 767px) {
    html {
        font-size: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        width: auto;
        min-width: 200px;
    }
}

/* === TABLETS (768px - 991px) === */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Grid adjustments */
    .featured-tracks-grid {
        grid-template-columns: 1fr;
    }
    
    .difference-grid,
    .team-grid,
    .studios-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* === TABLETS - LANDSCAPE & SMALL DESKTOPS (992px - 1199px) === */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .featured-tracks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === MOBILE-SPECIFIC TOUCH OPTIMIZATIONS === */
@media (max-width: 991px) {
    /* Larger touch targets */
    button,
    .btn,
    a.btn,
    .play-button,
    .play-pause-btn {
        min-height: 44px; /* iOS recommended minimum */
        min-width: 44px;
    }
    
    /* Hover states disabled on touch devices */
    .glass-card:hover {
        transform: none;
    }
    
    /* Prevent text selection on buttons */
    button,
    .btn,
    .nav-link {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }
    
    /* Improve scroll performance */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Stack grids vertically on mobile */
    [style*="display: grid"],
    [style*="display:grid"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Responsive typography */
    h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
    h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
    h3 { font-size: clamp(1.2rem, 3vw, 2rem); }
    h4 { font-size: clamp(1rem, 2.5vw, 1.5rem); }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    .section {
        overflow-x: hidden;
    }
    
    /* Full-width elements on mobile */
    .section-header {
        text-align: center;
        padding: 0 1rem;
    }
    
    .section-subtitle {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* Navigation mobile improvements */
    .nav {
        padding: 1rem;
    }
    
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.3s ease;
        padding: 5rem 2rem 2rem;
        overflow-y: auto;
        z-index: 1000;
        border-left: 1px solid rgba(0, 217, 255, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1.1rem;
    }
    
    /* Mobile overlay when menu is open */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
    }
    
    /* Service cards stack */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials mobile */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats grid mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    /* Membership cards stack */
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    /* Team cards mobile */
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Form improvements */
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group {
        width: 100%;
    }
    
    input,
    select,
    textarea {
        font-size: 16px !important; /* Prevents iOS zoom */
        border-radius: 8px;
    }
    
    /* Back to top button mobile */
    .back-to-top {
        bottom: 80px; /* Account for chat widget */
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Pricing tables mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    /* Comparison table scroll */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
        font-size: 0.85rem;
    }
    
    /* AI Studio features mobile */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Sync process mobile */
    .sync-process-grid {
        grid-template-columns: 1fr;
    }
    
    /* Modal improvements */
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 1rem;
    }
    
    /* Improve readability */
    p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Badge and tag sizing */
    .badge,
    .tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Icon sizing */
    .icon {
        font-size: 2rem;
    }
    
    /* Image responsiveness */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Video embeds */
    iframe,
    video {
        max-width: 100%;
        height: auto;
    }
}

/* === LANDSCAPE MODE OPTIMIZATION === */
@media (max-height: 600px) and (orientation: landscape) {
    /* Reduce vertical spacing in landscape */
    .section {
        padding: 3rem 0;
    }
    
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
    
    /* Compact navigation */
    .nav {
        padding: 0.5rem 0;
    }
    
    /* Reduce modal heights */
    .modal-content {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* === PRINT STYLES === */
@media print {
    .nav,
    .chat-placeholder,
    .chat-placeholder-text,
    .back-to-top,
    .starfield,
    video,
    audio {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .glass-card {
        border: 1px solid #ccc;
        background: white;
        page-break-inside: avoid;
    }
    
    a {
        text-decoration: underline;
        color: blue;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* === HIGH DPI / RETINA DISPLAYS === */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Sharper borders and shadows for retina */
    .glass-card {
        border-width: 0.5px;
    }
    
    .btn {
        border-width: 0.5px;
    }
}

/* === REDUCED MOTION FOR ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .star {
        animation: none;
    }
    
    .gradient-text {
        animation: none;
    }
}

/* === DARK MODE SUPPORT (if system preference) === */
@media (prefers-color-scheme: dark) {
    /* Already optimized for dark mode by default */
}

/* === LIGHT MODE OVERRIDE (if needed) === */
@media (prefers-color-scheme: light) {
    /* Keep dark theme regardless */
    body {
        background-color: var(--background-dark);
        color: var(--text-primary);
    }
}