/* ===== GENEL AYARLAR ===== */
/* Bruno Mars tarzı - Siyah minimalist tema */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Mulish:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #f0e8ce;
    --primary-hover: #e8ddb8;
    --primary-light: #f5f0e0;
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --bg-card: #111111;
    --bg-light: #1a1a1a;
    --bg-white: #ffffff;
    --text-white: #ffffff;
    --text-light: #cccccc;
    --text-muted: #888888;
    --text-dark: #1a1a1a;
    --border-color: rgba(255,255,255,0.1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.6);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

/* Fullpage Scroll - Sadece anasayfa */
html.fullpage-enabled {
    overflow: hidden;
    overscroll-behavior: none;
}

html.fullpage-enabled body {
    overflow: hidden;
    overscroll-behavior: none;
}

body {
    font-family: 'Mulish', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

a {
    color: var(--text-white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Modern seçim rengi */
::selection {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Full-page section - Bruno Mars Exact Style */
.fullpage-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.fp-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    background: var(--bg-dark);
    will-change: transform;
}

/* Z-index sıralaması - Bruno Mars gibi */
.fp-section[data-index="0"] { z-index: 1; }
.fp-section[data-index="1"] { z-index: 2; }
.fp-section[data-index="2"] { z-index: 3; }

/* İlk section başta görünür */
.fp-section[data-index="0"] {
    transform: translateY(0);
}

/* Aktif section */
.fp-section.active {
    transform: translateY(0);
}

/* Geçmiş section - yukarıda kalır */
.fp-section.passed {
    transform: translateY(0);
}

/* Scrollable section içeriği */
.fp-section.scrollable {
    overflow-y: auto;
    align-items: flex-start;
}

.fp-section.scrollable .fp-content {
    min-height: 100%;
    padding-top: 80px;
    padding-bottom: 20px;
    width: 100%;
}

/* Footer - Bruno Mars gibi sabit altta */
.fp-footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    background: var(--bg-dark);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showfooter .fp-footer-fixed {
    transform: translateY(0);
}

/* Navigation Dots - Gizli */
.fp-nav {
    display: none;
}

.fp-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.fp-nav-dot:hover {
    background: rgba(255,255,255,0.5);
}

.fp-nav-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

/* Scroll Indicator - Gizli */
.scroll-indicator {
    display: none;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 32px; }
}

/* Footer inside section */
.fp-footer {
    margin-top: 30px;
    padding: 20px 0 5px;
}

.fp-footer .footer-content {
    margin-bottom: 15px;
}

.fp-footer .footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin: 0;
}

/* ===== HEADER / NAVİGASYON ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #000000;
    transition: all var(--transition-medium);
    padding: 25px 0;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    position: relative;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: opacity var(--transition-fast);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo:hover {
    opacity: 0.8;
}

.logo-ilkay {
    color: var(--primary-color);
}

.logo-sipahi {
    color: var(--text-white);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-left {
    margin-right: auto;
}

.nav-right {
    margin-left: auto;
}

.nav-links a {
    font-family: 'Poppins', sans-serif;
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: all var(--transition-medium);
}

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 25px 0;
}

.mobile-nav-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-white);
    transition: color var(--transition-fast);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--primary-color);
}

body.menu-open {
    overflow: hidden;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* ===== HERO BÖLÜMÜ ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    scroll-snap-align: start;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
    padding: 0 50px 0 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--text-white);
    animation: fadeInUp 0.8s ease-out;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-text .btn {
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-album-cover {
    width: 340px;
    height: 340px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Vinyl Disc */
.vinyl-disc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 94%;
    height: 94%;
    background: url('../../uploads/plak.png') center/contain no-repeat;
    border-radius: 50%;
    z-index: 0;
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28%;
    height: 28%;
    background: transparent;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.vinyl-ilkay {
    color: #000;
    position: relative;
    z-index: 1;
}

.vinyl-sipahi {
    color: #fff;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-album-cover:hover .vinyl-disc {
    left: calc(50% + 80px);
}

.hero-album-cover.playing .vinyl-disc {
    left: calc(50% + 280px);
    animation: vinylSpin 2s linear infinite;
}

@keyframes vinylSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--transition-medium);
    position: relative;
    z-index: 1;
}

