/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #ffd23f;
    --gold-accent: #ffd700;
    --red-accent: #dc2626;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --text-muted: #888888;
    --gradient-primary: linear-gradient(135deg, #ff6b35, #f7931e, #ffd23f);
    --gradient-hiphop: linear-gradient(45deg, #ff6b35, #dc2626, #ffd700);
    --gradient-dark: linear-gradient(135deg, #0a0a0a, #1a1a1a, #2a2a2a);
    --gradient-text: linear-gradient(135deg, #ff6b35, #f7931e, #ffd23f, #ffffff);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.2);
    --shadow-artistic: 0 20px 60px rgba(255, 107, 53, 0.15);
    --border-radius: 20px;
    --border-radius-artistic: 30px;
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-slow: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.denial-logo-link {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.denial-logo-link:hover {
    transform: scale(1.05);
}

.denial-logo {
    height: 25px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.denial-logo:hover {
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.4));
}

.nav-logo h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 25% 85%, rgba(255, 211, 63, 0.12) 0%, transparent 60%);
    z-index: -1;
    animation: artisticFloat 25s ease-in-out infinite;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 107, 53, 0.05) 50%, transparent 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    padding: 0 40px;
    position: relative;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.8;
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
    text-shadow: 
        0 0 40px rgba(255, 107, 53, 0.4),
        0 0 80px rgba(220, 38, 38, 0.2);
    position: relative;
}

.title-line {
    display: block;
    background: var(--gradient-hiphop);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: artisticSlideIn 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    transform-origin: left center;
}

.title-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 4px;
    height: 100%;
    background: var(--gradient-hiphop);
    border-radius: 2px;
    opacity: 0;
    animation: artisticLine 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.title-line:nth-child(2)::before {
    animation-delay: 0.6s;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.7;
    animation: artisticSlideIn 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.6s both;
    max-width: 700px;
    position: relative;
    padding-left: 20px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60%;
    background: var(--gradient-hiphop);
    border-radius: 1px;
    opacity: 0.6;
}

.hero-tagline {
    margin-bottom: 3rem;
    animation: artisticSlideIn 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.8s both;
}

.tagline-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    padding: 12px 24px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 30px;
    background: rgba(255, 107, 53, 0.08);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.tagline-text:hover {
    border-color: rgba(255, 107, 53, 0.6);
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: artisticSlideIn 1.5s cubic-bezier(0.23, 1, 0.32, 1) 1s both;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-artistic);
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: var(--gradient-hiphop);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 107, 53, 0.6);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 1);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 300px;
    border-radius: var(--border-radius-artistic);
    overflow: hidden;
    box-shadow: var(--shadow-artistic);
    border: 2px solid rgba(255, 107, 53, 0.2);
    z-index: 10;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-artistic);
    overflow: hidden;
    z-index: 11;
}

.hero-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius-artistic);
    position: relative;
    z-index: 12;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(220, 38, 38, 0.1));
    pointer-events: none;
    border-radius: var(--border-radius-artistic);
}

.floating-elements {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: artisticRotate 20s linear infinite;
}

.floating-element {
    position: absolute;
    font-size: 4rem;
    animation: artisticFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.4));
    transition: var(--transition);
    background: var(--gradient-hiphop);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-element:hover {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.6));
}

.element-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.element-2 {
    top: 5%;
    right: 15%;
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 15%;
    left: 5%;
    animation-delay: 3s;
}

.element-4 {
    bottom: 5%;
    right: 5%;
    animation-delay: 4.5s;
}

.artistic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
}

.artistic-line {
    position: absolute;
    background: var(--gradient-hiphop);
    border-radius: 2px;
    opacity: 0.3;
    z-index: 16;
}

.line-1 {
    width: 2px;
    height: 100px;
    top: 20%;
    left: 30%;
    animation: artisticLine 2s ease-in-out infinite;
}

.line-2 {
    width: 80px;
    height: 2px;
    top: 60%;
    right: 25%;
    animation: artisticLine 2s ease-in-out infinite 0.5s;
}

.line-3 {
    width: 2px;
    height: 60px;
    bottom: 30%;
    left: 60%;
    animation: artisticLine 2s ease-in-out infinite 1s;
}

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

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--gradient-primary);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

