/* ==========================================================================
   STYLE.CSS — DJ BERAT HALLAÇ (Ultra-Modern Dark & Neon Red Aesthetic)
   ========================================================================== */

:root {
    --primary: #FF2A2A;
    --primary-glow: rgba(255, 42, 42, 0.4);
    --secondary: #E53E3E;
    --bg: #050505;
    --surface: #0D0D12;
    --surface-card: rgba(18, 18, 22, 0.7);
    --surface-card-hover: rgba(26, 26, 32, 0.9);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-color-hover: rgba(255, 42, 42, 0.45);
    --text: #E8E8F0;
    --text-muted: #8E8E9F;
    --title-color: #FFFFFF;
    --head-font: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --body-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --glass-blur: blur(16px);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg);
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--body-font);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

::selection {
    background: var(--primary);
    color: #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: #1e1e24;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid rgba(255, 42, 42, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.luxury-monogram {
    display: flex;
    align-items: center;
    justify-content: center;
}

.monogram-svg {
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.1));
    transition: var(--transition);
}

.logo-link:hover .monogram-svg {
    filter: drop-shadow(0 2px 12px var(--primary-glow));
    transform: scale(1.05);
}

.logo-img {
    max-height: 46px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.04);
}

.logo-brand-text {
    font-family: var(--head-font);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

.nav-and-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-family: var(--head-font);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #8E8E9F;
    text-transform: uppercase;
    position: relative;
    padding: 0.4rem 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--head-font);
    font-size: 0.85rem;
    font-weight: 700;
}

