/* ==========================================================================
   İsmineMelodi — Luxury Design System & Master CSS
   Colors: Deep Black (#0B0B0B) & Warm Ivory (#FAF8F4) with Gold (#D4AF37)
   Dark / Light Theme Toggle Support
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & RESET
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-bg-dark: #0B0B0B;
    --color-bg-dark-alt: #121212;
    --color-card-dark: #181818;
    --color-border-dark: rgba(212, 175, 55, 0.15);
    
    --color-bg-ivory: #FAF8F4;
    --color-bg-ivory-alt: #F4EFE6;
    --color-card-light: #FFFFFF;
    --color-border-light: rgba(212, 175, 55, 0.2);

    /* Gold Gradient Tokens */
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA7C11;
    --gold-gradient: linear-gradient(135deg, #F5E6B3 0%, #D4AF37 50%, #A37714 100%);
    --gold-gradient-text: linear-gradient(135deg, #FFF6D6 0%, #D4AF37 45%, #AA7C11 100%);
    --gold-glow: rgba(212, 175, 55, 0.25);

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Text Colors */
    --text-dark-primary: #FFFFFF;
    --text-dark-secondary: #B0B0B0;
    --text-dark-muted: #707070;

    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-light: 0 15px 35px rgba(212, 175, 55, 0.06), 0 5px 15px rgba(0, 0, 0, 0.03);
    --shadow-gold-glow: 0 0 30px rgba(212, 175, 55, 0.2);

    /* Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography Utilities */
.font-serif {
    font-family: var(--font-serif);
}

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

.gold-gradient-text {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --------------------------------------------------------------------------
   2. BUTTONS & UI COMPONENTS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #0B0B0B;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-primary);
    border: 1.5px solid var(--gold-primary);
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.82rem;
}

.btn-block {
    width: 100%;
}

/* Shimmer animation for primary gold CTA */
.btn.shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    transform: rotate(30deg) translateX(-100%);
    animation: shimmerEffect 4s infinite;
}

@keyframes shimmerEffect {
    0% { transform: rotate(30deg) translateX(-100%); }
    20%, 100% { transform: rotate(30deg) translateX(100%); }
}

/* --------------------------------------------------------------------------
   3. STICKY TRANSPARENT NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-link {
    color: var(--text-dark-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    white-space: nowrap;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   4. HERO SECTION — Full-Viewport Luxury Slider
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

/* ---- SLIDER WRAPPER ---- */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-slides-track {
    position: relative;
    flex: 1;
    min-height: 100vh;
}

/* ---- INDIVIDUAL SLIDE ---- */
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 130px 0 100px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.hero-slide.prev-slide {
    opacity: 0;
    position: absolute;
}

/* Slide backgrounds */
.hero-slide[data-slide="1"] { background: radial-gradient(ellipse 80% 70% at 60% 40%, rgba(212,175,55,0.12) 0%, #0B0B0B 65%); }
.hero-slide[data-slide="2"] { background: radial-gradient(ellipse 80% 70% at 60% 40%, rgba(72,52,153,0.20) 0%, #08060F 65%); }
.hero-slide[data-slide="3"] { background: radial-gradient(ellipse 80% 70% at 60% 40%, rgba(180,60,100,0.18) 0%, #0F0608 65%); }
.hero-slide[data-slide="4"] { background: radial-gradient(ellipse 80% 70% at 60% 40%, rgba(30,120,80,0.18) 0%, #050F09 65%); }

/* Animated gradient accent lines */
.slide-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--slide-accent, #D4AF37) 50%, transparent 100%);
    opacity: 0.3;
}

/* ---- SLIDE CONTENT GRID ---- */
.slide-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* ---- SLIDE TEXT CONTENT ---- */
.slide-content {
    animation: none;
}

.hero-slide.active .slide-content {
    animation: slideContentIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide.active .hero-visual {
    animation: slideVisualIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

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

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

/* ---- SLIDE CATEGORY TAG ---- */
.slide-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-primary);
}

.slide-category-tag .tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
    box-shadow: 0 0 8px var(--gold-primary);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.5); opacity: 0.7; }
}

/* ---- SLIDER CONTROLS ---- */
.slider-controls {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 20;
}

/* Prev / Next arrow buttons */
.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    color: var(--gold-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-arrow:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
    transform: scale(1.08);
}

/* Dot indicators */
.slider-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.slider-dot.active {
    width: 32px;
    background: var(--gold-primary);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

/* Progress bar inside active dot */
.slider-dot.active::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 0%;
    background: rgba(255, 255, 255, 0.5);
    animation: dotProgress var(--slide-duration, 5000ms) linear forwards;
}

@keyframes dotProgress {
    from { width: 0%; }
    to   { width: 100%; }
}

/* ---- GLOBAL PROGRESS BAR (top of slider) ---- */
.slider-progress-bar {
    position: absolute;
    top: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, #F3E5AB, #D4AF37);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
    z-index: 30;
    transition: none;
}

/* ---- SLIDE NUMBER ---- */
.slide-counter {
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 20;
}

.slide-counter-current {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-serif);
    line-height: 1;
}

.slide-counter-sep {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.3);
}

.slide-counter-total {
    font-size: 0.85rem;
    color: rgba(212, 175, 55, 0.5);
    font-family: var(--font-serif);
}


.hero-bg-glow {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, rgba(11, 11, 11, 0) 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold-primary);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 28px;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark-secondary);
    margin-bottom: 40px;
    max-width: 560px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

/* Emotional Quote Below Buttons */
.hero-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 36px;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

/* Trust Strip — Slider'daki yatay rozet satırı */
.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.hero-trust-badge svg {
    flex-shrink: 0;
}

.hero-trust-dot {
    color: rgba(212, 175, 55, 0.4);
    font-size: 0.9rem;
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #FFFFFF;
}

.trust-item svg {
    color: var(--gold-primary);
}

/* Hero Spotify / Apple Music Style Luxury Card */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Floating Gold Glow Behind Card */
.hero-glow-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, rgba(212, 175, 55, 0.08) 50%, transparent 75%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
    animation: floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.8; }
    100% { transform: translate(-50%, -48%) scale(1.1); opacity: 1; }
}

