/* =============================================
   RADYO EKSEN - ANA STİL DOSYASI
   ============================================= */

:root {
  --color-bg: #0d0d0d;
  --color-bg-alt: #111111;
  --color-bg-section: #1a1a1a;
  --color-accent: #d4b800;
  --color-accent-hover: #f0d000;
  --color-text: #ffffff;
  --color-text-muted: #aaaaaa;
  --color-border: #2a2a2a;
  --color-player: #0a0a0a;
  --font-main: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --header-height: 60px;
  --player-height: 60px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* =============================================
   COOKIE BANNER
   ============================================= */

#cookie-banner {
  position: fixed;
  bottom: var(--player-height);
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.97);
  border-top: 1px solid var(--color-border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  flex-wrap: wrap;
}

#cookie-banner p {
  font-size: 12px;
  color: #ccc;
  flex: 1;
  min-width: 200px;
}

#cookie-banner a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-buttons button {
  padding: 8px 18px;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-cookie-settings {
  background: #333;
  color: #fff;
}

.btn-cookie-settings:hover {
  background: #444;
}

.btn-cookie-reject {
  background: #555;
  color: #fff;
}

.btn-cookie-reject:hover {
  background: #666;
}

.btn-cookie-accept {
  background: var(--color-accent);
  color: #000;
}

.btn-cookie-accept:hover {
  background: var(--color-accent-hover);
}

/* =============================================
   HEADER
   ============================================= */

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1000;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 20px;
}

.logo-link {
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 30px;
}

.main-nav a {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ddd;
  padding: 6px 14px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.04);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.social-icons a {
  color: #bbb;
  font-size: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #333;
  transition: color 0.2s, border-color 0.2s;
}

.social-icons a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 12px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.97);
  padding: 12px 0;
  border-top: 1px solid var(--color-border);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-main);
  font-size: 15px;
  letter-spacing: 1px;
  padding: 12px 24px;
  color: #ddd;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav a:hover {
  color: var(--color-accent);
  background: rgba(255,255,255,0.03);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: 500px;
  max-height: 800px;
  margin-top: var(--header-height);
  overflow: hidden;
  background: #0a0a0a;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Hero - programcı fotoğrafları (CSS ile oluşturulan kompozisyon) */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #0d0d0d;
  z-index: 0;
}

.hero-djs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
  gap: 0;
}

.hero-dj-img {
  flex: 1;
  max-width: 220px;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.85) contrast(1.05);
  transition: filter 0.3s;
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.hero-dj-img:hover {
  filter: brightness(1) contrast(1.1);
}

/* =============================================
   RADIO PLAYER BAR
   ============================================= */

.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--player-height);
  background: var(--color-player);
  border-top: 2px solid var(--color-accent);
  z-index: 1001;
  display: flex;
  align-items: center;
}

.player-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  border: none;
  color: #000;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.1s;
  flex-shrink: 0;
}

.play-btn:hover {
  background: var(--color-accent-hover);
  transform: scale(1.05);
}

.mute-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px;
}

.mute-btn:hover {
  color: var(--color-accent);
}

.volume-wrap {
  display: flex;
  align-items: center;
}

#volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 3px;
  background: #444;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

#volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
}

#volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
  border: none;
}

