/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --primary-light: #f4e4bc;
    --secondary-color: #1a1a2e;
    --accent-color: #c9a961;
    --accent-dark: #8b6914;
    --dark-bg: #0f0f1e;
    --darker-bg: #0a0a14;
    --text-color: #1a1a2e;
    --text-light: #4a4a5a;
    --white: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #1a1a2e;
    --gradient-1: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 50%, #0a0a14 100%);
    --gradient-2: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #b8941f 100%);
    --gradient-3: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    --gradient-4: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, rgba(15, 15, 30, 0.5) 50%, rgba(10, 10, 20, 0.6) 100%);
    --shadow-sm: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.2);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.3);
    --shadow-hover: 0 15px 50px rgba(212, 175, 55, 0.3);
    --shadow-gold: 0 5px 30px rgba(212, 175, 55, 0.4);
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation - Modern Glass Effect */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo-image {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.logo a:hover {
    transform: scale(1.05);
}

.logo a:hover .logo-image {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Full Screen with Parallax */
.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: moveBackground 25s linear infinite;
    z-index: 1;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
    animation: fadeInDown 1s ease 0.3s both;
}

.hero-badge i {
    font-size: 1.2rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.4);
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.95;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.hero-scroll:hover {
    opacity: 1;
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 30px rgba(0,0,0,0.8), 0 0 40px rgba(212, 175, 55, 0.3);
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--white);
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    border-radius: 2px;
}


.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons - Modern Gradient */
.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--secondary-color);
    z-index: 1;
    box-shadow: var(--shadow-gold);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-primary i {
    font-size: 1.2rem;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-hover);
    color: var(--secondary-color);
    background: linear-gradient(135deg, #f4e4bc 0%, #d4af37 50%, #c9a961 100%);
}

.btn-outline {
    background: rgba(26, 26, 46, 0.3);
    color: var(--white);
    border: 3px solid var(--primary-color);
    backdrop-filter: blur(10px);
    z-index: 1;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-outline i {
    font-size: 1.1rem;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-color);
}

.btn-sm {
    padding: 12px 28px;
    font-size: 0.9rem;
}

/* Sections with Background Patterns */
section {
    padding: 3rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
    color: var(--secondary-color);
    letter-spacing: -1px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Video Grid - Modern Card Design */
.videos-section {
    background: var(--white);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.video-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.video-card:hover::before {
    opacity: 0.05;
}

.video-thumbnail {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 56.25%;
    background: var(--gradient-3);
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.15) rotate(2deg);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(212, 175, 55, 0.95);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-gold);
    z-index: 2;
    font-weight: 900;
}

.video-thumbnail:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.2);
    background: var(--primary-color);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.7);
    width: 100px;
    height: 100px;
}