.spotify-hero-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.12);
    transition: var(--transition-smooth);
}

.spotify-hero-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 45px rgba(212, 175, 55, 0.2);
}

.player-album-art {
    position: relative;
    height: 180px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #1C1A14 0%, #2A2412 50%, #0F0E0B 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
}

.album-art-inner {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-platform-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0B0B0B;
    background: var(--gold-gradient);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.player-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.player-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.player-song-title {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: 4px;
    line-height: 1.3;
}

.player-recipient-tag {
    font-size: 0.88rem;
    color: var(--text-dark-secondary);
}

.player-duration {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.player-waveform-container {
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-wave-canvas {
    width: 100%;
    height: 44px;
    display: block;
}

.player-controls-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 4px;
}

.hero-audio-play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: #0B0B0B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
    flex-shrink: 0;
}

.hero-audio-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.player-status-text {
    display: flex;
    flex-direction: column;
}

.status-now-playing {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    font-weight: 600;
}

.status-lyric {
    font-size: 0.95rem;
    color: var(--text-dark-secondary);
    font-style: italic;
}

/* --------------------------------------------------------------------------
   4.5 WHY ISMINEMELODI SECTION (MIXED WARM IVORY & LUXURY BLEND)
   -------------------------------------------------------------------------- */
.section-ivory-dark-mix {
    background: linear-gradient(180deg, #0B0B0B 0%, #161512 35%, #FAF8F4 100%);
    color: var(--text-light-primary);
    padding: 130px 0 100px;
    position: relative;
}

.section-ivory-dark-mix .section-title {
    color: #FFFFFF;
}

.section-ivory-dark-mix .section-subtitle {
    color: var(--text-dark-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 24px;
}

.luxury-card-blend {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 0 20px rgba(212, 175, 55, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.luxury-card-blend:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
    background: #FFFFFF;
}

.why-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #FFFFFF;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.why-icon-svg {
    width: 30px;
    height: 30px;
    transition: var(--transition-smooth);
}

.luxury-card-blend:hover .why-icon-wrap {
    background: #FFFFFF;
    border-color: var(--gold-primary);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
    transform: scale(1.08);
}

.why-card-title {
    font-size: 1.5rem;
    color: var(--text-light-primary);
    margin-bottom: 12px;
    line-height: 1.25;
}

.why-card-desc {
    font-size: 0.98rem;
    color: var(--text-light-secondary);
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   3.5 INSPIRATION GALLERY SECTION (SPOTIFY LUXURY CARDS)
   -------------------------------------------------------------------------- */
.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.spotify-inspiration-card {
    background: rgba(22, 22, 22, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spotify-inspiration-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.18);
}

.insp-cover-art {
    position: relative;
    width: 100%;
    height: 180px; /* Increased size by 20%+ for rich luxury Apple Music feel */
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.25);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.insp-cover-art img.album-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.spotify-inspiration-card:hover .insp-cover-art img.album-cover-img {
    transform: scale(1.06);
}

.insp-emoji {
    font-size: 2.8rem;
}

.insp-duration {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-primary);
    background: rgba(11, 11, 11, 0.75);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.insp-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.insp-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.insp-title {
    font-size: 1.25rem;
    color: #FFFFFF;
    line-height: 1.25;
}

.insp-recipient {
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
    margin-bottom: 12px;
}

.insp-player-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.insp-play-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: #0B0B0B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.insp-play-btn:hover {
    transform: scale(1.08);
}

.insp-wave-canvas {
    width: 100%;
    height: 28px;
    display: block;
}

@media (max-width: 992px) {
    .inspiration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .inspiration-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   5. FEATURED SAMPLES SECTION (WARM IVORY)
   -------------------------------------------------------------------------- */
.section-ivory {
    background-color: var(--color-bg-ivory);
    color: var(--text-light-primary);
    padding: 120px 0;
}

.section-dark {
    background-color: var(--color-bg-dark);
    color: var(--text-dark-primary);
    padding: 120px 0;
}

.section-header {
    margin-bottom: 56px;
}

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

.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-dark .section-badge {
    color: var(--gold-primary);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.2;
}

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

.section-dark .section-subtitle {
    color: var(--text-dark-secondary);
}

/* Sample Category Filter Tabs */
.sample-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light-primary);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--gold-gradient);
    color: #0B0B0B;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

/* Samples Grid & Light Luxury Cards */
.samples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.luxury-card-light {
    background: var(--color-card-light);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.luxury-card-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.12);
    border-color: var(--gold-primary);
}

.sample-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sample-title {
    font-size: 1.5rem;
    color: var(--text-light-primary);
    margin: 6px 0 4px;
}

.sample-recipient {
    font-size: 0.9rem;
    color: var(--text-light-secondary);
    margin-bottom: 16px;
}

.sample-lyric-box {
    background: var(--color-bg-ivory-alt);
    padding: 18px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold-primary);
    margin-bottom: 24px;
}