.now-playing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.now-label {
  font-family: var(--font-main);
  font-size: 11px;
  color: #777;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.song-title {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

.song-title:hover {
  color: var(--color-accent-hover);
}

.current-dj {
  flex-shrink: 0;
}

.dj-name {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  padding: 4px 12px;
  border: 1px solid #333;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.dj-name:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* =============================================
   PROGRAM CAROUSEL
   ============================================= */

.program-carousel-section {
  background: var(--color-bg-section);
  padding: 0;
  border-bottom: 1px solid var(--color-border);
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.program-card {
  flex: 0 0 25%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 24px;
  border-right: 1px solid var(--color-border);
  transition: background 0.2s;
  cursor: pointer;
}

.program-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

.program-card-img-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-border);
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.program-card:hover .program-card-img-wrap {
  border-color: var(--color-accent);
}

.program-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card-info {
  text-align: center;
}

.program-day-time {
  font-family: var(--font-main);
  font-size: 12px;
  color: #888;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 8px;
  line-height: 1.4;
}

.program-dj-name {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.program-show-name {
  font-family: var(--font-main);
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  border: 1px solid #333;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #000;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

/* =============================================
   SON 10 ŞARKI
   ============================================= */

.last-songs-section {
  background: #f5f5f5;
  padding: 40px 0;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #111;
}

.songs-list {
  list-style: none;
}

.songs-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  gap: 12px;
}

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

.songs-list li a {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #222;
  transition: color 0.2s;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.songs-list li a:hover {
  color: #000;
  text-decoration: underline;
}

.songs-list li span {
  font-family: var(--font-main);
  font-size: 13px;
  color: #888;
  flex-shrink: 0;
}

/* =============================================
   YAYIN AKIŞI / SCHEDULE
   ============================================= */

.schedule-section {
  background: var(--color-bg);
  padding: 0 0 60px;
}

.schedule-days {
  display: flex;
  align-items: center;
  background: #111;
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
}

.schedule-days::-webkit-scrollbar {
  display: none;
}

.day-tab {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #888;
  padding: 16px 22px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.day-tab:hover {
  color: #fff;
}

.day-tab.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.schedule-day-content {
  display: none;
}

.schedule-day-content.active {
  display: block;
}

.schedule-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  min-height: 90px;
  transition: background 0.2s;
  position: relative;
}

.schedule-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.schedule-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  min-width: 90px;
  padding: 16px 10px;
  border-right: 3px solid var(--color-accent);
  gap: 2px;
}

.schedule-time span {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.5px;
}

.schedule-info {
  flex: 1;
  padding: 16px 24px;
  min-width: 0;
}

.schedule-info a {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  transition: color 0.2s;
}

.schedule-info a:hover {
  color: var(--color-accent);
}

.schedule-img {
  width: 120px;
  min-width: 120px;
  height: 90px;
  overflow: hidden;
  flex-shrink: 0;
}

.schedule-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s;
}

.schedule-item:hover .schedule-img img {
  transform: scale(1.05);
}

/* =============================================
   FOOTER
   ============================================= */

.main-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding: 50px 0 80px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 50px;
}

.footer-col h3 {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

/* About */
.footer-about p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-about a {
  color: var(--color-accent);
}

.app-download-label {
  font-family: var(--font-main);
  font-size: 13px;
  color: var(--color-accent) !important;
  letter-spacing: 0.5px;
  margin-bottom: 10px !important;
}

.app-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #222;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-family: var(--font-main);
  letter-spacing: 0.5px;
  border: 1px solid #333;
  transition: background 0.2s, border-color 0.2s;
}

.app-btn:hover {
  background: #333;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Events */
.events-list {
  list-style: none;
}

.events-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition: background 0.2s;
}

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

.events-list li:hover .event-name {
  color: var(--color-accent);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1a1a1a;
  border: 1px solid var(--color-border);
  padding: 6px 10px;
  min-width: 52px;
  border-radius: 2px;
}

.event-day {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.event-month {
  font-family: var(--font-main);
  font-size: 11px;
  color: #aaa;
  letter-spacing: 1px;
}

.event-year {
  font-family: var(--font-main);
  font-size: 10px;
  color: #666;
}

.event-name {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  transition: color 0.2s;
}

/* Contact */
.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 16px;
}

.footer-address {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 12px;
}

.kunye-btn {
  background: #222;
  border: 1px solid #444;
  color: #ccc;
  padding: 6px 18px;
  font-family: var(--font-main);
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  margin-bottom: 14px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.kunye-btn:hover {
  background: #333;
  color: var(--color-accent);
}

.footer-contact p {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 6px;
  line-height: 1.5;
}

.footer-contact a {
  color: var(--color-accent);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--color-accent-hover);
}

.footer-links {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  font-size: 12px;
  color: #666;
  transition: color 0.2s;
}

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

/* =============================================
   BACK TO TOP
   ============================================= */

.back-to-top {
  position: fixed;
  bottom: calc(var(--player-height) + 16px);
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  z-index: 500;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: scale(1.1);
  background: var(--color-accent-hover);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .program-card {
    flex: 0 0 33.333%;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .social-icons {
    gap: 8px;
  }

  .social-icons a {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .hero-section {
    height: 60vw;
    min-height: 280px;
    max-height: 500px;
  }

  .hero-section::before {
    background-size: 33% auto, 33% auto, 33% auto;
    background-position: left 0 bottom 0, center bottom 0, right 0 bottom 0;
  }

  .program-card {
    flex: 0 0 50%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-about {
    grid-column: auto;
  }

  .schedule-time {
    width: 70px;
    min-width: 70px;
  }

  .schedule-img {
    width: 80px;
    min-width: 80px;
  }

  .schedule-info a {
    font-size: 13px;
  }

  .now-playing .now-label {
    display: none;
  }

  #volume-slider {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .program-card {
    flex: 0 0 100%;
  }

  .schedule-img {
    display: none;
  }

  .player-inner {
    padding: 0 12px;
    gap: 10px;
  }

  .dj-name {
    display: none;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

/* =============================================
   ANIMATIONS
   ============================================= */

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

.program-card,
.schedule-item,
.songs-list li {
  animation: fadeInUp 0.4s ease both;
}

.program-card:nth-child(1) { animation-delay: 0.05s; }
.program-card:nth-child(2) { animation-delay: 0.1s; }
.program-card:nth-child(3) { animation-delay: 0.15s; }
.program-card:nth-child(4) { animation-delay: 0.2s; }
.program-card:nth-child(5) { animation-delay: 0.25s; }

/* =============================================
   SUB PAGES STYLES
   ============================================= */

.sub-page {
  background-color: #f9f9f9;
  color: #333;
}

.sub-page #main-header {
  background: #000;
}

.content-wrapper {
  padding: 100px 0 60px;
  min-height: calc(100vh - 120px);
}

.page-title {
  font-family: var(--font-main);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.page-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  margin: 15px auto 0;
}

/* News Grid */
.news-grid, .interviews-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-item, .interview-item {
  display: flex;
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover, .interview-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.news-img-wrap, .interview-img-wrap {
  flex: 0 0 40%;
  max-height: 400px;
}

.news-img-wrap img, .interview-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content, .interview-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-content h2, .interview-content h2 {
  font-family: var(--font-main);
  font-size: 28px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.interview-content .date {
  font-size: 13px;
  color: #888;
  margin-bottom: 15px;
  display: block;
}

.interview-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.more-news-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.btn-more {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-family: var(--font-main);
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-more:hover {
  background: var(--color-accent);
  color: #000;
}

/* Events Full List */
.events-full-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.event-row {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
  gap: 25px;
}

.event-date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
  border-right: 2px solid var(--color-accent);
}

.event-date-box .day {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.event-date-box .month {
  font-family: var(--font-main);
  font-size: 14px;
  color: #777;
}

.event-details {
  flex: 1;
}

.event-details h3 {
  font-family: var(--font-main);
  font-size: 20px;
  letter-spacing: 0.5px;
}

.btn-ticket {
  border: 2px solid #111;
  padding: 8px 24px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.2s;
}

.btn-ticket:hover {
  background: #111;
  color: #fff;
}

/* DJs Grid */
.djs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.dj-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.dj-card:hover {
  transform: scale(1.03);
}

.dj-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 15px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.dj-card:hover img {
  filter: grayscale(0%);
}

.dj-card h3 {
  font-family: var(--font-main);
  font-size: 20px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .news-item, .interview-item {
    flex-direction: column;
  }
  .news-img-wrap, .interview-img-wrap {
    flex: 0 0 auto;
  }
  .event-row {
    flex-direction: column;
    text-align: center;
  }
  .event-date-box {
    border-right: none;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 10px;
  }
}