.lang-btn {
    color: #8E8E9F;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active,
.lang-btn[data-lang="tr"] {
    color: var(--primary);
    font-weight: 800;
}

.lang-divider {
    color: #444450;
}

.nav-toggle {
    display: none;
    font-size: 1.4rem;
    color: #ffffff;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    padding: 3.5rem 0 5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 3rem;
}

/* Vertical Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.scroll-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--head-font);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #666675;
}

.scroll-track {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    border-radius: 1px;
    overflow: hidden;
}

.scroll-dot {
    width: 2px;
    height: 18px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    position: absolute;
    top: 0;
    left: 0;
    animation: scrollSlide 2.2s infinite ease-in-out;
}

@keyframes scrollSlide {
    0% { transform: translateY(-100%); opacity: 0; }
    30% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(350%); opacity: 0; }
}

/* Hero Content (Left) */
.hero-content {
    padding-left: 2rem;
}

.hero-tag-badge {
    display: inline-block;
    font-family: var(--head-font);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--head-font);
    font-size: clamp(3.2rem, 5.5vw, 5.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.dot-accent {
    color: var(--primary);
    display: inline-block;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #8E8E9F;
    max-width: 520px;
    margin-bottom: 2.8rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.btn-hero-listen {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--head-font);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.play-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    padding-left: 2px;
    transition: var(--transition);
}

.btn-hero-listen:hover .play-icon-circle {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.08);
}

.btn-text-underline {
    position: relative;
    padding-bottom: 4px;
}

.btn-text-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.btn-hero-booking {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--head-font);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #8E8E9F;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-hero-booking:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.btn-hero-booking i {
    color: var(--primary);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-hero-booking:hover i {
    transform: translateX(4px);
}

/* Hero Visual & DJ Portrait (Right) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dj-portrait-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1.15;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ambient Red Backdrop Glow */
.dj-glow-backdrop {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 42, 42, 0.35) 0%, rgba(255, 42, 42, 0) 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

/* Techno HUD Rings */
.hud-elements-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.hud-ring {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.hud-ring-outer {
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    animation: rotateHUD 40s linear infinite;
}

.hud-ring-inner {
    width: 290px;
    height: 290px;
    border: 1px solid rgba(255, 42, 42, 0.25);
    border-right-color: transparent;
    border-bottom-color: transparent;
    animation: rotateHUD 25s linear infinite reverse;
}

.hud-crosshair-h {
    position: absolute;
    top: 35%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.hud-crosshair-v {
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 30%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.hud-accent-dot {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

@keyframes rotateHUD {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.dj-image-frame {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.dj-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
    filter: contrast(1.05) brightness(0.95);
}

/* Geo-Coordinates Box */
.hero-coordinates-box {
    position: absolute;
    bottom: 2rem;
    right: 0rem;
    z-index: 5;
    text-align: right;
}

.coords-content {
    font-family: var(--head-font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #6E6E7F;
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.coords-bracket {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    box-shadow: 2px 2px 8px var(--primary-glow);
}

/* ==========================================================================
   HIZLI LİNKLER (QUICK LINKS)
   ========================================================================== */

.section-quick-links {
    padding: 3rem 0 4rem 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section-header-compact {
    margin-bottom: 2rem;
}

.section-header-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.red-accent-icon {
    color: var(--primary);
    font-size: 1.1rem;
}

.section-header-title h2 {
    font-family: var(--head-font);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.modern-link-card {
    background: var(--surface-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.modern-link-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--brand-color, var(--primary)), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.modern-link-card:hover {
    background: var(--surface-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 42, 42, 0.1);
}

.modern-link-card:hover::before {
    opacity: 1;
}

.link-card-left {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    min-width: 0;
}

.link-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.link-icon-box .custom-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.link-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.link-main-title {
    font-family: var(--head-font);
    font-size: 0.92rem;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-sub-tag {
    font-size: 0.78rem;
    color: #7E7E8F;
    font-weight: 500;
}

.link-card-right .arrow-diagonal {
    color: #5E5E6F;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modern-link-card:hover .arrow-diagonal {
    color: #ffffff;
    transform: translate(2px, -2px);
}

/* ==========================================================================
   MÜZİKLERİM (AUDIO PLAYER & TRACKLIST)
   ========================================================================== */

.section-music {
    padding: 3rem 0 5rem 0;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

/* Equalizer Bars Icon */
.equalizer-icon {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
}

.equalizer-icon span {
    width: 3px;
    background: var(--primary);
    border-radius: 1px;
    animation: eqPulse 1.2s infinite ease-in-out;
}

.equalizer-icon span:nth-child(1) { height: 8px; animation-delay: 0.1s; }
.equalizer-icon span:nth-child(2) { height: 16px; animation-delay: 0.3s; }
.equalizer-icon span:nth-child(3) { height: 12px; animation-delay: 0.2s; }
.equalizer-icon span:nth-child(4) { height: 6px; animation-delay: 0.4s; }

@keyframes eqPulse {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

.section-action-link {
    font-family: var(--head-font);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #8E8E9F;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.section-action-link i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.section-action-link:hover {
    color: #FFFFFF;
}

.section-action-link:hover i {
    transform: translateX(4px);
}

/* Main Player Card */
.modern-player-card {
    background: var(--surface-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.2rem 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    position: relative;
}

.player-main-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.5rem;
}

/* Cover Image */
.player-cover-box {
    position: relative;
    width: 170px;
    height: 170px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.player-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-player-card:hover .player-cover-img {
    transform: scale(1.04);
}

.cover-sound-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.75rem;
}

/* Player Body */
.player-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.player-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.track-text-group .track-title {
    font-family: var(--head-font);
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    margin-bottom: 0.2rem;
}

.track-text-group .track-artist {
    font-size: 0.95rem;
    color: #8E8E9F;
    font-weight: 500;
}

.track-platform-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.platform-badge {
    font-size: 1.25rem;
}

.platform-badge.spotify {
    color: #1DB954;
}

.platform-badge.soundcloud {
    color: #FF5500;
}

.platform-badge.youtube {
    color: #FF0000;
}

.btn-track-more {
    color: #6E6E7F;
    font-size: 1.1rem;
    padding: 0.3rem;
    transition: var(--transition);
}

.btn-track-more:hover {
    color: #FFFFFF;
}

/* Waveform Visualizer */
.waveform-container {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 48px;
    padding: 0.4rem 0;
}

.wave-bar {
    flex: 1;
    height: var(--bar-height, 40%);
    background: var(--primary);
    border-radius: 2px;
    opacity: 0.85;
    transition: height 0.2s ease, opacity 0.2s ease;
}

.modern-player-card.is-playing .wave-bar {
    animation: wavePulse 1.2s infinite ease-in-out alternate;
    animation-delay: var(--bar-delay, 0s);
}

@keyframes wavePulse {
    0% { transform: scaleY(0.5); opacity: 0.6; }
    100% { transform: scaleY(1.15); opacity: 1; filter: drop-shadow(0 0 4px var(--primary-glow)); }
}

/* Progress Area */
.player-progress-area {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.progress-bar-track {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary-glow);
}

.progress-bar-handle {
    width: 10px;
    height: 10px;
    background: #ffffff;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.progress-bar-track:hover .progress-bar-handle {
    opacity: 1;
}

.progress-time-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--head-font);
    font-size: 0.78rem;
    color: #6E6E7F;
    font-weight: 600;
}

/* Controls Column */
.player-controls-col {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-shrink: 0;
}

.btn-ctrl-skip {
    color: #8E8E9F;
    font-size: 1.15rem;
    padding: 0.6rem;
    transition: var(--transition);
}

.btn-ctrl-skip:hover {
    color: #FFFFFF;
    transform: scale(1.1);
}

.btn-ctrl-main-play {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--primary);
    color: #FFFFFF;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    box-shadow: 0 6px 20px var(--primary-glow);
    transition: var(--transition);
}

.btn-ctrl-main-play:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 42, 42, 0.6);
}

/* Tracklist Rows */
.tracklist-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tracklist-row {
    background: rgba(18, 18, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.tracklist-row:hover,
.tracklist-row.active-track {
    background: rgba(26, 26, 32, 0.85);
    border-color: rgba(255, 42, 42, 0.25);
    transform: translateX(4px);
}

.row-left {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.track-number {
    font-family: var(--head-font);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
}

.row-titles {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.row-track-name {
    font-family: var(--head-font);
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
}

.row-artist-name {
    font-size: 0.85rem;
    color: #7E7E8F;
}

.row-right {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.row-duration {
    font-family: var(--head-font);
    font-size: 0.85rem;
    color: #6E6E7F;
    font-weight: 600;
}

.btn-row-play {
    color: #FFFFFF;
    font-size: 0.9rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.tracklist-row:hover .btn-row-play {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 10px var(--primary-glow);
}

.btn-row-more {
    color: #5E5E6F;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-row-more:hover {
    color: #ffffff;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.modern-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 3rem 0;
    margin-top: auto;
    background: #030304;
}

.modern-footer .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.footer-soc-btn {
    color: #7E7E8F;
    font-size: 1.15rem;
    transition: var(--transition);
}

.footer-soc-btn:hover {
    color: var(--primary);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.footer-center-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 24px;
}

.divider-line {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.footer-copyright {
    font-family: var(--head-font);
    font-size: 0.82rem;
    color: #6E6E7F;
    font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1200px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 1rem 1.5rem;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        display: none;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-section {
        padding: 2rem 0 3.5rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding: 0 1.5rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-content {
        padding-left: 0;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .player-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.8rem;
    }

    .player-cover-box {
        margin: 0 auto;
    }

    .player-header-row {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .player-controls-col {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .modern-footer .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-center-divider {
        display: none;
    }

    .row-left {
        gap: 1rem;
    }

    .row-right {
        gap: 1rem;
    }
}

.hero-soc-link-btn:hover {
    color: var(--primary) !important;
    transform: translateY(-3px) scale(1.15);
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