.hero-album-cover:hover img {
    transform: translateX(-20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.hero-image {
    display: none;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* ===== BUTONLAR ===== */
.btn {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    padding: 16px 45px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--text-white);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    opacity: 0.9;
}

.btn-primary:active {
    opacity: 0.8;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}

.btn-outline:active {
    transform: translateY(-1px);
}

/* ===== BÖLÜMLER ===== */
section {
    padding: 100px 50px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-white);
    position: relative;
}

.section-title span {
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--primary-color);
    margin: 20px auto 0;
}

/* ===== ALBÜM KARTLARI ===== */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.album-card {
    background: var(--bg-card);
    border-radius: 0;
    overflow: hidden;
    transition: all var(--transition-medium);
    cursor: pointer;
}

.album-card:hover {
    transform: translateY(-5px);
}

/* ===== SON ALBÜM (ANASAYFA) ===== */
.latest-album-section {
    background: var(--bg-darker);
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.latest-album-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.latest-album-cover {
    flex: 0 0 350px;
}

.latest-album-cover img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.latest-album-cover .no-cover {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.latest-album-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.latest-album-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.latest-album-info .album-meta {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.latest-album-info .btn {
    margin-top: 30px;
}

.album-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.album-play-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px) scale(0.8);
    transition: all var(--transition-medium);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.album-card:hover .album-play-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.album-play-btn:hover {
    transform: translateY(0) scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
}

.album-play-btn:active {
    transform: translateY(0) scale(0.95);
}

.album-play-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--text-dark);
    margin-left: 3px;
}

.album-info {
    padding: 20px;
}

.album-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

.album-card:hover .album-info h3 {
    color: var(--primary-color);
}