.sample-lyric {
    font-size: 1.05rem;
    font-style: italic;
    color: #333333;
    line-height: 1.5;
}

.sample-player-box {
    padding-top: 12px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: #0B0B0B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

.play-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.45);
}

.player-timeline {
    flex-grow: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wave-canvas {
    width: 100%;
    height: 36px;
    display: block;
}

.seek-bar {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    margin-top: 4px;
}

.seek-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-primary);
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

.time-display {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light-muted);
    min-width: 80px;
    text-align: right;
}

.hidden {
    display: none !important;
}

/* --------------------------------------------------------------------------
   6. HOW IT WORKS SECTION (DEEP BLACK)
   -------------------------------------------------------------------------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.step-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.step-icon-glow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.98rem;
    color: var(--text-dark-secondary);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   7. OCCASIONS GRID (WARM IVORY)
   -------------------------------------------------------------------------- */
.occasions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.occasion-card {
    background: var(--color-card-light);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
}

.occasion-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.occasion-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--color-bg-ivory-alt);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.occasion-card:hover .occasion-icon {
    background: var(--gold-gradient);
    color: #0B0B0B;
}

.occasion-title {
    font-size: 1.35rem;
    color: var(--text-light-primary);
    margin-bottom: 8px;
}

.occasion-desc {
    font-size: 0.9rem;
    color: var(--text-light-secondary);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. PRICING SECTION (DEEP BLACK - HIGHLIGHTED LUXURY CARD)
   -------------------------------------------------------------------------- */
.pricing-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.pricing-card.pricing-featured {
    border: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-dark), var(--shadow-gold-glow);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.pricing-campaign-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gold-gradient);
    color: #0B0B0B;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.package-name {
    font-size: 2.2rem;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.package-tagline {
    font-size: 1rem;
    color: var(--text-dark-secondary);
    margin-bottom: 32px;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-currency {
    font-size: 1.8rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.price-amount {
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.price-old {
    font-size: 1.4rem;
    color: var(--text-dark-muted);
    text-decoration: line-through;
    margin-left: 8px;
}

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

.pricing-features ul {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: var(--text-dark-primary);
}

.check-icon {
    color: var(--gold-primary);
    flex-shrink: 0;
}

.pricing-guarantee {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-dark-secondary);
    margin-top: 16px;
}

/* --------------------------------------------------------------------------
   8.5 DELIVERABLES SECTION (NELER TESLİM ALIRSINIZ?)
   -------------------------------------------------------------------------- */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.deliverable-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    height: 100%;
    justify-content: flex-start;
}

.deliverable-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #FFFFFF;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.deliverable-card:hover .deliverable-icon-wrap {
    background: #FFFFFF;
    border-color: var(--gold-primary);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    transform: scale(1.08);
}

.deliverable-card-title {
    font-size: 1.35rem;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.3;
}

.deliverable-card-desc {
    font-size: 0.92rem;
    color: var(--text-dark-secondary);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   9. FAQ ACCORDION (WARM IVORY)
   -------------------------------------------------------------------------- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-card-light);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold-dark);
    transition: var(--transition-smooth);
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--gold-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-light-secondary);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   10. FOOTER & CONTACT (DEEP BLACK)
   -------------------------------------------------------------------------- */
.footer-section {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-dark-secondary);
    font-size: 0.95rem;
    max-width: 320px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--gold-light);
    transform: translateX(4px);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.45));
}