.video-card h3 {
    padding: 1.5rem;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

.video-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* News Grid - Magazine Style */
.news-section {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.news-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.news-card:hover::after {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.news-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: var(--gradient-3);
}

.news-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.news-card:hover .news-image img {
    transform: scale(1.2);
}

.news-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.news-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.news-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 700;
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more:hover {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.read-more:hover {
    gap: 1rem;
    transform: translateX(5px);
}

/* Concerts - Modern Timeline Style */
.concerts-section {
    background: var(--gradient-1);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.concerts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.concerts-section .section-title {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.concerts-section .section-title::after {
    background: var(--white);
}

.concerts-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.concert-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 2.5rem;
    align-items: center;
    transition: all 0.4s;
    border: 1px solid rgba(255,255,255,0.2);
}

.concert-card:hover {
    transform: translateX(15px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.concert-date {
    text-align: center;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 100px;
    box-shadow: var(--shadow-gold);
    font-weight: 800;
}

.concert-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.concert-date .month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.concert-info {
    flex: 1;
}

.concert-info h3 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
}

.concert-info .venue,
.concert-info .time {
    color: rgba(255,255,255,0.9);
    margin: 0.8rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.concert-info .venue i,
.concert-info .time i {
    font-size: 1.2rem;
}

/* Spotify Player Section */
.spotify-section {
    background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.spotify-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.spotify-section .section-title {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    position: relative;
    z-index: 1;
}

.spotify-section .section-title::after {
    background: var(--white);
}

.spotify-player-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.spotify-embed-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s;
}

.spotify-embed-container:hover {
    transform: translateY(-5px);
}

    .spotify-embed-container iframe {
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        min-height: 352px;
    }

    .spotify-section {
        padding: 2rem 0;
    }

    .spotify-embed-container {
        padding: 1.5rem;
    }
}

/* Music Grid - Album Cover Style */
.music-section {
    background: var(--white);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.music-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
}

.music-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    opacity: 0;
    transition: opacity 0.4s;
}

.music-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-hover);
}

.music-card:hover::before {
    opacity: 0.05;
}

.music-cover {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    background: var(--gradient-3);
}

.music-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.music-card:hover .music-cover img {
    transform: scale(1.15) rotate(5deg);
}

.music-info {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
}

.music-info h3 {
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 800;
}

.album-name {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.music-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.music-link {
    color: var(--primary-color);
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.music-link:hover {
    transform: scale(1.2) rotate(10deg);
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-color);
}

/* Music Page with Spotify Players */
.music-page {
    padding: 2rem 0;
    background: var(--bg-light);
}

.music-list-with-player {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.music-item-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.music-item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.music-item-header {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    align-items: flex-start;
}

.music-item-cover {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--gradient-3);
}

.music-item-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.music-item-card:hover .music-item-cover img {
    transform: scale(1.1);
}

.music-item-info {
    flex: 1;
}

.music-item-info h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.music-item-info .album-name,
.music-item-info .release-date {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.music-item-info .album-name i,
.music-item-info .release-date i {
    color: var(--primary-color);
    width: 20px;
}

.music-item-info .description {
    color: var(--text-color);
    line-height: 1.8;
    margin: 1.5rem 0;
    font-size: 1rem;
}

.music-item-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.music-item-links .music-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    width: auto;
    height: auto;
}

.music-item-links .music-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.music-item-links .music-link i {
    font-size: 1.2rem;
}

.music-spotify-player {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    padding: 2rem;
    border-top: 3px solid var(--primary-color);
    position: relative;
}

.music-spotify-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.spotify-player-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.spotify-player-header i {
    font-size: 2rem;
    color: #1db954;
    text-shadow: 0 0 20px rgba(29, 185, 84, 0.5);
}

.music-spotify-player iframe {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Contact Page */
.page-header {
    background: var(--gradient-1);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--primary-color);
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-info h2 {
    margin-bottom: 2.5rem;
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    border-radius: 2px;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s;
    background: var(--bg-light);
}

.contact-item:hover {
    background: var(--gradient-2);
    color: var(--secondary-color);
    transform: translateX(10px);
    box-shadow: var(--shadow-gold);
}

.contact-item:hover i,
.contact-item:hover h3,
.contact-item:hover p {
    color: var(--white);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
    transition: all 0.3s;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 700;
    transition: all 0.3s;
}

.contact-item p {
    color: var(--text-light);
    transition: all 0.3s;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    background: transparent;
    padding: 0;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text-color);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.required {
    color: var(--primary-color);
}

/* Footer - Modern Gradient */
.footer {
    background: var(--gradient-1);
    color: var(--white);
    padding: 1.2rem 0 0.6rem;
    margin-top: 0;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .footer {
        padding: 1rem 0 0.5rem;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 0.8rem 0 0.4rem;
        margin-top: 0;
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-color);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 0.8rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 0.8rem;
        margin-bottom: 0.6rem;
        text-align: left;
    }
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.6rem;
    font-weight: 700;
    text-align: left;
}

/* Sosyal Medya başlığını ortala */
.footer-section:last-child h4 {
    text-align: center;
}

.footer-section h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.footer-section h4 {
    font-size: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .footer-section p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

.footer-section ul {
    list-style: none;
}

.footer-section ul {
    text-align: left;
}

.footer-section ul li {
    margin-bottom: 0;
    line-height: 1.8;
}

.footer-section ul li a {
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .footer-section ul li {
        margin-bottom: 0;
        line-height: 1.6;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
    }
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
    line-height: 1;
    padding: 0;
}

@media (max-width: 768px) {
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .social-links {
        gap: 0.6rem;
        justify-content: center;
    }
}

.social-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        padding-top: 0.6rem;
        font-size: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        padding-top: 0.5rem;
        font-size: 0.75rem;
        line-height: 1.4;
        text-align: center;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.no-content {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
}

.no-content i {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    opacity: 0.3;
}

/* Pagination - Modern Style */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.page-link {
    padding: 12px 20px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
    font-weight: 600;
    min-width: 45px;
    text-align: center;
}

.page-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.page-link.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-gold);
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* News Detail */
.news-detail-page {
    padding: 1.5rem 0;
    background: var(--bg-light);
}

.news-detail {
    background: var(--white);
    border-radius: 25px;
    padding: 4rem;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.news-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
}

.news-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--secondary-color);
    position: relative;
}

.news-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
    border-radius: 2px;
}

.news-detail-image {
    margin: 3rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.news-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-detail-content {
    font-size: 1.2rem;
    line-height: 2;
    white-space: pre-wrap;
    color: var(--text-color);
}

.news-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
}

.related-news {
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.related-news h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    position: relative;
}

.related-news h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    border-radius: 2px;
}

.related-news-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.related-news-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.related-news-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.related-news-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.related-news-item h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.related-news-item h3 a:hover {
    color: var(--primary-color);
}

/* Concert Card Large */
.concert-card-large {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    margin-bottom: 2.5rem;
    transition: all 0.4s;
}

.concert-card-large:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.concert-image {
    width: 400px;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gradient-3);
}

.concert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.concert-card-large:hover .concert-image img {
    transform: scale(1.15);
}

.concert-content {
    flex: 1;
    display: flex;
    gap: 2.5rem;
    padding: 2.5rem;
}