.album-info .year {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== MÜZİK PLAYER ===== */
.music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 0 30px;
    display: none;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.music-player.active {
    display: flex;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.player-info img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.player-info .song-title {
    font-weight: 600;
    color: var(--text-dark);
}

.player-info .artist {
    color: var(--text-light);
    font-size: 0.85rem;
}

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

.player-controls button {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.player-controls button:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

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

.player-controls .play-btn {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
    transition: all var(--transition-fast);
    font-size: 1.1rem;
    line-height: 1;
    text-align: center;
}

.player-controls .play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.player-controls .play-btn:active {
    transform: scale(0.95);
}

.player-progress {
    flex: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-bar {
    flex: 1;
    height: 5px;
    background: var(--bg-gray);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.progress-bar .progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-fast);
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.4);
}

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

.player-time {
    font-size: 0.8rem;
    color: var(--text-light);
    min-width: 45px;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-volume button {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.player-volume button:hover {
    color: var(--primary-color);
}

.volume-slider {
    width: 80px;
    height: 5px;
    background: var(--bg-gray);
    border-radius: 3px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(201, 162, 39, 0.3);
    transition: transform var(--transition-fast);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* ===== ŞARKI LİSTESİ ===== */
.songs-list {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
}

.song-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-fast);
    position: relative;
}

.song-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform var(--transition-fast);
}

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

.song-item:hover {
    padding-left: 15px;
}

.song-item:hover::before {
    transform: scaleY(1);
}

.song-number {
    width: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.song-item:hover .song-number {
    color: var(--primary-color);
}

.song-title-row {
    flex: 1;
    color: var(--text-white);
}

.song-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== SPOTIFY EMBED ===== */
.spotify-embed {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.spotify-embed iframe {
    display: block;
    border-radius: 12px;
}

/* ===== PLATFORM LİNKLERİ ===== */
.platform-links a:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.platform-links a:active {
    transform: scale(1.05);
}

/* ===== VİDEOLAR ===== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-card {
    background: var(--bg-card);
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-medium);
    break-inside: avoid;
    margin-bottom: 20px;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-thumbnail .play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-medium);
}

.video-card:hover .play-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

.play-overlay svg {
    width: 70px;
    height: 70px;
    fill: white;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
    transition: transform var(--transition-fast);
}

.video-card:hover .play-overlay svg {
    transform: scale(1.1);
}

.video-card:active .play-overlay svg {
    transform: scale(0.95);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-white);
    transition: color var(--transition-fast);
}

.video-card:hover .video-info h3 {
    color: var(--primary-color);
}

.video-info .date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== KONSERLER ===== */
.concerts-section {
    background: var(--bg-dark);
}

.concerts-list {
    max-width: 800px;
    margin: 0 auto;
}

.concert-item {
    display: flex;
    align-items: center;
    padding: 25px;
    background: var(--bg-card);
    border-radius: 0;
    margin-bottom: 15px;
    transition: all var(--transition-medium);
    border: 1px solid var(--border-color);
}

.concert-item:hover {
    transform: translateX(8px);
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.concert-date {
    text-align: center;
    padding-right: 25px;
    border-right: 1px solid var(--primary-color);
    margin-right: 25px;
}

.concert-date .day {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.concert-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.concert-info {
    flex: 1;
    padding-left: 25px;
}

.concert-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.concert-info .city {
    color: var(--text-muted);
}

.concert-ticket {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.past-concerts {
    margin-top: 60px;
}

.past-concerts h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.past-concert-item {
    opacity: 0.5;
    background: var(--bg-darker);
}

.past-concert-item .concert-info {
    text-align: left;
}

.past-concert-item .concert-info h3 {
    text-align: left;
    margin-bottom: 5px;
}

.past-concert-item .concert-info .city {
    text-align: left;
}

.past-concert-item:hover {
    opacity: 1;
    background: var(--bg-card);
}

/* ===== BİYOGRAFİ ===== */
.bio-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-white);
    text-align: center;
}

.bio-section {
    display: block;
}

.bio-image {
    float: left;
    width: 400px;
    margin-right: 60px;
    margin-bottom: 30px;
}

.bio-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-medium);
}

.bio-image img:hover {
    transform: scale(1.02);
}

.bio-section::after {
    content: "";
    display: table;
    clear: both;
}

.bio-content h2,
.bio-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-white);
}

.bio-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Biyografi sayfası sosyal medya */
.bio-content .social-links a {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.bio-content .social-links a svg {
    fill: var(--text-white);
}

.bio-content .social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.bio-content .social-links a:hover svg {
    fill: var(--bg-dark);
}

/* ===== GALERİ (Masonry) ===== */
.gallery-section {
    background: var(--bg-dark);
    scroll-snap-align: start;
    padding: 100px 0;
}

.masonry-gallery {
    columns: 4;
    column-gap: 15px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 15px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium), filter var(--transition-medium);
}

.masonry-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: fadeInScale 0.3s ease-out;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 3rem;
    cursor: pointer;
    transition: opacity var(--transition-fast);
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 0.7;
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-dark);
    padding: 60px 50px 30px;
    border-top: 1px solid var(--border-color);
    scroll-snap-align: end;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
    border-color: var(--primary-color);
}