.footer-heading {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    color: var(--text-dark-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

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

.footer-contact-col p {
    color: var(--text-dark-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    color: var(--text-dark-muted);
}

.footer-trust {
    display: flex;
    gap: 24px;
}

/* --------------------------------------------------------------------------
   11. RESPONSIVE BREAKPOINTS (MOBILE-FIRST LUXURY - CENTERING & NO OVERFLOW)
   -------------------------------------------------------------------------- */
.mobile-sticky-cta-bar {
    display: none;
}

@media (max-width: 992px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-section {
        padding: 160px 0 100px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
        justify-items: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 2.7rem;
        text-align: center;
        width: 100%;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-cta-group {
        justify-content: center;
        width: 100%;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-quote {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-trust-badges {
        justify-content: center;
        width: 100%;
    }

    .hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }

    .spotify-hero-card {
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .samples-grid {
        grid-template-columns: 1fr;
    }

    .inspiration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .occasions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        justify-items: center;
    }

    .footer-brand-col, .footer-links-col, .footer-contact-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-methods {
        align-items: center;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 72px; /* Space for sticky bottom bar */
    }

    .mobile-sticky-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 12px 16px;
        background: rgba(11, 11, 11, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(212, 175, 55, 0.25);
        z-index: 1001;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.0rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        background: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transition: var(--transition-smooth);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-lg {
        width: 100%;
    }

    .why-grid, .inspiration-grid, .occasions-grid {
        grid-template-columns: 1fr;
    }

    .why-card, .occasion-card, .step-card {
        align-items: center;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .why-icon-wrap, .occasion-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .step-header {
        justify-content: center;
    }

    .pricing-card.pricing-featured {
        padding: 32px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .pricing-campaign-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-bottom: 20px;
    }

    .price-container {
        justify-content: center;
    }

    .pricing-features li {
        justify-content: center;
        text-align: center;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1.1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Audio Player Mobile Centering & Balance */
    .sample-player-box {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .player-controls {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        gap: 14px;
    }

    .play-btn {
        margin: 0 auto;
    }

    .player-timeline {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .wave-canvas {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
        display: block;
    }

    .seek-bar {
        width: 100% !important;
        max-width: 100% !important;
        margin: 8px auto 0;
        box-sizing: border-box;
    }

    .time-display {
        width: 100%;
        text-align: center;
        margin-top: 6px;
        font-size: 0.85rem;
    }

    /* Inspiration Card Mobile Player Alignment */
    .spotify-inspiration-card {
        text-align: center;
        align-items: center;
    }

    .insp-card-body {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .insp-player-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 12px;
        margin-top: 8px;
    }

    .insp-play-btn {
        margin: 0 auto;
    }

    .insp-wave-canvas {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }

    /* Hero Spotify Card Mobile Centering */
    .player-title-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .player-controls-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .hero-audio-play-btn {
        margin: 0 auto;
    }

    .player-status-text {
        text-align: center;
        align-items: center;
    }
}

/* --------------------------------------------------------------------------
   12. "ŞARKINI OLUŞTUR" MULTI-STEP WIZARD STYLES
   -------------------------------------------------------------------------- */
.create-song-page {
    background-color: var(--color-bg-dark);
}

.wizard-header {
    padding: 160px 0 40px;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
}

.wizard-title {
    font-size: 3.2rem;
    color: #FFFFFF;
    margin-top: 12px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.wizard-subtitle {
    font-size: 1.15rem;
    color: var(--text-dark-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.wizard-section {
    padding: 20px 0 100px;
}

.wizard-wrapper {
    max-width: 880px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.1);
}

/* Progress Tracker */
.wizard-progress-bar {
    margin-bottom: 40px;
}

.progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-steps-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gold-primary);
    font-weight: 600;
}

/* Step Views */
.wizard-step {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wizard-step.step-active {
    display: block;
    opacity: 1;
}

.step-heading {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.step-subheading {
    font-size: 1rem;
    color: var(--text-dark-secondary);
    margin-bottom: 32px;
}

/* Form Options Grid & Cards */
.options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.options-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.option-card {
    position: relative;
    cursor: pointer;
}

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

.option-content {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    transition: var(--transition-smooth);
    min-height: 110px;
}

.option-emoji {
    font-size: 1.8rem;
}

.option-label {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
}

.option-card:hover .option-content {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    background: rgba(212, 175, 55, 0.08);
}

.option-card input[type="radio"]:checked + .option-content {
    background: var(--gold-gradient);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    transform: scale(1.03);
}

.option-card input[type="radio"]:checked + .option-content .option-label {
    color: #0B0B0B;
}

.style-card .option-content {
    align-items: flex-start;
    text-align: left;
    padding: 22px;
}

.style-icon {
    font-size: 1.6rem;
}

.style-desc {
    font-size: 0.8rem;
    color: var(--text-dark-secondary);
}

.option-card input[type="radio"]:checked + .option-content .style-desc {
    color: rgba(11, 11, 11, 0.8);
}

/* Inputs & Textareas */
.form-group-single, .form-group {
    margin-bottom: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-size: 1.15rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.luxury-input, .luxury-textarea {
    width: 100%;
    background: rgba(28, 28, 28, 0.8);
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: #FFFFFF;
    outline: none;
    transition: var(--transition-smooth);
}

.luxury-input:focus, .luxury-textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    background: rgba(35, 35, 35, 0.95);
}

.luxury-input.input-error {
    border-color: #ff4d4d;
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.3);
}

/* Summary Card */
.summary-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.summary-details {
    background: rgba(25, 25, 25, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.summary-card-title {
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.summary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.98rem;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark-secondary);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
}

.summary-list strong {
    color: #FFFFFF;
}

.summary-pricing-box {
    background: var(--color-card-dark);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-gold-glow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.summary-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: #0B0B0B;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    align-self: flex-start;
}

.package-title {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.summary-price-container {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.price-campaign {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.price-old-strike {
    font-size: 1.3rem;
    color: var(--text-dark-muted);
    text-decoration: line-through;
}

.summary-campaign-note {
    font-size: 0.88rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 20px;
}

.summary-perks {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
}

.wizard-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .wizard-wrapper {
        padding: 28px 20px;
    }

    .wizard-title {
        font-size: 2.2rem;
    }

    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .options-grid.grid-3 {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .summary-card-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   13. LEGAL PAGES STYLES (GİZLİLİK, KVKK, MESAFELİ SATIŞ, TESLİMAT & İADE)
   -------------------------------------------------------------------------- */
.legal-page {
    background-color: var(--color-bg-dark);
}

.legal-header {
    padding: 160px 0 40px;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: #FFFFFF;
}

.breadcrumb-separator {
    color: var(--text-dark-muted);
}

.legal-title {
    font-size: 3.2rem;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.2;
}

.legal-subtitle {
    font-size: 1.05rem;
    color: var(--text-dark-secondary);
    max-width: 680px;
    margin: 0 auto;
}

.legal-content-section {
    padding: 40px 0 100px;
}

.legal-card {
    background: var(--color-card-dark);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-lg);
    padding: 48px;
    color: var(--text-dark-primary);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-dark);
}

.legal-card h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-top: 36px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    padding-bottom: 8px;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    color: var(--text-dark-secondary);
    margin-bottom: 16px;
    font-size: 1rem;
}

.legal-card ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-dark-secondary);
}

.legal-card li {
    margin-bottom: 8px;
}

.legal-card strong {
    color: #FFFFFF;
}

.legal-highlight-box {
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--gold-primary);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    margin: 28px 0;
    color: #FFFFFF;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .legal-title {
        font-size: 2.2rem;
    }

    .legal-card {
        padding: 28px 20px;
    }

    .legal-card h2 {
        font-size: 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   14. POLISHING & LUXURY MICRO-INTERACTIONS (APPLE/SPOTIFY LEVEL)
   -------------------------------------------------------------------------- */
/* Page Preloader */
.page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B0B0B;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-note {
    animation: pulseNote 1.2s infinite ease-in-out alternate;
}

@keyframes pulseNote {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.85)); }
}

/* Unified Premium Hover Animations for All Cards */
.luxury-card,
.luxury-card-light,
.luxury-card-blend,
.occasion-card,
.spotify-inspiration-card,
.why-card,
.step-card,
.pricing-card,
.spotify-hero-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease !important;
    will-change: transform, box-shadow;
}

.luxury-card:hover,
.luxury-card-light:hover,
.luxury-card-blend:hover,
.occasion-card:hover,
.spotify-inspiration-card:hover,
.why-card:hover,
.step-card:hover,
.pricing-card:hover,
.spotify-hero-card:hover {
    transform: translateY(-7px) scale(1.018) !important;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.75), 0 0 35px rgba(212, 175, 55, 0.22) !important;
}

/* Active Audio Playing State Glow & Button Pulse */
.spotify-hero-card.is-playing,
.sample-card.is-playing,
.spotify-inspiration-card.is-playing {
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.35) !important;
}

.is-playing .insp-cover-art,
.is-playing .player-album-art {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.45) !important;
    border-color: var(--gold-primary) !important;
}

.is-playing .play-btn,
.is-playing .insp-play-btn,
.is-playing .hero-audio-play-btn {
    animation: pulseGoldRing 2s infinite ease-in-out;
}

@keyframes pulseGoldRing {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Input & Textarea Focus Micro-Interactions */
.luxury-input, .luxury-textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.luxury-input:focus, .luxury-textarea:focus {
    outline: none;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25), 0 8px 25px rgba(0, 0, 0, 0.4) !important;
}

/* Scroll Reveal Animations (Smooth 700ms) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Touch Target Minimums & Safe Side Edges for Mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* --------------------------------------------------------------------------
   15. CONVERSION, ACCESSIBILITY & LAYOUT POLISHING
   -------------------------------------------------------------------------- */

/* Hero Trust Strip */
.hero-trust-strip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    flex-wrap: wrap;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--text-dark-secondary);
    font-weight: 500;
}

.hero-trust-badge span {
    color: #FFFFFF;
}

.hero-trust-dot {
    color: var(--gold-primary);
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Pricing Card Gold Border Glow Pulse & Reassurance */
@keyframes goldBorderPulse {
    0% {
        border-color: rgba(212, 175, 55, 0.4);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.15);
    }
    50% {
        border-color: rgba(243, 229, 171, 0.85);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(212, 175, 55, 0.35);
    }
    100% {
        border-color: rgba(212, 175, 55, 0.4);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.15);
    }
}

.pricing-featured {
    animation: goldBorderPulse 4s ease-in-out infinite;
    position: relative;
    border: 1.5px solid var(--gold-primary);
}

.pricing-primary-cta {
    font-size: 1.15rem !important;
    padding: 18px 36px !important;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3) !important;
}