/* Music Section */
.music-section {
    padding: 120px 0;
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.music-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(220, 38, 38, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
    z-index: 0;
}

.music-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(255, 107, 53, 0.02) 25%, transparent 50%),
        linear-gradient(-45deg, transparent 0%, rgba(220, 38, 38, 0.02) 25%, transparent 50%);
    z-index: 0;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 6rem;
    background: var(--gradient-hiphop);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.video-container, .spotify-container {
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
    transform: translateY(0);
    transition: var(--transition);
}

.video-container:hover, .spotify-container:hover {
    transform: translateY(-10px);
}

.video-title, .spotify-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
    position: relative;
    padding-left: 20px;
}

.video-title::before, .spotify-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--gradient-hiphop);
    border-radius: 2px;
}

.video-wrapper, .spotify-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--border-radius-artistic);
    overflow: hidden;
    box-shadow: var(--shadow-artistic);
    transition: var(--transition);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.video-wrapper:hover, .spotify-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 80px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.video-wrapper iframe, .spotify-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.spotify-wrapper iframe {
    height: 352px;
}

.spotify-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.spotify-overlay.interactive {
    pointer-events: auto;
}

.spotify-profile-overlay {
    position: absolute;
    top: 21px;
    left: 22px;
    width: 155px;
    height: 155px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.spotify-profile-overlay:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.04) 0%, transparent 60%);
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(30deg, transparent 0%, rgba(255, 107, 53, 0.02) 30%, transparent 60%),
        linear-gradient(-30deg, transparent 0%, rgba(255, 215, 0, 0.02) 30%, transparent 60%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-description {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.02em;
    position: relative;
    padding-left: 20px;
}

.about-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-hiphop);
    border-radius: 2px;
    opacity: 0.6;
}

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

.stat {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--dark-secondary);
    border-radius: var(--border-radius-artistic);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.15), transparent);
    transition: left 0.6s ease;
}

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
}

.stat h3 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-hiphop);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat p {
    color: var(--text-gray);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-photo-container {
    width: 300px;
    height: 300px;
    border-radius: var(--border-radius-artistic);
    overflow: hidden;
    box-shadow: var(--shadow-artistic);
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
    position: relative;
}

.artist-photo-container:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.artist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.artist-photo-container:hover .artist-photo {
    transform: scale(1.05);
}

/* Services Hero Section */
.services-hero {
    padding: 150px 0 100px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.services-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    background: var(--gradient-hiphop);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.services-hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    font-weight: 300;
    letter-spacing: 0.02em;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
    z-index: 0;
}

.services-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.services-form-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-form {
    background: var(--dark-secondary);
    padding: 3rem;
    border-radius: var(--border-radius-artistic);
    border: 2px solid rgba(255, 107, 53, 0.1);
    box-shadow: var(--shadow-artistic);
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.service-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 1.5rem;
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.service-option:hover {
    border-color: rgba(255, 107, 53, 0.6);
    background: rgba(255, 107, 53, 0.1);
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-option input[type="radio"]:checked + .option-text {
    color: var(--primary-color);
    font-weight: 600;
}

.service-option:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.15);
    box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.3);
}