.social-links a:active {
    transform: translateY(-2px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: white;
    transition: fill var(--transition-fast);
}

.social-links a:hover svg {
    fill: var(--bg-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ===== VİDEO MODAL ===== */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
    animation: fadeInScale 0.4s ease-out;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.video-modal-close:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: rotate(90deg);
}

.video-modal iframe,
.video-modal video {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

/* ===== RESPONSİVE ===== */

/* Tablet - 1024px ve altı */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
        background-position: center top;
    }

    .hero-content {
        padding: 0 50px;
        align-items: center;
    }

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

    .hero-text h1 {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .hero-text .subtitle {
        font-size: 1rem;
    }

    .hero-album-cover {
        width: 300px;
        height: 300px;
    }

    .hero-platforms {
        width: 300px;
        justify-content: center;
    }

    /* Tablet plak efekti */
    .hero-album-cover .vinyl-disc {
        left: 50% !important;
        animation: none !important;
    }

    .hero-album-cover.playing .vinyl-disc {
        left: calc(50% + 200px) !important;
        animation: vinylSpin 2s linear infinite !important;
    }

    .hero-album-cover,
    .hero-album-cover.playing {
        transform: none !important;
    }

    .hero-album-cover img,
    .hero-album-cover:hover img,
    .hero-album-cover.playing img {
        transform: none !important;
    }

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

    .bio-image {
        float: none;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 30px;
    }

    .bio-image img {
        margin: 0 auto;
        display: block;
    }

    .bio-content {
        text-align: left;
    }

    .bio-content h2,
    .bio-content h3 {
        font-size: 1.3rem;
    }

    section {
        padding: 60px 20px;
    }

    nav {
        padding: 15px 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    /* Albüm detay sayfası */
    .album-detail > div {
        flex-direction: column !important;
        align-items: center !important;
    }

    .album-detail > div > div:first-child {
        flex: none !important;
        width: 100% !important;
        max-width: 300px !important;
    }

    /* Galeri Masonry - Tablet */
    .masonry-gallery {
        columns: 3;
    }
}

/* Mobil - 768px ve altı */
@media (max-width: 768px) {
    /* Genel taşma önleme */
    html, body {
        overflow-x: hidden;
        scroll-snap-type: none;
    }

    .container {
        padding: 0 20px;
    }

    /* Navigasyon */
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        padding: 5px;
    }

    .logo {
        font-size: 1.1rem;
        position: relative;
        left: auto;
        transform: none;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        background-position: center center;
    }

    .hero-content {
        bottom: 60px;
        padding: 0 20px;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-text .subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero-album-cover {
        width: 220px;
        height: 220px;
        margin-bottom: 25px;
    }

    .hero-album-cover .vinyl-disc {
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .hero-album-cover.playing .vinyl-disc {
        left: calc(50% + 100px) !important;
        transform: translate(-50%, -50%) !important;
    }

    .hero-album-cover.playing .vinyl-label {
        -webkit-animation: spinLabel 2s linear infinite;
        animation: spinLabel 2s linear infinite;
    }

    @-webkit-keyframes spinLabel {
        0% { transform: translate(-50%, -50%) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg); }
    }

    @keyframes spinLabel {
        0% { transform: translate(-50%, -50%) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg); }
    }

    .hero-album-cover {
        transform: none !important;
    }

    .hero-album-cover.playing {
        transform: translateX(-40px) !important;
    }

    .hero-album-cover img,
    .hero-album-cover.playing img {
        transform: none !important;
    }

    .vinyl-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .hero-content {
        align-items: center;
        padding: 0 20px;
    }

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

    .hero-text .btn {
        padding: 14px 30px;
        font-size: 0.75rem;
    }

    /* Son Albüm */
    .latest-album-section {
        min-height: auto;
        padding: 80px 0;
    }

    .latest-album-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .latest-album-cover {
        flex: none;
        width: 100%;
        max-width: 280px;
    }

    .latest-album-info {
        width: 100%;
        text-align: center;
        min-width: auto;
    }

    .latest-album-info h3 {
        font-size: 1.8rem;
    }

    .latest-album-info .songs-list {
        text-align: left;
    }

    .btn {
        padding: 14px 35px;
        font-size: 0.8rem;
    }

    /* Bölümler */
    section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }

    /* Galeri Masonry */
    .masonry-gallery {
        columns: 2;
        column-gap: 10px;
    }

    .masonry-item {
        margin-bottom: 10px;
    }

    .gallery-section {
        padding: 60px 0;
    }

    /* Konserler */
    .concert-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .concert-date {
        border-right: none;
        border-bottom: 2px solid var(--primary-color);
        padding-right: 0;
        padding-bottom: 15px;
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
    }

    .concert-date .day {
        font-size: 2rem;
    }

    .concert-info h3 {
        font-size: 1.1rem;
    }

    .concert-ticket {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }

    .concert-ticket .btn {
        width: 100%;
        justify-content: center;
    }

    /* Müzik Player */
    .music-player {
        flex-wrap: wrap;
        padding: 10px 15px;
        gap: 10px;
    }

    .player-info {
        flex: 1 1 60%;
        min-width: 0;
    }

    .player-info img {
        width: 40px;
        height: 40px;
    }

    .player-info .song-title {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .player-info .artist {
        font-size: 0.75rem;
    }

    .player-controls {
        gap: 15px;
    }

    .player-controls .play-btn {
        width: 40px;
        height: 40px;
    }

    .player-progress {
        order: 1;
        flex-basis: 100%;
        margin-top: 5px;
    }

    .player-volume {
        display: none;
    }

    /* Şarkı listesi */
    .song-item {
        padding: 12px 15px;
    }

    .song-number {
        width: 25px;
        font-size: 0.85rem;
    }

    .song-title-row {
        font-size: 0.95rem;
    }

    .song-duration {
        font-size: 0.8rem;
    }

    /* Videolar */
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-info h3 {
        font-size: 0.95rem;
    }

    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        top: -35px;
        font-size: 1.5rem;
    }

    /* Albümler */
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .album-info {
        padding: 15px;
    }

    .album-info h3 {
        font-size: 0.95rem;
    }

    /* Biyografi */
    .bio-section {
        gap: 30px;
    }

    .bio-content h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .bio-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .social-links {
        justify-content: center;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .social-links a svg {
        width: 18px;
        height: 18px;
    }

    /* Footer */
    footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 0.8rem;
    }
}

/* Küçük mobil - 480px ve altı */
@media (max-width: 480px) {
    .hero {
        background-position: 65% center;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .hero-text .btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

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

    .albums-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .concert-date .day {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.8rem;
    }

    .player-info {
        gap: 10px;
    }

    .player-info img {
        width: 35px;
        height: 35px;
    }

    .player-controls {
        gap: 10px;
    }

    .player-controls button {
        font-size: 1rem;
    }

    .player-controls .play-btn {
        width: 35px;
        height: 35px;
    }

    .bio-image img {
        max-width: 280px;
    }

    .bio-content h1 {
        font-size: 1.5rem;
    }
}

/* Yatay mobil için */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 20px 30px;
    }
}