.pricing-primary-cta:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.45) !important;
}

.pricing-reassurance {
    font-size: 0.88rem;
    color: var(--gold-light);
    margin-top: 14px;
    margin-bottom: 6px;
    opacity: 0.95;
    font-weight: 500;
}

/* Live Desktop Summary Card Layout (create-song.html) */
@media (min-width: 1024px) {
    .wizard-layout-container {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 32px;
        align-items: start;
    }

    .live-summary-card {
        position: sticky;
        top: 100px;
        padding: 28px 24px;
        background: rgba(24, 24, 24, 0.95);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: var(--radius-lg);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.08);
    }
}

@media (max-width: 1023px) {
    .live-summary-card {
        display: none;
    }
}

.live-summary-badge {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

.live-summary-title {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-top: 4px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.live-summary-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.live-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
}

.live-label {
    color: var(--text-dark-secondary);
}

.live-value {
    color: #FFFFFF;
    font-weight: 600;
}

.live-summary-pricing {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.live-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.live-price-label {
    font-size: 0.95rem;
    color: #FFFFFF;
    font-weight: 600;
}

.live-price-box {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.live-price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.live-price-old {
    font-size: 0.9rem;
    color: var(--text-dark-muted);
    text-decoration: line-through;
}

.live-reassurance {
    font-size: 0.82rem;
    color: var(--text-dark-secondary);
    line-height: 1.4;
    text-align: center;
}

/* Accessibility Focus States */
:focus-visible {
    outline: 2px solid var(--gold-primary) !important;
    outline-offset: 3px !important;
}

button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--gold-light) !important;
    outline-offset: 3px !important;
}

/* Paragraph Typography & Spacing Improvement */
p {
    line-height: 1.7;
}

.section-subtitle {
    line-height: 1.7;
    margin-top: 12px;
}

/* --------------------------------------------------------------------------
   16. EMOTIONAL VALUE SECTION (BIR SARKI BAZEN BIN KELIMEDEN FAZLASINI ANLATIR)
   -------------------------------------------------------------------------- */
.emotional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 36px;
}