.concert-date-large {
    text-align: center;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 2rem;
    border-radius: 20px;
    min-width: 120px;
    height: fit-content;
    box-shadow: var(--shadow-gold);
}

.concert-date-large .day {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.concert-date-large .month {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.concert-date-large .year {
    display: block;
    font-size: 1rem;
    margin-top: 0.8rem;
    opacity: 0.9;
}

.concert-info-large h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 900;
}

.concert-info-large .venue,
.concert-info-large .time {
    color: var(--text-light);
    margin: 1rem 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.concert-info-large .description {
    margin: 1.5rem 0;
    line-height: 1.8;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar .container {
        padding: 0 20px;
    }

    .logo-image {
        max-height: 40px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .spotify-section {
        padding: 2rem 0;
    }

    .spotify-embed-container {
        padding: 1.5rem;
    }

    .spotify-embed-container iframe {
        min-height: 300px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
        padding: 5rem 0 2rem;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Body scroll lock when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .nav-menu li {
        padding: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 1.5rem 2rem;
        display: block;
        width: 100%;
        color: var(--text-color);
        font-weight: 600;
        transition: all 0.3s;
        position: relative;
    }

    .nav-menu a::before {
        display: none;
    }

    .nav-menu a.active,
    .nav-menu a:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--primary-color);
        padding-left: 2.5rem;
    }

    .nav-menu a.active::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary-color);
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .hamburger span {
        background: var(--text-color);
    }

    .hamburger.active span {
        background: var(--primary-color);
    }

    .hero {
        min-height: 80vh;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .video-grid,
    .news-grid,
    .music-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .music-item-header {
        flex-direction: column;
        text-align: center;
    }

    .music-item-cover {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .music-item-info h3 {
        font-size: 1.5rem;
    }

    .music-item-links {
        justify-content: center;
    }

    .music-spotify-player {
        padding: 1.5rem;
    }

    .music-spotify-player iframe {
        height: 300px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        position: static;
        padding: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .concert-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .concert-date {
        margin: 0 auto 1.5rem;
    }

    .concert-card-large {
        flex-direction: column;
    }

    .concert-image {
        width: 100%;
        height: 250px;
    }

    .concert-content {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .concert-date-large {
        margin: 0 auto;
    }

    .page-header {
        padding: 2.5rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .news-detail {
        padding: 2rem;
        border-radius: 15px;
    }

    .news-header h1 {
        font-size: 2rem;
    }

    .news-detail-content {
        font-size: 1.1rem;
    }

    .about-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .page-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .logo-image {
        max-height: 35px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-menu {
        padding: 4rem 0 2rem;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }

    .hamburger {
        padding: 5px;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    section {
        padding: 2rem 0;
    }

    .video-card,
    .news-card,
    .music-card {
        border-radius: 15px;
    }

    .video-card h3,
    .news-content h3 {
        font-size: 1.2rem;
    }

    .news-image {
        height: 200px;
    }

    .news-content,
    .video-card {
        padding: 1.5rem;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }
    
    .news-detail {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .news-header h1 {
        font-size: 1.8rem;
    }

    .news-detail-content {
        font-size: 1rem;
        line-height: 1.8;
    }

    .concert-card {
        padding: 1.2rem;
    }

    .concert-content {
        padding: 1.5rem;
    }

    .music-info {
        padding: 1.5rem 1rem;
    }

    .music-item-header {
        padding: 1.5rem;
    }

    .music-item-cover {
        width: 100%;
        height: 250px;
    }

    .music-item-info h3 {
        font-size: 1.3rem;
    }

    .music-spotify-player {
        padding: 1rem;
    }

    .music-spotify-player iframe {
        height: 250px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .related-news-item {
        flex-direction: column;
        text-align: center;
    }

    .related-news-item img {
        width: 100%;
        height: 200px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Touch Improvements */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Better Touch Targets for Mobile */
@media (max-width: 768px) {
    a, button, input, textarea, select {
        min-height: 44px;
        min-width: 44px;
    }

    .btn {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu a {
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-link,
    .filter-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: var(--darker-bg);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10001;
    display: flex;
    flex-direction: column;
}

.video-modal.active .video-modal-content {
    transform: scale(1) translateY(0);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10002;
}

.video-modal-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    transform: rotate(90deg) scale(1.1);
}

.video-modal-header {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-header h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.video-modal-body {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.video-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Video Modal */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        max-height: 85vh;
        border-radius: 15px;
    }

    .video-modal-header {
        padding: 1rem 1.5rem;
    }

    .video-modal-header h3 {
        font-size: 1.2rem;
        padding-right: 3rem;
    }

    .video-modal-body {
        padding: 1rem;
    }

    .video-modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        height: 100%;
    }

    .video-modal-header {
        padding: 0.8rem 1rem;
    }

    .video-modal-header h3 {
        font-size: 1rem;
    }

    .video-modal-body {
        padding: 0.5rem;
    }

    .video-embed-container {
        border-radius: 8px;
    }
}