/* Touch cihazlar için hover efektlerini kaldır */
@media (hover: none) {
    .album-card:hover {
        transform: none;
    }

    .video-card:hover {
        transform: none;
    }

    .video-card .play-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.3);
    }

    .album-play-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .concert-item:hover {
        transform: none;
    }
}

/* ===== UTILITY CLASSES ===== */
.page-main {
    padding-top: 20px;
    min-height: auto;
    background: var(--bg-dark);
}

/* Alt sayfalarda scroll-snap kapat */
.page-main ~ footer {
    scroll-snap-align: none;
}

body:has(.page-main) {
    scroll-snap-type: none;
}

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

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

.mb-10 {
    margin-bottom: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.p-40 {
    padding: 40px;
}

/* Albüm Detay - Müzik Sayfası */
.album-detail {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.album-detail:last-child {
    border-bottom: none;
}

.album-detail-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.album-detail-cover {
    flex: 0 0 300px;
}

.album-detail-cover img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.album-detail-cover .no-cover {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-detail-info {
    flex: 1;
    min-width: 300px;
}

.album-detail-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.album-detail-info .album-meta {
    color: var(--text-muted);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Platform Linkleri */
.platform-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.platform-link:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.platform-link.spotify {
    background: #1DB954;
}

.platform-link.apple-music {
    background: linear-gradient(135deg, #FA243C, #D51A2E);
}

.platform-link.youtube-music {
    background: #FF0000;
}

.platform-link.deezer {
    background: #191919;
}

/* Hero Platform Links */
.hero-platforms {
    justify-content: center;
    margin-top: 10px;
    width: 340px;
}

.hero-platforms .platform-link {
    width: 50px;
    height: 50px;
}

/* Konserler */
.empty-message {
    text-align: center;
    color: var(--text-muted);
    padding: 40px;
}

.btn-disabled {
    opacity: 0.5;
    cursor: default;
}

/* Gizli İkonlar (JS ile toggle) */
.hidden {
    display: none !important;
}

/* Video placeholder */
.video-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobil için albüm detay */
@media (max-width: 768px) {
    .album-detail-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .album-detail-cover {
        flex: none;
        width: 100%;
        max-width: 280px;
    }

    .album-detail-info {
        width: 100%;
        text-align: center;
        min-width: auto;
    }

    .album-detail-info h2 {
        font-size: 1.5rem;
    }

    .album-detail-info .songs-list {
        text-align: left;
    }
}