.emotional-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.emotional-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #FFFFFF;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.emotional-card:hover .emotional-icon-wrap {
    background: #FFFFFF;
    border-color: var(--gold-primary);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    transform: scale(1.08);
}

.emotional-card-title {
    font-size: 1.45rem;
    color: var(--text-light-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.emotional-card-desc {
    font-size: 0.98rem;
    color: var(--text-light-secondary);
    line-height: 1.65;
}

@media (max-width: 992px) {
    .emotional-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* --------------------------------------------------------------------------
   17. ABOUT SECTION (HAKKIMIZDA)
   -------------------------------------------------------------------------- */
.about-section {
    padding-top: 80px;
    padding-bottom: 80px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.about-box {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.12rem;
    color: var(--text-dark-secondary);
    line-height: 1.85;
    margin-top: 20px;
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   18. INSTAGRAM INTEGRATION SYSTEM
   -------------------------------------------------------------------------- */

/* Navbar Instagram Button */
.nav-insta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: var(--transition-smooth);
}

.nav-insta-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Hero Secondary Instagram Link */
.hero-insta-link-wrap {
    margin-top: 14px;
    margin-bottom: 8px;
}

.hero-insta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--gold-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.hero-insta-link:hover {
    color: #FFFFFF;
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

/* 3x2 Instagram Grid Section */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.insta-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: block;
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: var(--transition-smooth);
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 11, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    text-align: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.insta-overlay span {
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

.insta-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.insta-card:hover .insta-img {
    transform: scale(1.08);
}

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

/* Footer Instagram Integration */
.footer-insta-handle-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 1.05rem;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.footer-insta-handle-link:hover {
    color: var(--gold-light);
    transform: translateX(4px);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.45));
}

.footer-insta-desc {
    font-size: 0.88rem;
    color: var(--text-dark-secondary);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* ==========================================================================
   ABOUT PREMIUM SECTION (BRAND NEW & COMPLETELY ISOLATED)
   ========================================================================== */
.about-premium-section {
    background-color: #0B0B0B !important;
    padding: 90px 20px !important;
    border-top: 1px solid rgba(212, 175, 55, 0.15) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
}

.about-premium-container {
    max-width: 1140px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.about-premium-title {
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 14px !important;
    background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA7C11 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block !important;
}

.about-premium-subtitle {
    color: #F5F2EA !important;
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    margin-bottom: 40px !important;
    max-width: 780px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    opacity: 1 !important;
}

.about-premium-content {
    max-width: 860px !important;
    margin: 0 auto 50px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    text-align: center !important;
}

.about-premium-content p {
    color: #E9E4D8 !important;
    font-size: 18px !important;
    line-height: 1.9 !important;
    margin: 0 !important;
    opacity: 1 !important;
}

.about-premium-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    text-align: left !important;
}

.about-premium-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: 16px !important;
    padding: 30px 24px !important;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
}

.about-premium-card:hover {
    transform: translateY(-5px) !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15) !important;
}

.about-premium-card h3 {
    color: #D4AF37 !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
}

.about-premium-card p {
    color: #E9E4D8 !important;
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    opacity: 1 !important;
}

@media (max-width: 992px) {
    .about-premium-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .about-premium-grid {
        grid-template-columns: 1fr !important;
    }
    .about-premium-title {
        font-size: 2.2rem !important;
    }
    .about-premium-content p {
        font-size: 16px !important;
    }
}


/* ==========================================================================
   ORDER WORKFLOW MODALS  (Resume Session  +  Order Confirmation)
   ========================================================================== */

/* Overlay backdrop */
.imt-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    /* Hidden by default */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.imt-modal-overlay.imt-modal-visible {
    opacity: 1;
    pointer-events: all;
}

/* Modal card */
.imt-modal-box {
    background: #111111;
    border: 1px solid rgba(212, 175, 55, 0.30);
    border-radius: 20px;
    padding: 44px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.70),
                inset 0 1px 0 rgba(212, 175, 55, 0.10);
    transform: translateY(24px);
    transition: transform 0.35s cubic-bezier(0.22, 0.97, 0.57, 1);
}

.imt-modal-overlay.imt-modal-visible .imt-modal-box {
    transform: translateY(0);
}

.imt-modal-large {
    max-width: 620px;
}

/* Emoji icon */
.imt-modal-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    line-height: 1;
}

/* Title */
.imt-modal-title {
    font-size: 1.65rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #AA7C11 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1.25;
}

/* Description */
.imt-modal-desc {
    color: #C5BEA8;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 28px;
}

/* Confirmation details list */
.imt-confirm-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    text-align: left;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 12px;
    overflow: hidden;
}