.option-text {
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.submit-btn {
    width: 100%;
    padding: 1.4rem 2.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #dc2626 100%);
    color: var(--text-light);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(255, 107, 53, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #ff7a45 0%, #ffa726 50%, #ef4444 100%);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 5px 15px rgba(255, 107, 53, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Production Page Styles */
.production-hero {
    padding: 150px 0 100px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.production-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.production-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.production-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    background: var(--gradient-hiphop);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.production-hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    font-weight: 300;
    letter-spacing: 0.02em;
    max-width: 600px;
    margin: 0 auto;
}

/* Instrumentals Section */
.instrumentals-section {
    padding: 120px 0;
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.instrumentals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
    z-index: 0;
}

.instrumentals-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.media-player-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.media-player {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: var(--border-radius-artistic);
    border: 2px solid rgba(255, 107, 53, 0.1);
    box-shadow: var(--shadow-artistic);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.player-header h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
}

.player-controls {
    display: flex;
    gap: 1rem;
}

.control-btn {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    background: var(--dark-secondary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.control-btn:hover {
    border-color: rgba(255, 107, 53, 0.6);
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.05);
}

.play-btn {
    background: var(--gradient-hiphop);
    border-color: var(--primary-color);
    width: 55px;
    height: 55px;
}

.play-btn:hover {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.track-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.track-artwork {
    width: 80px;
    height: 80px;
    background: var(--gradient-hiphop);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    box-shadow: var(--shadow-artistic);
}

.track-details h4 {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.track-details p {
    color: var(--text-gray);
    font-size: 1rem;
}

.progress-container {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    width: 35%;
    height: 100%;
    background: var(--gradient-hiphop);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.time-display {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.volume-container i {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.volume-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.volume-fill {
    width: 70%;
    height: 100%;
    background: var(--gradient-hiphop);
    border-radius: 2px;
}

.track-list {
    background: var(--dark-bg);
    border-radius: var(--border-radius-artistic);
    border: 2px solid rgba(255, 107, 53, 0.1);
    overflow: hidden;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.track-item:last-child {
    border-bottom: none;
}

.track-item:hover {
    background: rgba(255, 107, 53, 0.05);
}

.track-item.active {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--primary-color);
}

.track-number {
    width: 30px;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
}

.track-info-mini {
    flex: 1;
    margin-left: 1rem;
}

.track-info-mini h5 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.track-info-mini p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.track-duration {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Production Inquiry Section */
.production-inquiry-section {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.production-inquiry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
    z-index: 0;
}

.inquiry-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.production-form-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.production-form {
    background: var(--dark-secondary);
    padding: 3rem;
    border-radius: var(--border-radius-artistic);
    border: 2px solid rgba(255, 107, 53, 0.1);
    box-shadow: var(--shadow-artistic);
    backdrop-filter: blur(10px);
}

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

.project-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 1.5rem;
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.project-option:hover {
    border-color: rgba(255, 107, 53, 0.6);
    background: rgba(255, 107, 53, 0.1);
}

.project-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.project-option input[type="radio"]:checked + .option-text {
    color: var(--primary-color);
    font-weight: 600;
}

.project-option:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.15);
    box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.3);
}

.production-form select {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    cursor: pointer;
}

.production-form select:focus {
    outline: none;
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.production-form select option {
    background: var(--dark-bg);
    color: var(--text-light);
}

/* Merch Page Styles */
.merch-hero {
    padding: 150px 0 100px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.merch-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.merch-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.merch-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    background: var(--gradient-hiphop);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.merch-hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    font-weight: 300;
    letter-spacing: 0.02em;
    max-width: 600px;
    margin: 0 auto;
}

/* Store Section */
.store-section {
    padding: 120px 0;
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.store-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
    z-index: 0;
}

.store-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.store-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.store-embed {
    background: var(--dark-bg);
    border-radius: var(--border-radius-artistic);
    border: 2px solid rgba(255, 107, 53, 0.1);
    box-shadow: var(--shadow-artistic);
    backdrop-filter: blur(10px);
    overflow: hidden;
    min-height: 600px;
}

/* Quickstore iframe */
.store-iframe {
    width: 100%;
    height: 900px;
    border: none;
    display: block;
    background: #111;
}

/* Store Loading States */
.store-loading, .store-error {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 3rem;
}

.loading-content, .error-content {
    text-align: center;
    color: var(--text-gray);
}

.loading-content i, .error-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    opacity: 0.7;
}

.loading-content h3, .error-content h3 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.loading-content p, .error-content p {
    font-size: 1.2rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.product-card {
    background: var(--dark-secondary);
    border-radius: var(--border-radius-artistic);
    border: 2px solid rgba(255, 107, 53, 0.1);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-artistic);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-hiphop);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
    opacity: 0.7;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-variants {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-price {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.view-product-btn, .buy-now-btn {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.view-product-btn {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.view-product-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.6);
}

.buy-now-btn {
    background: var(--gradient-hiphop);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark-bg);
    border-radius: var(--border-radius-artistic);
    border: 2px solid rgba(255, 107, 53, 0.2);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-artistic);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
}

.modal-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: var(--dark-secondary);
    border-radius: 15px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.modal-details {
    text-align: center;
}

.modal-price {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modal-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-buy-btn {
    padding: 1rem 2rem;
    background: var(--gradient-hiphop);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.modal-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Merch Features */
.merch-features {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.merch-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
    z-index: 0;
}

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

.feature-card {
    background: var(--dark-secondary);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-artistic);
    border: 2px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-artistic);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-hiphop);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    box-shadow: var(--shadow-artistic);
}

.feature-card h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Peaches Rain Effect */
.peaches-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.peach {
    position: absolute;
    color: #ff6b35;
    font-size: 24px;
    font-weight: bold;
    opacity: 0.6;
    animation: fall linear infinite;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
    user-select: none;
}

@keyframes fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Social Section */
.social-section {
    padding: 120px 0;
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
    z-index: 0;
}

.social-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(60deg, transparent 0%, rgba(255, 107, 53, 0.02) 25%, transparent 50%),
        linear-gradient(-60deg, transparent 0%, rgba(255, 215, 0, 0.02) 25%, transparent 50%);
    z-index: 0;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--dark-bg);
    border-radius: var(--border-radius-artistic);
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
    border: 2px solid rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.social-link i {
    font-size: 1.8rem;
    width: 35px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.social-link span {
    position: relative;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.social-link.instagram i { color: #E4405F; }
.social-link.spotify i { color: #1DB954; }
.social-link.apple i { color: #007AFF; }
.social-link.tiktok i { color: #ffffff; }
.social-link.soundcloud i { color: #FF5500; }
.social-link.youtube i { color: #FF0000; }
.social-link.discord i { color: #5865F2; }
.social-link.digital i { color: #ff6b35; }

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-social a {
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    color: var(--text-gray);
}

/* Ensure footer content respects container on small screens */
.footer .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Clamp any rogue overflow on small screens */
.store-section .container, .merch-features .container, .footer .container { overflow: hidden; }

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes backgroundShift {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-10px) translateY(-5px);
    }
    50% {
        transform: translateX(5px) translateY(-10px);
    }
    75% {
        transform: translateX(-5px) translateY(5px);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes artisticSlideIn {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes artisticLine {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes artisticFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

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

@keyframes artisticFloat {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-15px) translateY(-10px) rotate(5deg);
    }
    50% {
        transform: translateX(10px) translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateX(-5px) translateY(-10px) rotate(-5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        height: 64px;
    }
    
    .nav-logo {
        gap: 10px;
    }
    
    .denial-logo {
        height: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .tagline-text {
        padding: 10px 16px;
        font-size: 0.85rem;
        line-height: 1.4;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
        border-radius: 30px;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .merch-hero,
    .services-hero,
    .production-hero {
        padding: 120px 0 70px;
    }
    
    .store-section,
    .services-section,
    .music-section,
    .about-section,
    .production-inquiry-section,
    .merch-features,
    .social-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 3rem;
        margin-bottom: 3.5rem;
    }
    
    .store-embed {
        padding: 8px;
        border-radius: 16px;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .video-wrapper iframe, .spotify-wrapper iframe {
        height: 250px;
    }

    /* Hide Spotify overlay image on mobile to avoid layout issues */
    .spotify-overlay { display: none; }
}

/* Store Redirect */
.store-redirect {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    background: linear-gradient(135deg, var(--dark-secondary), var(--dark-tertiary));
    border-radius: var(--border-radius-artistic);
    border: 2px solid rgba(255, 107, 53, 0.2);
    box-shadow: var(--shadow-artistic);
}

.store-redirect-content {
    text-align: center;
    padding: 60px 40px;
    max-width: 500px;
}

.store-redirect-content i.fa-shopping-cart {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 30px;
    display: block;
}

.store-redirect-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.store-redirect-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.store-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--gradient-hiphop);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.store-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    color: var(--text-light);
}

.store-link-btn i {
    font-size: 1rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .floating-elements {
        width: 200px;
        height: 200px;
    }
    
    .floating-element {
        font-size: 2rem;
    }
    
    .tagline-text {
        padding: 8px 14px;
        font-size: 0.8rem;
        line-height: 1.35;
    }
    
    .merch-hero,
    .services-hero,
    .production-hero {
        padding: 100px 0 60px;
    }
    
    .store-section,
    .services-section,
    .music-section,
    .about-section,
    .production-inquiry-section,
    .merch-features,
    .social-section {
        padding: 60px 0;
    }
    
    .store-embed {
        padding: 6px;
        border-radius: 14px;
    }
}