.imt-confirm-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 13px 18px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.10);
    font-size: 0.93rem;
    line-height: 1.5;
}

.imt-confirm-list li:last-child {
    border-bottom: none;
}

.imt-confirm-list li:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}

.imt-confirm-label {
    color: #8A8070;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 130px;
}

.imt-confirm-value {
    color: #F0EAD6;
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

.imt-confirm-value.story-value {
    font-style: italic;
    font-weight: 400;
    font-size: 0.88rem;
    color: #C5BEA8;
    max-height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Action buttons row */
.imt-modal-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.imt-modal-actions .btn {
    min-width: 150px;
    gap: 8px;
}

/* Responsive */
@media (max-width: 480px) {
    .imt-modal-box {
        padding: 32px 22px;
    }
    .imt-modal-actions {
        flex-direction: column;
    }
    .imt-modal-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .imt-confirm-label {
        min-width: 100px;
    }
}

/* ==========================================================================
   FORMSPREE WORKFLOW ADDITIONS
   - KVKK checkbox, spinner, order-reference box
   ========================================================================== */

/* KVKK checkbox row */
.imt-kvkk-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    margin: 0 0 6px 0;
    cursor: pointer;
}

.imt-kvkk-checkbox {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #D4AF37;
    cursor: pointer;
}

.imt-kvkk-text {
    font-size: 0.88rem;
    color: #A89B80;
    line-height: 1.55;
}

.imt-kvkk-text a {
    color: #D4AF37;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.imt-kvkk-text a:hover {
    color: #F3E5AB;
}

.imt-kvkk-error {
    font-size: 0.83rem;
    color: #E07070;
    margin: 0 0 14px 28px;
    text-align: left;
}

/* Gold loading spinner */
.imt-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(212, 175, 55, 0.35);
    border-top-color: #D4AF37;
    border-radius: 50%;
    animation: imt-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes imt-spin {
    to { transform: rotate(360deg); }
}

/* Disabled payment button state */
.btn[disabled],
.btn.btn-loading {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}

/* Order reference box */
.imt-order-ref-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 20px auto 0;
    padding: 18px 28px;
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.30);
    border-radius: 12px;
    max-width: 320px;
}

.imt-order-ref-label {
    font-size: 0.82rem;
    color: #8A8070;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.imt-order-ref-code {
    font-size: 1.35rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #AA7C11 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.06em;
}

/* ==========================================================================
   PRODUCTION-SAFETY ADDITIONS  v4.0
   - Privacy note, delivery note, clear-draft button, order ref status
   ========================================================================== */

/* Story textarea privacy note */
.imt-privacy-note {
    margin-top: 10px;
    padding: 10px 14px;
    background: rgba(212, 175, 55, 0.06);
    border-left: 3px solid rgba(212, 175, 55, 0.35);
    border-radius: 0 8px 8px 0;
    font-size: 0.83rem;
    color: #A89B80;
    line-height: 1.55;
}

/* Contact step delivery note */
.imt-delivery-note {
    margin-top: 18px;
    padding: 12px 16px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 10px;
    font-size: 0.88rem;
    color: #A89B80;
    line-height: 1.55;
    text-align: center;
}

/* Required / optional field label markers */
.field-required {
    color: #D4AF37;
    font-weight: 700;
    margin-left: 2px;
}

.field-optional {
    color: #6A6050;
    font-size: 0.82em;
    font-weight: 400;
    margin-left: 4px;
}

/* Clear draft button */
.imt-clear-draft-btn {
    background: none;
    border: none;
    color: #6A6050;
    font-size: 0.82rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s ease;
    font-family: inherit;
}

.imt-clear-draft-btn:hover {
    color: #D4AF37;
}

/* Order ref status badge */
.imt-order-ref-status {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.78rem;
    color: #8A8070;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 3px 12px;
    letter-spacing: 0.04em;
}

/* ==========================================================================
   BLOG PAGINATION STYLES (LUXURY GLASSMORPHIC GOLD)
   ========================================================================== */
.pagination-wrapper {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pagination-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #F5F2EA;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.page-link:hover {
    color: #D4AF37;
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.page-link.active {
    background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA7C11 100%);
    color: #070707;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.page-link.disabled {
    opacity: 0.35;
    pointer-events: none;
}

.pagination-info {
    font-size: 0.88rem;
    color: #A89B80;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SEO BLOG ARCHITECTURE STYLES (Blog Hub & Blog Detail Pages)
   ========================================================================== */

/* Blog Section & Cards */
.blog-section {
    padding: 90px 0;
    background: #070707;
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.blog-card {
    background: rgba(18, 18, 18, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
}

.blog-card-header {
    padding: 24px 24px 12px 24px;
}

.blog-category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(212, 175, 55, 0.12);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.25);
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #F5F2EA;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
    color: #D4AF37;
}

.blog-card-excerpt {
    padding: 0 24px 16px 24px;
    font-size: 0.92rem;
    color: #A89B80;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-card-footer {
    padding: 16px 24px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #7A7060;
}

.blog-read-more {
    color: #D4AF37;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Single Blog Post Detail Page */
.blog-detail-article {
    max-width: 820px;
    margin: 0 auto;
    padding: 120px 20px 80px 20px;
}

.blog-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-detail-title {
    font-size: 2.5rem;
    line-height: 1.25;
    color: #F5F2EA;
    margin: 16px 0 20px 0;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    color: #8A8070;
    flex-wrap: wrap;
}

.blog-detail-content {
    color: #E9E4D8;
    font-size: 1.1rem;
    line-height: 1.9;
}

.blog-detail-content p {
    margin-bottom: 24px;
}

.blog-detail-content h2 {
    font-size: 1.75rem;
    color: #D4AF37;
    margin: 40px 0 18px 0;
    line-height: 1.3;
}

.blog-detail-content h3 {
    font-size: 1.35rem;
    color: #F5F2EA;
    margin: 30px 0 14px 0;
}

.blog-detail-content ul, .blog-detail-content ol {
    margin: 0 0 24px 24px;
    padding: 0;
}

.blog-detail-content li {
    margin-bottom: 10px;
}

.blog-detail-content blockquote {
    margin: 32px 0;
    padding: 20px 28px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid #D4AF37;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #F3E5AB;
}

/* CTA Box in Blog Posts */
.blog-cta-box {
    margin: 50px 0;
    padding: 36px 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(11, 11, 11, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

.blog-cta-title {
    font-size: 1.6rem;
    color: #F5F2EA;
    margin-bottom: 12px;
}

.blog-cta-desc {
    color: #C5BEA8;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 24px auto;
}

/* Responsive Blog Adjustments */
@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 1.85rem;
    }
    .blog-detail-content {
        font-size: 1rem;
        line-height: 1.8;
    }
    .blog-detail-content h2 {
        font-size: 1.45rem;
    }
}



/* Genel sayfa body'leri */


/* Genel section başlıkları */




/* Legal sayfa içerik */





/* Blog kartları */






/* Preloader */


/* btn-outline-gold ışık modunda */



/* Wizard / create-song */











/* Form alanları */




/* ==========================================================================
   THEME TOGGLE BUTTON — Luxury Sun/Moon Switcher
   ========================================================================== */
.theme-toggle-btn {
    position: relative;
    width: 48px;
    height: 26px;
    border-radius: 13px;
    background: rgba(212, 175, 55, 0.15);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.theme-toggle-btn:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.22);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.theme-toggle-track {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    pointer-events: none;
}

.theme-toggle-icon {
    font-size: 0.72rem;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.theme-toggle-icon.sun-icon {
    opacity: 0.4;
}

.theme-toggle-icon.moon-icon {
    opacity: 1;
}

.theme-toggle-thumb {
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold-gradient);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
    pointer-events: none;
}

/* Light mode state for toggle */






