* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

.carousel-row, .carousel-full, .carousel, .insight-section, .featured-cards {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  margin-top: 15px;
}

body {
  background: #f5f5f5;
  min-height: 100vh;
  font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.title, .fc-title, .featured-title, .insight-header-title,
.festivals-title, .sahneler-title, .mega-rec-title, .rec-title,
.event-title, .event-artist-name, .artist-hero-title,
.upcoming-title, .upcoming-title-green, .upcoming-title-black,
.other-concerts-title {
  font-family: 'Kanit', 'Outfit', 'Segoe UI', Arial, sans-serif;
}
.site-frame {
  max-width: 1440px;
  margin: 0 auto;
  background: #f5f5f5;
  position: relative;
  z-index: 3;
}
.header {
  padding: 18px 0 12px 0; 
  padding-top: calc(18px + env(safe-area-inset-top, 0px));
  display: flex; 
  flex-direction: column; 
  background: #f5f5f5; 
  position: fixed;
  top: 0; 
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

/* Header için body padding */
body {
  padding-top: 75px;
  padding-top: calc(75px + env(safe-area-inset-top, 0px));
}

.header-row { 
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
.logo { flex-shrink: 0; }
.logo-img { height:32px; max-width:unset; display:inline-block; }
.main-search { flex: 1 1 300px; max-width:600px; min-width:260px; width:100%; margin: 0 32px; position:relative; }
.main-search input { width: 100%; padding: 11px 20px 11px 42px; border-radius: 20px; margin-left: 120px; border: 1.5px solid #e6e6e6; background: #fbfbfb; color: #222; font-size: 13px; }
.main-search i {
  position:absolute; left:135px; top:50%; transform:translateY(-50%); color:#bdbdbd; font-size:16px;}
.header-links { display:flex; align-items:center; gap:18px; margin-left:auto;}
.header-link { color:#222; text-decoration:none; display:inline-flex; align-items:center; gap:7px; font-size:15px; font-weight:400; opacity:.92; padding:7px 0 5px 0; position:relative; cursor: pointer; }
.header-link.active { color:#16df49; font-weight:500; }
.header-link.active:after { content:''; display:block; background:#16df49; height:3px; border-radius:1.5px; width: 90%; position: absolute; left: 5%; bottom: 0;}
.header-btn { background:#16df49; color: #fff; border:none; border-radius:7px; padding:10px 25px; font-size:14px; font-weight:600; cursor:pointer; transition:background-color .18s;}
.header-btn:hover {background: #12bb3b;}

/* Search Modal */
.search-modal {
  position: absolute;
  top: calc(100% + 8px);
  left: 120px;
  width: calc(100% - 120px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-section {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.search-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.search-section-title {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-section-title i {
  font-size: 14px;
  color: #aaa;
}

/* Son Aramalar */
.search-recent-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.search-recent-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 6px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.search-recent-item:hover {
  background: #f8f8f8;
}

.search-recent-item i {
  color: #ccc;
  font-size: 13px;
}

.search-recent-text {
  flex: 1;
  font-size: 14px;
  color: #222;
  font-weight: 500;
}

.search-recent-time {
  font-size: 12px;
  color: #aaa;
}

/* Popüler Kategoriler */
.search-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.search-category-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid #eee;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 13px;
  font-weight: 500;
  color: #222;
}

.search-category-item:hover {
  border-color: #16df49;
  background: #f0fff4;
}

.search-cat-icon {
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border-radius: 8px;
}

/* Öneriler */
.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-tag {
  padding: 8px 14px;
  background: #f5f5f5;
  border-radius: 16px;
  font-size: 13px;
  color: #444;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.search-tag:hover {
  background: #e8e8e8;
}

.search-tag-hot {
  background: #fff5f5;
  color: #ff6b35;
}

.search-tag-hot:hover {
  background: #ffe8e0;
}

.search-tag-hot i {
  margin-right: 4px;
}

/* Search Modal Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mega Menu */
.mega-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-30px);
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 74px;
  border-radius: 0 0 20px 20px;
  pointer-events: none;
}

.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu-content {
  max-width: 1200px;
  width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
  display: flex;
  gap: 60px;
  background: #fff;
  border-radius: 12px;
}

.mega-menu-section {
  flex: 1;
}

.mega-menu-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #16df49;
}

.mega-menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-section li {
  margin-bottom: 12px;
}

.mega-menu-section a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.mega-menu-section ul li a:hover {
  background: #d4f8dc !important;
  color: #16df49 !important;
  padding-left: 20px !important;
  font-size: 15.5px !important;
  font-weight: 600 !important;
  transform: translateX(6px) scale(1.02) !important;
  box-shadow: 0 2px 8px rgba(22, 223, 73, 0.15);
}

.mega-menu-section a i {
  color: #16df49;
  width: 18px;
  transition: all 0.3s ease;
}

.mega-menu-section ul li a:hover i {
  transform: scale(1.2);
  color: #0ec73a;
}

/* Mobil kapatma butonu - desktop'ta gizle */
.mega-cat-close-mobile {
  display: none;
}

/* Kategoriler Mega Menu - Yeni Tasarım */
.mega-menu-kategoriler .mega-menu-content {
  max-width: 1400px;
  width: 100%;
  padding: 30px;
  gap: 0;
}

.mega-menu-kategoriler-content {
  display: flex;
  gap: 0;
  width: 100%;
}

/* Sol Sidebar - Ana Kategoriler */
.mega-cat-sidebar {
  width: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 30px;
  border-right: 1px solid #eee;
}

.mega-cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mega-cat-item:hover {
  background: #f5f5f5;
  color: #222;
}

.mega-cat-item.active {
  background: #16df49;
  color: #fff;
}

.mega-cat-item i {
  font-size: 16px;
  width: 20px;
}

/* Orta Bölüm - Alt Kategoriler */
.mega-cat-content {
  flex: 1;
  padding: 0 40px;
  min-height: 300px;
}

.mega-cat-panel {
  display: none;
}

.mega-cat-panel.active {
  display: block;
}

.mega-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mega-cat-box {
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 12px;
  border-radius: 8px;
}

.mega-cat-box:hover {
  background: #f8f8f8;
}

.mega-cat-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px 0;
}

.mega-cat-box p {
  font-size: 13px;
  color: #777;
  margin: 0;
  line-height: 1.5;
}

/* Sağ Bölüm - Öneriler */
.mega-cat-recommendations {
  width: 280px;
  flex-shrink: 0;
  padding-left: 30px;
  border-left: 1px solid #eee;
}

.mega-rec-title {
  font-size: 16px;
  font-weight: 700;
  color: #ff6b35;
  margin: 0 0 20px 0;
}

.mega-rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mega-rec-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.mega-rec-card:hover {
  transform: translateY(-4px);
}

.mega-rec-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.mega-rec-name {
  font-size: 12px;
  font-weight: 600;
  color: #222;
  text-align: center;
}

.mega-rec-badge {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-soldout {
  background: #ff4444;
  color: #fff;
}

.badge-limited {
  background: #ff9500;
  color: #fff;
}

.badge-new {
  background: #16df49;
  color: #fff;
}

/* Giriş Mega Menu */
.mega-menu-login .mega-menu-content {
  max-width: 700px;
  width: 700px;
  gap: 0;
}

.mega-menu-login-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.login-section, .register-section {
  flex: 1;
  padding: 20px;
}

.login-section h3, .register-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-form input {
  padding: 12px 16px;
  border: 1.5px solid #e6e6e6;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.login-form input:focus {
  outline: none;
  border-color: #16df49;
}

.forgot-password {
  font-size: 13px;
  color: #16df49;
  text-decoration: none;
  align-self: flex-end;
}

.login-submit-btn, .register-btn {
  background: #16df49;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.login-submit-btn:hover, .register-btn:hover {
  background: #12bb3b;
}

.login-divider {
  width: 1px;
  background: #e6e6e6;
  margin: 0 20px;
}

.register-section p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.social-login {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn {
  background: #fff;
  border: 1.5px solid #e6e6e6;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: #16df49;
  background: #f8fff9;
}

.social-btn.google i {
  color: #DB4437;
}

.social-btn.facebook i {
  color: #4267B2;
}

/* Mega menu overlay */
.mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mega-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.featured {
  padding: 38px 0 0 0;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.featured-row {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 0 20px;
  box-sizing: border-box;
}
.featured-icon { width:38px; height:38px; background:#111; border-radius:8px; color:#fff; display:flex; align-items:center; justify-content:center; font-size:17px;}
.featured-title { font-size:27px; font-weight:800; color:#222;}
.featured-title .f-green { color:#16df49; margin-right:6px;}
.featured-link { margin-left:auto; color:#111; font-size:14px; font-weight:600; text-decoration:underline; text-decoration-color:#16df49; text-underline-offset:3px; }
.featured-sub {
  font-size: 11px;
  color: #222;
  opacity: 0.70;
  margin: 2px 0 0 57px;
  height: 18px;
  padding: 0 20px;
  box-sizing: border-box;
}
.featured-line {
  height: 1.5px;
  background: #c5ffc5;
  width: calc(100% - 40px);
  margin: 7px 20px 5px 20px;
  border-radius: 2px;
}

/* ---- FULL WIDTH CAROUSEL SECTION ---- */
.carousel-full, .carousel-row {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  left: 0;
  position: relative;
  background: #f5f5f5;
  min-height: 540px;
  z-index: 2;
  box-sizing: border-box;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel.ready {
  opacity: 1;
}

.carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Carousel images - Masaüstü (ezel.png + 35% yükseklik) */
.carousel-img {
  width: 1440px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  filter: grayscale(0.7) brightness(0.85) opacity(0.6);
  transition: filter 0.5s ease;
}

.carousel-img.carousel-img-center {
  filter: grayscale(0) brightness(1) opacity(1);
}

.carousel-img img {
  width: 100%;
  height: 518px;
  object-fit: cover;  /* contain değil cover! */
  display: block;
}

/* Carousel bilgi kutusu - Sol okun yanında */
.carousel-info {
  position: fixed;
  left: calc(50% - 720px + 100px);
  bottom: 50%;
  transform: translateY(50%);
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 240px;
  z-index: 90;
}

.ci-title {
  font-weight: 700;
  font-size: 18px;
  color: #151515;
  margin-bottom: 8px;
}

.ci-location {
  font-size: 13px;
  color: #484848;
  margin-bottom: 12px;
}

.ci-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.ci-date, .ci-time {
  background: #16df49;
  color: #fff;
  border-radius: 14px;
  font-size: 11px;
  padding: 5px 12px;
  font-weight: 600;
}

.ci-time {
  background: #e0ffe5;
  color: #15b244;
}

.ci-buy {
  background: #ff772c;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 0;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s;
   text-decoration: none;  /* <a> için underline kaldır */
  display: block;         /* <a> için block yap */
  text-align: center;     /* Metni ortala */
}

.ci-buy:hover {
  background: #e66a26;
}

/* Carousel ok butonları - Sabit */
.carousel-arrow-fixed {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: #16df49;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.carousel-arrow-fixed:hover {
  background: #12bb3b;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
  left: calc(50% - 720px + 30px);
}

.carousel-arrow-right {
  right: calc(50% - 720px + 30px);
}


.carousel-filter-bar {
  position:absolute;
  left:0; right:0;
  bottom: 0;
  transform: translateY(-50%);
  width:100%; display:flex; justify-content:center;
  pointer-events:none;
  z-index:50;
}

/* Büyük monitörler için filtre çubuğunu aşağı çek */
@media (min-width: 1601px) {
  .carousel-filter-bar {
    transform: translateY(30%);
  }
}
.carousel-filter {pointer-events:all; background:#fff; border-radius:15px; box-shadow: 0 4px 20px rgba(0,0,0,0.11);
  display:flex; align-items:center; gap:8px;
  width:816px; height:95px; min-width:816px; max-width:816px;
  padding:0 22px;
  justify-content:center;
  position:relative;
  z-index:51;
  border-radius: 10px;
}
.cf-search { position:relative; }
.cf-search i { position:absolute; left:13px; top:50%; transform:translateY(-50%); color:#bdbdbd; font-size:13px;}
.cf-search input { border-radius:19px; border:1.3px solid #e9e9e9; background:#fcfcfc; padding:7px 13px 7px 33px; font-size:16px; width:163px;}
.cf-box { border-radius:19px; border:1.3px solid #e9e9e9; background:#fafafa; color:#1c1c1c; font-size:12px; font-weight:500; padding: 7px 19px 7px 15px; display:inline-flex;align-items:center;gap:4px; cursor:pointer;}
.cf-box i {font-size:12px; color:#aab1b8;}
.cf-box.cf-city-active { background:#ff772c; color:#fff; border:1.3px solid #ff772c; }
.cf-box.cf-city-active i { color:#fff; }
.cf-btn { background: #16df49; border:none; border-radius:17px; color:#fff; font-size:13px; font-weight:600; padding: 8px 20px; cursor:pointer;}

.featured-cards {
  margin: 92px auto 0 auto;
  width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.featured-cards-header {
  width: 1440px;
  margin: 0 auto 25px auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.fc-title { font-size: 30px; font-weight:800; color:#222; letter-spacing:-1.2px; }
.fc-link {
  color:#222; font-size:15px; font-weight:600;
  text-decoration:underline; text-decoration-thickness:2px; text-underline-offset:5px;
  text-decoration-color:#16df49;
}
.featured-cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  box-sizing: border-box;
  justify-content: flex-start;
}
.fc-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.fc-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 8px 36px rgba(40,60,100,0.16), 0 1.5px 3px rgba(0,0,0,0.08);
  width: calc((100% - 100px) / 5);
  max-width: 260px;
  min-width: 200px;
  height: 447px;
  display: flex;
  flex-direction: column;
  transition: background .2s, box-shadow .22s, transform .16s, color .2s;
  position: relative;
  overflow: hidden;
  min-width: 160px;
}
.fc-card:hover { background: #fff; box-shadow: 0 8px 36px rgba(40,60,100,0.16), 0 1.5px 3px rgba(0,0,0,0.08); transform: translateY(-4px) scale(1.017); }
.fc-card:hover .fc-card-content { background: #111; }
.fc-card:hover .fc-card-title,
.fc-card:hover .fc-card-place { color:#fff!important; }
.fc-card:hover .fc-meta-date { 
  background: #fff; 
  color: #111!important; 
  border-radius: 20px;
}
.fc-img { width: 100%; height: 242px; position: relative; border-radius: 5px 5px 0 0; overflow: hidden; }
.fc-img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 5px 5px 0 0; }
.fc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 223, 73, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.fc-card:hover .fc-overlay {
  opacity: 1;
}
.fc-badge {
  position: absolute; 
  top: 12px; 
  right: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  white-space: nowrap;
}
.fc-badge-orange {
  background-color: #ff772c;
  color: #fff;
}
.fc-badge-green {
  background-color: #16df49;
  color: #111;
}
.fc-badge-red {
  background-color: #ff0000;
  color: #fff;
}
.fc-card-content { 
  padding:25px 20px 0 22px; 
  display:flex; 
  flex-direction:column; 
  gap:11px;
  border-radius: 0 0 5px 5px;
  transition: background-color 0.3s;
  flex: 1;
}
.fc-card-title { font-size:19px; font-weight:700; margin-bottom:0; color:#111;}
.fc-card-place { color: #3b3b3b; font-size:15px; margin-bottom:2px; line-height: 1.4;}
.fc-card-meta { display:flex; gap:8px; margin:6px 0 10px 0; }
.fc-meta-date { 
  padding:9px 12px; 
  border-radius:17px; 
  background:#16df49; 
  color:#111; 
  font-size:14px; 
  font-weight:600; 
  display: block;
  width: fit-content;
  text-align: center;
  margin-top: auto;
  margin-bottom: 15px;
  margin-left: 0;
  margin-right: auto;
}
.fc-meta-time {
  display: none;
}
.fc-card-btn {
  background:#ff772c; color:#fff;
  border:none; border-radius:17px; font-size:14px; font-weight:600; padding: 9px 0; width:100%; margin-top:8px; cursor:pointer; transition:background 0.17s;}
.fc-card-btn:hover { background: #ea5200; }
.fc-card.fc-card-featured { background: #fff; box-shadow: 0 10px 44px 0 rgba(40,60,120,0.16), 0 2px 5px rgba(0,0,0,0.09); }
.fc-card.fc-card-featured .fc-card-title, .fc-card.fc-card-featured .fc-card-place { color: #111; }
.fc-card.fc-card-featured .fc-card-meta { opacity: .94; }
.fc-card.fc-card-featured .fc-card-btn { background: #ff772c; color: #fff;}
.fc-card.fc-card-featured .fc-meta-time, .fc-card.fc-card-featured .fc-meta-date { background:#16df49; color:#fff; font-weight:600;}
.fc-card.fc-card-featured:hover { background:#fff; box-shadow: 0 10px 44px 0 rgba(40,60,120,0.16), 0 2px 5px rgba(0,0,0,0.09); }
.fc-card.fc-card-featured:hover .fc-card-content { background: #111; }
.fc-card.fc-card-featured:hover .fc-card-title, .fc-card.fc-card-featured:hover .fc-card-place { color:#fff!important; }
.fc-card.fc-card-featured:hover .fc-meta-date { 
  background: #fff; 
  color: #111!important; 
  border-radius: 20px;
}

/* Büyük monitörler için - kartların tam genişliği kullanması */
@media (min-width: 1601px) {
  .featured-cards {
    width: 1440px;
    max-width: 1440px;
  }
  .featured-cards-header {
    width: 1440px;
    max-width: 1440px;
  }
  .featured-cards-row {
    max-width: 1440px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .fc-card-link {
    width: calc((100% - 100px) / 5);
    max-width: 260px;
    min-width: 200px;
  }
  .fc-card-link .fc-card {
    width: 100%;
    max-width: none;
  }
  .fc-card {
    width: calc((100% - 100px) / 5);
    max-width: 260px;
    min-width: 200px;
  }
}

/* Laptop ekranları için carousel */
@media (max-width: 1600px) {
  .carousel-img {
    width: 1200px;
    height: auto;
  }
  .carousel-info {
    left: calc(50% - 600px + 100px);
    width: 220px;
    padding: 18px;
  }
  .ci-title {
    font-size: 17px;
  }
  .carousel-arrow-left {
    left: calc(50% - 600px + 30px);
  }
  .carousel-arrow-right {
    right: calc(50% - 600px + 30px);
  }
  .featured-cards-header, .featured-cards-row { max-width: 98vw; }
  .fc-card-link {
    width: calc((100% - 100px) / 5);
    max-width: 260px;
    min-width: 200px;
  }
  .fc-card-link .fc-card {
    width: 100%;
    max-width: none;
  }
  .fc-card { width: calc((100% - 100px) / 5); max-width: 260px; min-width: 200px; font-size:95%; }
}

@media (max-width: 1400px) {
  .carousel-img {
    width: 1000px;
    height: auto;
  }
  .carousel-info {
    left: calc(50% - 500px + 100px);
    width: 200px;
    padding: 16px;
  }
  .ci-title {
    font-size: 16px;
  }
  .ci-location {
    font-size: 12px;
  }
  .carousel-arrow-left {
    left: calc(50% - 500px + 30px);
  }
  .carousel-arrow-right {
    right: calc(50% - 500px + 30px);
  }
}

@media (max-width: 1200px) {
  .carousel-img {
    width: 900px;
    height: auto;
  }
  .carousel-info {
    left: calc(50% - 450px + 100px);
    width: 180px;
    padding: 14px;
  }
  .ci-title {
    font-size: 15px;
  }
  .carousel-arrow-left {
    left: calc(50% - 450px + 30px);
  }
  .carousel-arrow-right {
    right: calc(50% - 450px + 30px);
  }
}

@media (max-width:1300px) and (min-width: 901px) {
  .featured-cards-row { gap:16px; }
  .fc-card { width: calc((100% - 64px) / 5); max-width: 240px; min-width: 180px; }
}

@media (max-width:900px) {
  .featured-cards-row { flex-wrap:wrap; justify-content:center; }
  .fc-card-link {
    width: 96vw;
    max-width: none;
    min-width: 220px;
  }
  .fc-card { width:100%; min-width:220px; margin-bottom:18px; }
}

.insight-section {
  background: #57F262;
  width: 100vw;
  padding: 62px 20px 53px 20px;
  display: flex; flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.insight-header {
  width: 1440px; max-width: 100%;
  display: flex; align-items: flex-start; justify-content: space-between;
  margin: 0 auto 32px auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.insight-header-title {
  display: flex; align-items: center; font-size: 30px; font-weight: 800;
  color: #151515; 
  gap:18px;
}
.insight-header-icon {
  background: #151515;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display:flex; align-items:center; justify-content:center;
  padding: 8px;
  box-sizing: border-box;
}
.insight-header-icon img {
    width: 100%;
    height: 100%;
}
.insight-header-right { display: flex; flex-direction: column; align-items: flex-end; gap:14px; max-width:410px; }
.insight-header-desc {
  color: #222; font-size: 17px; line-height: 1.29; text-align:right; font-weight:400;
}
.insight-header-btn {
  background: #151515; color: #fff; border:none; border-radius: 22px;
  padding:12px 32px 11px 32px; font-size:15px; font-weight:600; letter-spacing:0.2px;
  cursor: pointer;
  margin-top:5px;
  box-shadow:0 2px 9px 0 #57F2622a;
  transition:background 0.19s, color .18s, transform .16s;
  display:flex; align-items: center; gap:5px;
}
.insight-header-btn:hover { background: #04b942; color:#fff; }

.insight-cards-row {
  width:1440px;
  max-width: 100%;
  display:flex; flex-direction:row; gap:34px; margin:33px auto 0 auto; padding: 0 20px;
  box-sizing: border-box;
  justify-content:space-between;
}
.insight-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 272px;
  flex: 0 1 272px;
}
.insight-card {
  background: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 12px;
}
.insight-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 272/288;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 6px 24px rgba(20,40,40,0.11);
  z-index: 1;
  position: relative;
  transition: filter 180ms, transform .22s;
}
.insight-card-title {
  width: 100%;
  background: none;
  box-shadow: none;
  border-radius: 0;
  margin-top: 18px;
  position: relative;
  left: 0;
  z-index: 2;
  padding: 0 0 3px 0;
  font-size: 16px;
  font-weight: 700;
  color: #151515;
  line-height: 1.22;
  min-height: 40px;
  text-align: left;
  transition: transform 0.22s ease;
}
.insight-card-date {
  width: 100%;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  font-size: 12.5px;
  margin-top: 0;
  color: #111;
  font-weight: 500;
  opacity: 0.8;
  position: relative;
  left: 0;
  text-align: left;
  z-index: 2;
  transition: transform 0.22s ease;
}
.insight-card-link:hover .insight-card img { filter: brightness(1.03) contrast(1.07) saturate(1.17); transform: scale(1.07);}
.insight-card-link:hover .insight-card-title,
.insight-card-link:hover .insight-card-date { transform: scale(1.03); }

@media (max-width:1550px) {
  .insight-cards-row { width:100%; gap:28px; }
  .insight-header { width:100%; }
  .insight-card-link { width: calc((100% - 112px) / 5); flex: 0 1 auto; }
  .insight-card { width: 100%; }
  .insight-card img, .insight-card-title, .insight-card-date { 
    width: 100%; 
  }
}

@media (max-width:1400px) {
  .insight-cards-row { gap:24px; }
  .insight-card-link { width: calc((100% - 96px) / 5); }
}

@media (max-width:1240px) {
  .insight-cards-row { flex-wrap:wrap; gap:20px; justify-content:center; }
  .insight-card-link { width:49vw; max-width:318px; flex: 0 1 318px; }
}
@media (max-width:600px) {
  .insight-section {padding: 34px 0 18px 0;}
  .insight-header { flex-direction: column; gap:24px; width:96vw; }
  .insight-header-right { max-width:none; align-items:center;}
  .insight-header-title { font-size:22px; gap:10px; }
  .insight-cards-row { flex-wrap:wrap; gap:10px; width:97vw; justify-content:center; }
  .insight-card-link { width:95vw; min-width:200px; max-width:98vw; }
  .insight-card { width: 100%; }
}

/* Mobil responsive (900px altı) */
@media (max-width: 900px) {
  .animated-section {
    opacity: 1 !important;
    transform: none !important;
  }
  .site-frame {
    padding: 0 !important;
  }
  .featured {
    max-width: 1440px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  .featured-row {
    padding: 0 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .featured-link {
    margin-right: -12px !important;
  }
  .featured-sub {
    padding: 0 12px !important;
    margin-left: 0 !important;
  }
  .featured-line {
    width: calc(100% - 24px) !important;
    margin: 7px 12px 5px 12px !important;
  }
  .featured-cards, .featured-cards-header, .featured-cards-row, .insight-section, .insight-header, .insight-cards-row {
    max-width: 97vw; width: 97vw; padding: 0 2vw;
    box-sizing: border-box;
  }
  .featured-cards {
    overflow: visible;
  }
  .featured-cards-row {
    overflow: visible;
  }
  .featured-cards-header { flex-direction: column; align-items: flex-start; gap: 7px; }
  .fc-title { font-size: 22px; }
  .fc-link { font-size:13px; }
  .featured-cards-row, .insight-cards-row { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .fc-card-link {
    width: 93vw;
    max-width: 340px;
    min-width: 180px;
    margin: 0 auto 18px auto;
    box-sizing: border-box;
    overflow: visible !important;
  }
  .fc-card, .insight-card-link { width: 100%; max-width: none; min-width: 180px; margin: 0 auto 18px auto; box-sizing: border-box; }
  .fc-card {
    overflow: visible !important;
  }
  .fc-card {
    overflow: visible !important;
  }
  .insight-card { width: 100%; }
  .fc-img img, .insight-card img { width: 100%; min-width: 150px; max-width: 100vw; height: auto; aspect-ratio: 16/10; }
  .fc-img {
    overflow: visible !important;
  }
  .fc-badge {
    position: absolute !important;
    font-size: 10px;
    padding: 4px 5px;
    top: 8px;
    right: 8px;
    left: auto;
    white-space: nowrap;
    max-width: none;
    width: fit-content;
    z-index: 10;
  }
  .fc-badge-orange {
    background-color: #ff772c !important;
    color: #fff;
  }
  .fc-badge-green {
    background-color: #16df49 !important;
    color: #111;
  }
  .fc-badge-red {
    background-color: #ff0000 !important;
    color: #fff;
  }
  .carousel-row, .carousel-full { width: 100vw; overflow-x: scroll; }
  .carousel { min-width: 900px; width: 100vw; overflow-x:scroll; }
  .carousel-img.center { width: 93vw; max-width: 340px; height: auto; min-height: 200px; }
  .carousel-img.left, .carousel-img.right {
    width: 23vw; min-width: 60px; max-width: 120px; height: auto; margin:0 7px; }
  .carousel-info, .carousel-envelope, .carousel-arrow.left, .carousel-arrow.right { left: 9px; right: 9px; max-width:90vw; }
  .carousel-filter-bar, .carousel-filter { width:100vw; max-width:95vw; min-width:180px; padding:0 1vw; }
}

@media (max-width: 600px) {
  .site-frame {
    padding: 0 !important;
  }
  .featured {
    max-width: 1440px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  .featured-row {
    padding: 0 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .featured-link {
    margin-right: -12px !important;
  }
  .featured-sub {
    padding: 0 12px !important;
    margin-left: 0 !important;
  }
  .featured-line {
    width: calc(100% - 24px) !important;
    margin: 7px 12px 5px 12px !important;
  }
  .featured-cards, .featured-cards-header, .featured-cards-row, .insight-section, .insight-header, .insight-cards-row {
    width: 98vw; max-width: 98vw; padding: 0 1vw;
  }
  .featured-cards {
    overflow: visible;
  }
  .featured-cards-row {
    overflow: visible;
  }
  .fc-card, .insight-card-link { width: 98vw; max-width:370px; min-width:160px; }
  .fc-card-link {
    overflow: visible !important;
  }
  .fc-card {
    overflow: visible !important;
  }
  .insight-card { width: 100%; }
  .fc-title, .insight-header-title, .featured-title {font-size:18px;}
  .fc-link, .insight-header-btn, .insight-header-desc, .fc-card-btn {font-size:12px;}
  .fc-badge {
    position: absolute !important;
    font-size: 9px;
    padding: 3px 5px;
    top: 6px;
    right: 6px;
    left: auto;
    white-space: nowrap;
    max-width: none;
    width: fit-content;
    z-index: 10;
  }
  .fc-badge-orange {
    background-color: #ff772c !important;
    color: #fff;
  }
  .fc-badge-green {
    background-color: #16df49 !important;
    color: #111;
  }
  .fc-badge-red {
    background-color: #ff0000 !important;
    color: #fff;
  }
  .fc-img, .fc-img img, .insight-card img { width: 100%; max-width: 98vw; min-width:70px; height:auto; }
  .fc-img {
    overflow: visible !important;
  }
  .fc-card-content {padding:8px 6px;}
  .carousel-row, .carousel-full, .carousel { width: 100vw; padding:0; overflow-x:scroll; min-width:210px; }
  .carousel-img.center { width:99vw; min-width:160px; max-width:98vw; height:auto; }
}

.festivals-section {
  background: #fff;
  width: 100vw;
  padding: 64px 0 40px 0;
  display: flex; flex-direction: column; align-items: center;
  margin-top: 88px;
}
.festivals-header {
  width: 1440px;
  margin: 0 auto 30px auto;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
}
.festivals-title { font-size: 30px; font-weight:800; color:#222; letter-spacing:-1.1px; }
.festivals-link {
  color:#222; font-size:15px; font-weight:600;
  text-decoration:underline; text-decoration-thickness:2px; text-underline-offset:5px;
  text-decoration-color:#44fa67;
}
.festivals-cards-row {
  display:flex; gap:34px; width:1440px; justify-content:center; margin:0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.fest-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 272px;
}

.fest-card {
  background: #fff;
  border-radius: 5px;
  box-shadow:0 5px 22px rgba(35,35,77,0.09);
  width: 100%;
  height: 380px;
  display:flex; flex-direction:column;
  transition: background .2s, box-shadow .19s, color .16s;
  position:relative; overflow:hidden; min-width:180px; padding:0;
}
.fest-card img {
  width: 100%;
  height: 235px;
  object-fit:cover;
  border-radius: 5px 5px 0 0;
  min-height:70px;
  display:block;
}
.fest-card-content {
  flex:1; box-sizing: border-box;
  padding: 18px 16px 20px 16px; width:100%;
  display:flex; flex-direction:column; align-items: flex-start;
}
.fest-card-title { font-size:15.8px; font-weight:700; color:#151515; text-align: left; margin-bottom: 16px; }
.fest-card-desc { color: #393939; font-size:12.6px; margin:7px 0 11px 0; line-height:1.32;}
.fest-card-btn {
  background:#ff772c; color:#fff;
  border:none; border-radius:17px; font-size:13.5px; font-weight:600; padding: 10px 0; width:100%; margin-top:auto; cursor:pointer; transition:background 0.14s, color 0.15s;}
.fest-card:hover { background:#44fa67!important; box-shadow:0 16px 52px 0 rgba(35,60,25,0.13); }
.fest-card:hover .fest-card-title, .fest-card:hover .fest-card-desc { color: #111!important; }
.fest-card:hover .fest-card-btn { background: #151515; color:#fff; }

@media (max-width: 1010px) and (min-width: 769px) {
  .festivals-cards-row { flex-wrap:wrap; gap:18px; }
  .fest-card-link {
    width: 97vw;
    max-width: 320px;
    min-width: 165px;
  }
  .fest-card { width:100%; height:auto; }
  .fest-card img, .fest-card-content { width:100%; box-sizing:border-box; padding:0; }
  .fest-card-content { padding: 14px 6vw 0 6vw; }
}

/* Sahneler Section */
.sahneler-section {
  width: 100%;
  background-color: #f5f5f5;
  padding: 80px 20px;
  box-sizing: border-box;
}

.sahneler-header {
  max-width: 1440px;
  margin: 0 auto 35px auto;
  padding: 0 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sahneler-title {
  font-size: 28px;
  font-weight: 800;
  color: #222;
}

.sahneler-link {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-decoration: underline;
  text-decoration-color: #16df49;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.sahneler-cards-row {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.sahneler-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 272px;
  flex: 0 1 272px;
}

.sahneler-card {
  width: 100%;
  flex: 0 1 auto;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 447px;
}

.sahneler-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.sahneler-img-container {
  position: relative;
  height: 242px;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
  flex-shrink: 0;
  margin-bottom: -1px;
}

.sahneler-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.sahneler-card:hover .sahneler-img-container img {
  transform: scale(1.05);
}

.sahneler-img-overlay {
  position: absolute;
  top: -5px; left: -5px; right: -5px; bottom: -5px;
  background-color: rgba(44, 255, 110, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sahneler-card:hover .sahneler-img-overlay {
  opacity: 1;
}

.sahneler-card-content {
  height: auto;
  min-height: 205px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transition: background-color 0.3s ease;
  margin-top: 0;
  flex: 1;
}

.sahneler-card:hover .sahneler-card-content {
  background-color: #000;
}

.sahneler-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.sahneler-card:hover .sahneler-card-title {
  color: #fff;
}

.sahneler-card-meta {
  display: flex;
  gap: 8px;
  margin-bottom: auto;
}

.sahneler-meta-date, .sahneler-meta-time {
  padding: 7px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sahneler-meta-date {
  background-color: #16df49;
  color: #fff;
}
.sahneler-meta-time {
  background-color: #e0ffe5;
  color: #15b244;
}

.sahneler-card:hover .sahneler-meta-date,
.sahneler-card:hover .sahneler-meta-time {
  background-color: #fff;
  color: #222;
}

.sahneler-card-btn {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background-color: #ff772c;
  color: #fff;
  transition: background-color 0.2s;
}
.sahneler-card-btn:hover {
  background-color: #e66a26;
}

.sahneler-card:hover .sahneler-card-btn {
  background-color: #16df49;
}

.sahneler-card:hover .sahneler-card-btn:hover {
  background-color: #12bb3b;
}

/* Responsive */
@media (max-width: 1550px) {
  .sahneler-cards-row {
    gap: 28px;
  }
  .sahneler-card-link {
    width: calc((100% - 112px) / 5);
    flex: 0 1 auto;
  }
  .sahneler-card {
    width: 100%;
    flex: 0 1 auto;
    height: 447px;
  }
  .sahneler-img-container {
    height: 242px;
  }
}

@media (max-width: 1400px) {
  .sahneler-cards-row {
    gap: 24px;
  }
  .sahneler-card-link {
    width: calc((100% - 96px) / 5);
    flex: 0 1 auto;
  }
  .sahneler-card {
    width: 100%;
    height: 447px;
  }
  .sahneler-img-container {
    height: 242px;
  }
}

@media (max-width: 1240px) {
  .sahneler-cards-row {
     flex-wrap: wrap;
     gap: 24px;
     justify-content: center;
  }
  .sahneler-card-link {
    width: calc(50% - 12px);
    max-width: 320px;
    flex: 0 1 320px;
  }
  .sahneler-card {
    width: 100%;
    flex: 0 1 auto;
  }
}

@media (max-width: 800px) {
  .sahneler-cards-row {
    flex-direction: column;
    align-items: center;
  }
  .sahneler-card-link {
    width: 100%;
    max-width: 400px;
  }
  .sahneler-card {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .sahneler-section {
    padding: 60px 15px;
  }
  .sahneler-card-link {
    width: 100%;
    max-width: 100%;
  }
  .sahneler-card {
    width: 100%;
    max-width: 100%;
  }
}

/* Recommendations Section */
.recommendations-section {
  padding: 80px 0;
  background-color: #fff;
}

.recommendations-header {
  max-width: 1440px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.rec-header-left .rec-title-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.rec-logo {
  height: 28px;
}
.rec-title {
  font-size: 28px;
  font-weight: 800;
  color: #222;
}
.rec-title span {
  color: #16df49;
}
.rec-subtitle {
  color: #555;
  font-size: 15px;
}

.rec-header-right {
  text-align: right;
}
.rec-header-right .rec-subtitle {
  margin-bottom: 12px;
}
.rec-more-btn {
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.2s;
}
.rec-more-btn:hover {
  background: #000;
}
.rec-more-btn i {
  margin-left: 5px;
}

.recommendations-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

.rec-main-card {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.rec-main-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.rec-main-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
  z-index: 2;
}
.rec-main-content {
  position: relative;
  z-index: 3;
  padding: 40px;
  max-width: 450px;
  margin-left: 130px;
}

@media (max-width: 768px) {
  .rec-main-content {
    margin-left: 0;
  }
}
.rec-main-content h3 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 15px;
}
.rec-main-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}
.rec-main-content span {
  display: block;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 17px;
}
.rec-main-content button {
  background: #16df49;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
}
.rec-main-content button:hover {
  background: #12bb3b;
}

.rec-small-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.rec-small-card h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 15px 0 10px 0;
}
.rec-small-card > img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}
.rec-small-card span {
  color: #777;
  font-size: 14px;
  font-weight: 500;
}

.rec-small-img-container {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
}
.rec-small-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.rec-small-img-overlay {
  position: absolute;
  top:0; left: 0; right: 0; bottom: 0;
  background-color: rgba(22, 223, 73, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.rec-small-img-container button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 30px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.rec-small-card:hover .rec-small-img-overlay {
  opacity: 1;
}
.rec-small-card:hover .rec-small-img-container button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.rec-small-card:hover .rec-small-img-container img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .rec-small-cards-row {
    grid-template-columns: 1fr;
  }
  .recommendations-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .rec-header-right {
    text-align: left;
  }
  .rec-title {
    font-size: 20px;
  }
  .rec-logo {
    height: 22px;
  }
}

/* Footer */
.site-footer {
  background-color: #0d0d0d;
  color: #a0a0a0;
  padding: 80px 0 40px 0;
  font-size: 14px;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col.about p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.footer-col.about a {
  color: #16df49;
}

.footer-logo {
  height: 28px;
  margin-bottom: 25px;
}

.footer-col.about .address {
  margin-top: 20px;
}

.footer-col.links h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  display: inline-block;
}

.footer-col.links ul {
  list-style: none;
}

.footer-col.links li {
  margin-bottom: 15px;
}

.footer-col.links a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col.links a:hover {
  color: #fff;
}

.footer-col.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.social-icons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #555;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 16px;
}

.social-icon:hover {
  background-color: #16df49;
  color: #fff;
  border-color: #16df49;
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.footer-bottom-links a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

.back-to-top {
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #0d0d0d;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Footer Responsive */
@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
  }
  .footer-col.social {
    grid-column: 1 / -1;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 10px;
  }
}

@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-col.about {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
  }
  .footer-col.social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 100px 0;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .footer-col.about {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-col.links {
    text-align: center;
  }
  .footer-col.links h4 {
    display: table;
    margin: 0 auto 20px auto;
  }
  .footer-col.social {
    grid-column: 1 / -1;
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 50px 0 100px 0;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-col.about {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-col.links {
    text-align: center;
  }
  .footer-col.links h4 {
    display: table;
    margin: 0 auto 15px auto;
    font-size: 14px;
  }
  .footer-col.links li {
    margin-bottom: 12px;
  }
  .footer-col.links a {
    font-size: 13px;
  }
  .footer-col.social {
    grid-column: 1 / -1;
    align-items: center;
    padding-top: 15px;
  }
  .footer-bottom-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* Scroll Animation */
.animated-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Date Picker Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 380px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.modal-header h3 {
  font-size: 20px;
  color: #333;
}

.close-modal-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #888;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.current-month {
  font-size: 18px;
  font-weight: 600;
}

.nav-btn {
  background: #f0f0f0;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

.calendar-weekdays, .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 5px;
}

.calendar-weekdays div {
  font-weight: 600;
  color: #999;
  font-size: 12px;
  padding-bottom: 10px;
}

.calendar-days .day {
  padding: 10px 5px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s, color 0.2s;
}
.calendar-days .day:not(.empty):hover {
  background-color: #e0ffe5;
}
.calendar-days .day.selected {
  background-color: #16df49;
  color: #fff;
}
.calendar-days .day.today {
  font-weight: bold;
  border: 1px solid #16df49;
}
.calendar-days .day.empty {
  cursor: default;
}

.modal-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.modal-action-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.apply-btn {
  background-color: #16df49;
  color: #fff;
}

/* City Picker Modal */
#city-modal {
  width: 500px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.modal-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 0; /* Prevents flex item from overflowing */
}

.modal-search-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 16px;
}

.city-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  flex-grow: 1;
}

.city-list li {
  padding: 12px 15px;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.city-list li:hover {
  background-color: #f5f5f5;
}

.city-list li .city-name {
  font-weight: 600;
  color: #111;
}

.city-list li .city-country {
  font-weight: 400;
  color: #999;
}

/* Custom Scrollbar for City List */
.city-list::-webkit-scrollbar {
  width: 8px;
}
.city-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.city-list::-webkit-scrollbar-thumb {
  background: #16df49;
  border-radius: 10px;
}
.city-list::-webkit-scrollbar-thumb:hover {
  background: #12bb3b;
}

body.modal-open {
  overflow: hidden;
}

/* Category Picker Modal */
#category-modal {
  width: 600px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 10px;
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 15px;
  border-radius: 12px;
  background-color: #f7f7f7;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.category-item:hover {
  transform: translateY(-5px);
  background-color: #e0ffe5;
  box-shadow: 0 8px 20px rgba(22, 223, 73, 0.15);
}

.category-item i {
  font-size: 32px;
  color: #16df49;
  margin-bottom: 15px;
}

.category-item span {
  font-weight: 600;
  color: #333;
}

@media (max-width: 600px) {
  .category-item span {
    font-size: 14px;
  }
}

/* Top Artists Section */
.top-artists-section {
    height: 847px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../assets/images/MaskGroup39.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artists-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artists-section-title {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 150px;
    text-align: center;
}
.artists-section-title .green-text {
    color: #16df49;
}

.artist-carousel-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.artist-carousel-slider {
    display: flex;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.artist-item {
    flex-shrink: 0;
    margin: 0 15px;
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0.4;
    transform: scale(0.7);
}
.artist-item.active {
    opacity: 1;
    transform: scale(1) translateY(-60px);
}
.artist-item img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: border-radius 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.artist-item.active img {
    border-radius: 0px;
}

.artist-info-box {
    background-color: #16df49;
    color: #0d0d0d;
    padding: 25px 30px;
    border-radius: 0px;
    width: 550px;
    height: 200px;
    text-align: left;
    position: relative;
    margin-top: -90px;
    margin-right: 170px;
    justify-content: center;
    z-index: 10;
}
.artist-info-box h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}
.artist-info-box p {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
}
.artist-info-box .profile-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: #0d0d0d;
    color: #16df49;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
}

.artist-carousel-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    width: 100%;
    max-width: 500px;
    gap: 20px;
}
.artist-nav-arrow {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}
.artist-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
}
#artist-next-btn {
    background-color: #16df49;
    border-color: #16df49;
    color: #000;
}
#artist-next-btn:hover {
    background-color: #12bb3b;
}
.progress-bar-container {
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: relative;
}
.artist-nav-arrows {
    display: flex;
    gap: 15px;
    align-items: center;
}
.progress-bar-fill {
    height: 100%;
    background-color: #16df49;
    width: 0%;
    transition: width 0.5s ease;
}

/* Top Artists Responsive - Laptop Ekranları */
@media (max-width: 1600px) {
  .top-artists-section {
    height: 650px;
  }
  .artists-section-title {
    font-size: 28px;
    margin-bottom: 80px;
  }
  .artist-item img {
    width: 300px;
    height: 300px;
  }
  .artist-item.active {
    transform: scale(1) translateY(-50px);
  }
  .artist-info-box {
    width: 480px;
    height: 170px;
    margin-top: -70px;
    margin-right: 140px;
    padding: 20px 25px;
  }
  .artist-info-box h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .artist-info-box p {
    font-size: 14px;
  }
}

@media (max-width: 1400px) {
  .top-artists-section {
    height: 600px;
  }
  .artists-section-title {
    font-size: 26px;
    margin-bottom: 60px;
  }
  .artist-item img {
    width: 270px;
    height: 270px;
  }
  .artist-item.active {
    transform: scale(1) translateY(-40px);
  }
  .artist-info-box {
    width: 420px;
    height: 150px;
    margin-top: -60px;
    margin-right: 100px;
    padding: 18px 22px;
  }
  .artist-info-box h3 {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .artist-info-box p {
    font-size: 13px;
  }
}

@media (max-width: 1200px) {
  .top-artists-section {
    height: 550px;
  }
  .artists-section-title {
    font-size: 24px;
    margin-bottom: 50px;
  }
  .artist-item img {
    width: 240px;
    height: 240px;
  }
  .artist-item.active {
    transform: scale(1) translateY(-35px);
  }
  .artist-info-box {
    width: 380px;
    height: 140px;
    margin-top: -50px;
    margin-right: 80px;
    padding: 16px 20px;
  }
  .artist-info-box h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .artist-info-box p {
    font-size: 12px;
    line-height: 1.5;
  }
  .artist-carousel-nav {
    margin-top: 20px;
    gap: 15px;
  }
}

/* ========================================
   MOBİL RESPONSİVE TASARIM
   ======================================== */

/* Mobil Header - 768px ve altı */
@media (max-width: 768px) {
  .animated-section {
    opacity: 1 !important;
    transform: none !important;
  }
  .site-frame {
    padding: 0 !important;
  }
  .featured {
    max-width: 1440px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  .featured-row {
    padding: 0 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .featured-link {
    margin-right: -12px !important;
  }
  .featured-sub {
    padding: 0 12px !important;
    margin-left: 0 !important;
  }
  .featured-line {
    width: calc(100% - 24px) !important;
    margin: 7px 12px 5px 12px !important;
  }
  body {
    padding-top: 130px;
    padding-top: calc(130px + env(safe-area-inset-top, 0px));
  }
  
  .header {
    padding: 10px 12px;
    padding-top: calc(10px + env(safe-area-inset-top, 0px));
    position: fixed;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
  
  .header-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 0 !important;
  }
  
  .logo {
    margin: 0;
    order: 1;
    flex-shrink: 0;
  }
  
  .logo-img {
    height: 28px;
    width: auto;
  }
  
  /* Header links (Kategoriler, Şehrini Seç) sağa yasla */
  .header-links {
    display: flex !important;
    order: 2;
    flex-shrink: 0;
    margin-left: auto !important;
    gap: 10px;
  }
  
  /* Arama çubuğu mobilde header altına - tam satır */
  .main-search {
    display: block;
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin: 8px 0 0 0;
    padding: 0;
  }
  
  .main-search input {
    width: 100%;
    margin-left: 0;
    padding: 12px 20px 12px 44px;
    border-radius: 12px;
    font-size: 14px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
  }
  
  .main-search i {
    left: 16px;
  }
  
  /* Mobil arama modalı */
  .search-modal {
    left: 0;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    top: calc(100% + 6px);
  }
  
  .search-section {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }
  
  .search-section-title {
    font-size: 10px;
    margin-bottom: 10px;
  }
  
  .search-recent-item {
    padding: 8px 4px;
    gap: 10px;
  }
  
  .search-recent-text {
    font-size: 13px;
  }
  
  .search-recent-time {
    font-size: 11px;
  }
  
  .search-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .search-category-item {
    padding: 10px;
    font-size: 12px;
    gap: 8px;
  }
  
  .search-cat-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  
  .search-suggestions {
    gap: 6px;
  }
  
  .search-tag {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  /* Kategoriler ve Şehrini Seç linkleri görünür */
  .header-link {
    display: inline-flex;
    font-size: 12px;
    padding: 4px 0;
    gap: 4px;
  }
  
  .header-link i {
    font-size: 9px;
  }
  
  /* Giriş Yap / Kayıt Ol butonu gizle */
  .header-btn {
    display: none;
  }

  
  
  /* Mega menüleri mobilde - sadece giriş ve overlay gizle */
  .mega-menu-login,
  .mega-menu-overlay {
    display: none !important;
  }
  
  /* Mobil Kategoriler Modal */
  .mega-menu-kategoriler {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    padding-top: 0;
    border-radius: 0;
    transform: translateY(100%);
    opacity: 1;
    visibility: hidden;
  }
  
  .mega-menu-kategoriler.active {
    transform: translateY(0);
    visibility: visible;
  }
  
  .mega-menu-kategoriler .mega-menu-content,
  .mega-menu-kategoriler-content {
    flex-direction: column;
    padding: 20px;
    max-width: 100%;
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
  
  /* Mobil Kapatma Butonu */
  .mega-cat-close-mobile {
    display: flex;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: #222;
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }
  
  .mega-cat-close-mobile i {
    color: #fff;
    font-size: 18px;
  }
  
  /* Mobil Sidebar - Yatay Tab Görünümü */
  .mega-cat-sidebar {
    width: 100%;
    flex-direction: row;
    padding: 60px 0 20px 0;
    border-right: none;
    border-bottom: 1px solid #eee;
    gap: 8px;
    overflow-x: auto;
    flex-shrink: 0;
  }
  
  .mega-cat-item {
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 20px;
  }
  
  .mega-cat-item i {
    font-size: 14px;
  }
  
  /* Mobil Alt Kategoriler - Tek Sütun */
  .mega-cat-content {
    padding: 20px 0;
    flex: 1;
    overflow-y: auto;
  }
  
  .mega-cat-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .mega-cat-box {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
  }
  
  .mega-cat-box:last-child {
    border-bottom: none;
  }
  
  .mega-cat-box h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .mega-cat-box p {
    font-size: 13px;
    color: #888;
  }
  
  /* Mobil Öneriler - Gizle */
  .mega-cat-recommendations {
    display: none;
  }
  
  /* ===== MOBİL CAROUSEL ===== */
  .carousel-row, 
  .carousel-full {
    margin-top: 10px;
    overflow-x: hidden;
  }
  
  .carousel {
    gap: 10px;
    padding: 0 16px;
    overflow-x: auto;
    overflow-y: visible;
  }
  
  .carousel-img {
    width: calc(100vw - 32px);
    min-width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    border-radius: 12px;
    filter: none;
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
    overflow: visible;
  }
  
  .carousel-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
  }
  
  /* Carousel ok butonları - mobil */
  .carousel-arrow-fixed {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .carousel-arrow-left {
    left: 24px;
  }
  
  .carousel-arrow-right {
    right: 24px;
  }
  
  .carousel-wrapper {
    position: relative;
    overflow: visible;
  }
  
  /* Carousel info box - mobilde resmin altında göster */
  .carousel-info {
    display: block !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px !important;
    background: #16df49 !important;
    border-radius: 0 0 12px 12px !important;
    box-shadow: none !important;
    z-index: 2 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  
  .ci-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 4px;
  }
  
  .ci-location {
    font-size: 12px;
    color: rgba(255,255,255,0.85) !important;
    margin-bottom: 12px;
  }
  
  .ci-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  
  .ci-date, .ci-time {
    background: rgba(0,0,0,0.2) !important;
    color: #fff !important;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
  }
  
  .ci-buy {
    width: auto;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    background: #111 !important;
    color: #fff !important;
    position: absolute;
    top: 16px;
    right: 16px;
  }
  
  .carousel-info {
    position: relative !important;
  }
  
  /* Mobil ok butonları */
  .carousel-arrow-fixed {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #16df49;
    border-radius: 10px;
    z-index: 50;
  }
  
  .carousel-arrow-left {
    left: 8px;
  }
  
  .carousel-arrow-right {
    right: 8px;
  }
  
  /* ===== MOBİL TOP 10 - YEŞİL KUTU ORTALA ===== */
  .artist-info-box {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 90% !important;
    max-width: 340px !important;
  }

  /* ===== MOBİL CAROUSEL FİLTRE BAR ===== */
  .carousel-filter-bar {
    position: relative !important;
    bottom: auto !important;
    transform: none !important;
    padding: 0 !important;
    margin-top: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }
  
  .carousel-filter {
    width: calc(100vw - 32px) !important;
    min-width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 20px !important;
    border-radius: 16px !important;
    background: #f8f8f8 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
  }
  
  /* Arama kutusu - mobil */
  .cf-search {
    width: 100%;
    min-width: auto;
    height: 50px;
    background: #fff;
    border-radius: 25px;
    border: 1px solid #e5e5e5;
  }
  
  .cf-search input {
    width: 100%;
    height: 100%;
    padding: 12px 16px 12px 44px;
    font-size: 14px;
    border-radius: 25px;
    border: none;
    background: transparent;
  }
  
  .cf-search i {
    left: 16px;
    font-size: 16px;
    color: #999;
  }
  
  /* Filtre butonları - mobil */
  .cf-box {
    width: 100%;
    height: 50px;
    justify-content: flex-start;
    border-radius: 25px;
    font-size: 15px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    gap: 12px;
  }
  
  .cf-box i:first-child {
    font-size: 16px;
    color: #999;
  }
  
  .cf-box i:last-child {
    margin-left: auto;
    font-size: 12px;
    color: #ccc;
  }
  
  /* Şehir butonu aktif - turuncu */
  .cf-box.cf-city-active {
    background: #ff772c;
    border-color: #ff772c;
    color: #fff;
  }
  
  .cf-box.cf-city-active i {
    color: #fff;
  }
  
  /* Sonuçları Göster butonu */
  .cf-btn {
    width: 100%;
    height: 52px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    background: #16df49;
    border: none;
    color: #fff;
    margin-top: 4px;
  }
  
  /* ===== MOBİL ÖNE ÇIKAN KONSERLER ===== */
  .featured-cards {
    padding: 0 16px;
    overflow: visible;
  }
  
  .featured-cards-header {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin-bottom: 16px;
  }
  
  .fc-title {
    font-size: 18px;
    font-weight: 700;
  }
  
  .fc-link {
    font-size: 12px;
    white-space: nowrap;
  }
  
  /* Kartlar - yatay scroll */
  .featured-cards-row {
    width: 100%;
    gap: 12px;
    padding: 0;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .featured-cards-row::-webkit-scrollbar {
    display: none;
  }
  
  .fc-card-link {
    min-width: calc(100vw - 64px);
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    flex-shrink: 0;
    scroll-snap-align: start;
    overflow: visible !important;
  }
  
  .fc-card {
    width: 100%;
    max-width: none;
    min-width: auto;
    flex-shrink: 0;
    margin: 0;
    height: auto;
    overflow: visible !important;
  }
  
  .fc-img {
    height: auto;
    aspect-ratio: 16 / 10;
    overflow: visible !important;
  }
  
  .fc-img img {
    height: 100%;
  }
  
  .fc-badge {
    position: absolute !important;
    width: fit-content;
    height: auto;
    padding: 4px 5px;
    top: 20px;
    right: 20px;
    left: auto;
  }
  
  .fc-badge-orange {
    background-color: #ff772c !important;
    color: #fff;
  }
  .fc-badge-green {
    background-color: #16df49 !important;
    color: #111;
  }
  .fc-badge-red {
    background-color: #ff0000 !important;
    color: #fff;
  }
  
  .fc-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .fc-card-content {
    padding: 18px 16px 18px 18px;
  }
  
  .fc-card-title {
    font-size: 17px;
  }
  
  .fc-card-place {
    font-size: 14px;
  }
  
  /* ===== MOBİL ETKİNLİK İÇGÖRÜLERİ & İLHAM ===== */
  .insight-section {
    padding: 32px 16px;
  }
  
  .insight-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }
  
  .insight-header-title {
    font-size: 18px;
    gap: 10px;
  }
  
  .insight-header-icon {
    width: 32px;
    height: 32px;
    padding: 6px;
  }
  
  .insight-header-right {
    align-items: flex-start;
    max-width: 100%;
  }
  
  .insight-header-desc {
    text-align: left;
    font-size: 14px;
    line-height: 1.4;
  }
  
  .insight-header-btn {
    padding: 10px 24px;
    font-size: 13px;
  }
  
  /* Insight kartları - alt alta */
  .insight-cards-row {
    width: 100%;
    gap: 20px;
    margin-top: 20px;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: visible;
  }
  
  .insight-card-link {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin: 0;
  }
  
  .insight-card {
    width: 100%;
  }
  
  .insight-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
  }
  
  .insight-card-title {
    font-size: 16px;
    margin-top: 16px;
    text-align: left;
  }
  
  .insight-card-date {
    font-size: 13px;
    text-align: left;
  }
  
  /* ===== MOBİL ÖNE ÇIKAN FESTİVALLER ===== */
  .festivals-section {
    padding: 32px 16px;
    margin-top: 40px;
  }
  
  .festivals-header {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin-bottom: 16px;
    gap: 0;
  }
  
  .festivals-title {
    font-size: 18px;
    font-weight: 700;
  }
  
  .festivals-link {
    font-size: 12px;
    white-space: nowrap;
  }
  
  /* Festival kartları - alt alta */
  .festivals-cards-row {
    width: 100% !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch !important;
  }
  
  .fest-card-link {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }
  .fest-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
  }
  
  .fest-card img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10;
    border-radius: 8px 8px 0 0;
  }
  
  .fest-card-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px !important;
  }
  
  .fest-card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .fest-card-desc {
    font-size: 13px;
    margin: 4px 0 12px 0;
  }
  
  .fest-card-btn {
    padding: 12px 0;
    font-size: 14px;
    border-radius: 10px;
  }
  
  /* ===== MOBİL SAHNELER ===== */
  .sahneler-section {
    padding: 32px 16px;
  }
  
  .sahneler-header {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin-bottom: 16px;
  }
  
  .sahneler-title {
    font-size: 18px;
    font-weight: 700;
  }
  
  .sahneler-link {
    font-size: 12px;
    white-space: nowrap;
  }
  
  .sahneler-cards-row {
    width: 100% !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch !important;
  }
  
  .sahneler-card-link {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    flex: none !important;
  }
  
  .sahneler-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    flex: none !important;
    overflow: visible !important;
  }
  
  .sahneler-img-container {
    height: auto !important;
    aspect-ratio: 16 / 10;
  }
  
  .sahneler-img-container img {
    height: 100% !important;
  }
  
  .sahneler-card-content {
    height: auto !important;
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  .sahneler-card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .sahneler-card-meta {
    margin-bottom: 16px;
  }
  
  .sahneler-meta-date,
  .sahneler-meta-time {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .sahneler-card-btn {
    padding: 12px 0;
    font-size: 14px;
    border-radius: 10px;
  }
  
  /* Sahneler hover düzeltmesi - mobil */
  .sahneler-card:hover {
    transform: none;
  }
  
  .sahneler-card:hover .sahneler-img-container img {
    transform: none;
  }
  
  .sahneler-card:hover .sahneler-img-overlay {
    opacity: 0;
  }
  
  .sahneler-card:hover .sahneler-card-content {
    background-color: #fff;
  }
  
  .sahneler-card:hover .sahneler-card-title {
    color: #111;
  }
  
  .sahneler-card:hover .sahneler-meta-date,
  .sahneler-card:hover .sahneler-meta-time {
    background-color: #16df49;
    color: #fff;
  }
  
  .sahneler-meta-time {
    background-color: #e0ffe5 !important;
    color: #15b244 !important;
  }
  
  .sahneler-card:hover .sahneler-card-btn {
    background-color: #ff772c;
  }
}

/* ==== Artist Hero Section - Detay Sayfası ==== */
.artist-hero {
  margin: 32px auto 0 auto;
  max-width: 98vw;
  width: 98vw;
  border-radius: 24px;
  box-shadow: 0 6px 40px rgba(22, 223, 73, 0.10),0 1.5px 6px rgba(0,0,0,0.06);
  display: flex;
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
  min-height: 430px;
  height: 430px;
}
.artist-hero-bg {
  flex: 1.5;
  position: relative;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.artist-hero-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.artist-follow-btn {
  position: absolute;
  top: 32px;
  right: 38px;
  background: #fff;
  color: #16df49;
  border: none;
  border-radius: 14px;
  padding: 11px 28px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(44,44,44,.11);
  cursor: pointer;
  transition: background .19s, color .18s;
  z-index: 2;
  display: flex; align-items: center; gap: 11px;
}
.artist-follow-btn i {
  font-size: 18px;
  margin-right: 3px;
}
.artist-follow-btn:hover {
  background: #16df49;
  color: #fff;
}
.artist-hero-socials {
  position: absolute;
  bottom: 28px;
  right: 44px;
  display: flex;
  gap: 18px;
  z-index: 2;
}
.hero-social-icon {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: #fff;
  color: #16df49;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 1.5px 6px rgba(22,223,73,0.14);
  transition: background 0.16s, color 0.15s, transform 0.15s;
  text-decoration: none;
}
.hero-social-icon:hover {
  background: #16df49;
  color: #fff;
  transform: scale(1.13)
}
.artist-hero-info {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 48px;
  z-index: 3;
}
.artist-hero-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 18px;
  color: #16df49;
  text-shadow: 0 2px 16px #0b8e2b12;
  line-height: 1.07;
  letter-spacing: -2px;
}
.artist-hero-title .green {
  color: #16df49;
  background: none;
}
.artist-hero-desc {
  font-size: 16px;
  color: #222;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .artist-hero {
      min-height: 340px;
      height: 340px;
  }
  .artist-hero-title { font-size: 32px; }
  .artist-hero-info { padding: 0 24px; }
}
@media (max-width: 768px) {
  .artist-hero {
    flex-direction: column;
    height: auto;
    min-height: unset;
    max-width: 100vw;
    width: 100vw;
    border-radius: 0;
    margin: 10px 0 0 0;
  }
  .artist-hero-info {
    padding: 28px 7vw 16px 7vw;
    align-items: flex-start;
    flex: unset;
  }
  .artist-hero-title {
    font-size: 24px;
    margin-bottom: 13px;
  }
  .artist-hero-desc {
    font-size: 14px;
  }
  .artist-hero-bg {
    flex: unset;
    width: 100vw;
    height: 53vw;
    min-height: 180px;
    max-height: 240px;
  }
  .artist-hero-bg img {
    border-radius: 0;
    width: 100vw;
    object-fit: cover;
  }
  .artist-follow-btn {
    top: 12px;
    right: 17px;
    padding: 7px 17px;
    font-size: 15px;
    border-radius: 10px;
  }
  .artist-hero-socials {
    right: 19px;
    bottom: 12px;
    gap: 12px;
  }
  .hero-social-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}

/* ==== Artist Hero Section (Full BG Version) ==== */
.artist-hero.artist-hero-single-bg {
  position: relative;
  margin: 32px auto 0 auto;
  max-width: 98vw;
  width: 98vw;
  border-radius: 24px;
  box-shadow: 0 6px 40px rgba(22, 223, 73, 0.10),0 1.5px 6px rgba(0,0,0,0.06);
  min-height: 450px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.artist-hero-single-bg .artist-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: brightness(0.74) saturate(1);
}
.artist-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 38px 54px;
  background: rgba(15,30,15,0.12);
  border-radius: 20px;
  max-width: 600px;
  box-shadow: 0 6px 40px rgba(22, 223, 73, 0.04);
}
.artist-hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 18px;
  color: #16df49;
  text-shadow: 0 2px 16px #0b8e2b12;
  line-height: 1.07;
  letter-spacing: -2px;
}
.artist-hero-title .green { color: #16df49; background: none; }
.artist-hero-desc {
  font-size: 1.35rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 32px;
  text-shadow: 0 3px 8px #10100050;
}
.artist-follow-btn {
  margin-bottom: 26px;
  background: #fff;
  color: #16df49;
  border: none;
  border-radius: 14px;
  padding: 11px 28px;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(44,44,44,.11);
  cursor: pointer;
  transition: background .19s, color .18s;
  display: flex; align-items: center; gap: 11px;
}
.artist-follow-btn i {font-size: 18px; margin-right: 4px;}
.artist-follow-btn:hover { background: #16df49; color: #fff; }
.artist-hero-socials {
  display: flex;
  gap: 17px;
  margin-top: 14px;
}
.hero-social-icon {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: #fff;
  color: #16df49;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 1.5px 6px rgba(22,223,73,0.14);
  transition: background 0.16s, color 0.15s, transform 0.15s;
  text-decoration: none;
}
.hero-social-icon:hover { background: #16df49; color: #fff; transform: scale(1.13) }
@media (max-width: 1100px) {
  .artist-hero.artist-hero-single-bg{ height:340px; min-height:340px; }
  .artist-hero-content{ padding: 22px 18px; }
  .artist-hero-title { font-size: 30px; }
}
@media (max-width: 768px) {
  .artist-hero.artist-hero-single-bg {
    height: 290px; min-height: 210px; max-width: 100vw; width: 100vw; border-radius: 0; margin: 10px 0 0 0;
  }
  .artist-hero-img { border-radius: 0; }
  .artist-hero-content {
    padding: 14px 8vw 14px 8vw;
    align-items: flex-start;
    border-radius: 0 0 16px 16px;
    max-width: 96vw;
  }
  .artist-hero-title { font-size: 20px; margin-bottom: 7px; }
  .artist-hero-desc { font-size: 14px; margin-bottom: 15px; }
  .artist-follow-btn { padding: 7px 17px; font-size: 15px; border-radius: 10px; margin-bottom: 12px; }
  .artist-hero-socials{ gap: 10px;}
  .hero-social-icon { width: 34px;height: 34px;font-size: 1rem;}
}

/* === Yeni Absolute Contentli Artist Hero (Detay) === */
.artist-hero.artist-hero-single-bg {
  position: relative;
  margin: 32px auto 0 auto;
  max-width: 1400px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 6px 40px rgba(22, 223, 73, 0.10),0 1.5px 6px rgba(0,0,0,0.06);
  min-height: 450px;
  height: 450px;
  display: block;
  overflow: hidden;
}
.artist-hero-single-bg .artist-hero-img {
  position: absolute;
  inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
  z-index: 1; filter: brightness(0.77) saturate(1);
}
.artist-hero-content-abs {
  position: absolute;
  z-index: 4;
  left: 0; top: 50%;
  transform: translateY(-50%);
  padding-left: 5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.artist-hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 18px;
  color: #16df49;
  text-shadow: 0 2px 16px #0b8e2b45, 0 1px 16px #0007;
  line-height: 1.07;
  letter-spacing: -2px;
}
.artist-hero-desc {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
  text-shadow: 0 4px 12px #111, 0 0px 2px #10100090;
  max-width: 430px;
}
.hero-follow-btn-absolute {
  position: absolute;
  z-index: 10;
  top: 35px;
  right: 55px;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 14px;
  padding: 11px 28px;
  font-size: 19px;
  font-weight: 500;
  box-shadow: 0 1.5px 7px rgba(44,44,44,0.07);
  cursor: pointer;
  transition: background .19s, color .18s;
  display: flex; align-items: center; gap: 12px;
}
.hero-follow-btn-absolute i {
  font-size: 18px; 
  margin-right: 4px;
  color: #16df49;
}
.hero-follow-btn-absolute:hover { 
  background: #16df49; 
  color: #fff; 
}
.hero-follow-btn-absolute:hover i {
  color: #fff;
}
.hero-socials-abs {
  position: absolute;
  z-index: 9;
  right: 49px;
  bottom: 35px;
  display: flex;
  gap: 17px;
}
.hero-socials-abs .hero-social-icon {
  width: 34px; height: 34px;
  border-radius: 50%; 
  background: transparent; 
  border: 2px solid #fff;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; 
  box-shadow: none;
  transition: background 0.14s, color 0.14s, transform 0.14s, border-color 0.14s;
  text-decoration: none;
}
.hero-socials-abs .hero-social-icon:hover { 
  background: #16df49; 
  color: #111; 
  border-color: #16df49;
  transform: scale(1.12); 
}
@media (max-width: 1100px) {
  .artist-hero.artist-hero-single-bg{ height:330px; min-height:285px; }
  .artist-hero-title{ font-size:28px; }
  .artist-hero-desc{ font-size:14px; max-width:240px; }
  .artist-hero-content-abs{ padding-left:2vw;}
  .hero-follow-btn-absolute{top:15px;right:25px;font-size:15px;padding:7px 16px;}
  .hero-socials-abs{right:18px;bottom:14px;gap:10px;}
  .hero-socials-abs .hero-social-icon{width:35px;height:35px;font-size:0.85rem;border: 2px solid #fff;}
}
@media (max-width: 768px) {
  .artist-hero.artist-hero-single-bg {
    height: 232px; min-height: 180px; max-width: 98vw; width: 98vw;
    border-radius: 0; margin: 10px auto 0 auto;
  }
  .artist-hero-single-bg .artist-hero-img { border-radius: 0; }
  .artist-hero-content-abs {
    padding: 0 8vw;
    left: 0; top: 68px;
    transform: none;
    width: 100%; min-width: 0; max-width: 96vw;
    align-items: flex-start;
    position: absolute;
  }
  .artist-hero-title { font-size: 18px; margin-bottom: 6px; }
  .artist-hero-desc { font-size: 12px; max-width: 88vw; }
  .hero-follow-btn-absolute {
    top: 13px; right: 13px; padding: 6px 13px; font-size: 12px; border-radius: 9px;
  }
  .hero-socials-abs{ right: 11px; bottom: 10px; gap: 6px; }
  .hero-socials-abs .hero-social-icon{ width:25px;height:25px;font-size:.74rem;border: 1.5px solid #fff;}
}

/* ==== Artist Biyografi Alanı (radius yok, görsel genişliğine eşit) ==== */
.artist-bio-section {
  background: #16df49;
  margin: 50px auto 24px auto;
  /* border-radius: 0; */
  border-radius: 0 !important;
  padding: 55px 20px 42px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 140px;
  box-shadow: 0 3px 14px 0 rgba(22, 223, 73, 0.08);
  max-width: 1400px;
  width: 100%;
  box-sizing: border-box;
}
.artist-bio-container {
  max-width: 1300px;
  width: 100%;
  padding: 0 3vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.artist-bio-title {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 22px;
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.bio-title-green {
  color: #fff;
  background: none;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -2px;
  line-height: 1.05;
  padding: 0;
  filter: none;
}
.bio-title-black {
  color: #111;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -2px;
}
.artist-bio-text {
  font-size: 16px;
  color: #111;
  font-weight: 400;
  line-height: 1.5;
  max-width: 1200px;
}
.bio-bold { font-weight: 800; color: #111; }
@media (max-width: 900px) {
  .artist-bio-section { padding: 27px 0 16px 0; border-radius: 0 !important; }
  .artist-bio-title{ font-size: 20px; gap:4px; margin-bottom:13px; }
  .bio-title-green, .bio-title-black{ font-size: 20px; letter-spacing: -1px;}
  .artist-bio-text { font-size: 13px; }
}

/* ==== Yaklaşan Konserler ==== */
.upcoming-concerts-section {
  background: none;
  margin: 50px auto 0 auto;
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 20px;
  box-sizing: border-box;
}
.upcoming-concerts-container {
  max-width: 100%;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.upcoming-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}
.upcoming-logo {
  width: 48px;
  height: 48px;
  background: #111;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}
.upcoming-logo img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.upcoming-title {
  font-size: 30px;
  font-weight: 900;
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.upcoming-title-green {
  color: #16df49;
  font-weight: 900;
  letter-spacing: -1.5px;
  font-size: 30px;
}
.upcoming-title-black {
  color: #111;
  font-weight: 900;
  font-size: 30px;
}
.upcoming-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}
@media (min-width: 1100px) {
  .upcoming-cards-row { grid-template-columns: repeat(2, 1fr); }
}
.upcoming-card {
  display: flex;
  align-items: stretch;
  background: none;
  border-radius: 0;
  box-shadow: none;
  min-width: 0;
  width: 100%;
}
.upcoming-card:nth-child(2) {
  margin-left: 0;
}
.concert-date-box {
  background: #16df49;
  min-width: 120px;
  width: 120px;
  max-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  position: relative;
}
.concert-date-month {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 900;
  color: #111;
  letter-spacing: 1px;
  line-height: 1;
}
.concert-date-day {
  margin-top: 8px;
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.concert-date-time {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -21px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 20px 6px 19px;
  border-radius: 20px;
  min-width: 61px;
  text-align: center;
  box-shadow: 0 2.5px 10px #1112;
}
.concert-main-box {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 560px;
  background: #111;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px 0 23px;
  min-height: 120px;
  border-radius: 0;
  color: #fff;
  margin-left: 10px;
}
.concert-info-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.concert-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  min-width: 140px;
  max-width: 430px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.concert-price {
  font-size: 2rem;
  font-weight: 900;
  color: #16df49;
}
.concert-ticket-btn {
  background: #fff;
  color: #111;
  border-radius: 0;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 81px;
  height: 81px;
  margin-left: 28px;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  text-align: center;
  line-height: 1.3;
}
.concert-ticket-btn:hover {
  background: #16df49;
  color: #fff;
}
@media (max-width: 900px) {
  .upcoming-concerts-section {
    margin: 27px auto 0 auto;
    max-width: 100vw;
    width: 100vw;
    padding: 0;
  }
  .upcoming-concerts-container {
    padding: 0 3vw;
    max-width: 100vw;
    width: 100vw;
  }
  .upcoming-header {
    gap: 12px;
    margin-bottom: 20px;
  }
  .upcoming-logo {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .upcoming-logo img {
    width: 18px;
    height: 18px;
  }
  .upcoming-title, .upcoming-title-green, .upcoming-title-black {
    font-size: 1.4rem;
  }
  .upcoming-cards-row {
    grid-template-columns: 1fr;
  }
  .upcoming-card {
    width: 100%;
    max-width: 100%;
  }
  .concert-date-box {
    min-width: 90px;
    width: 90px;
    max-width: 90px;
  }
  .concert-date-month {
    font-size: 1.2rem;
  }
  .concert-date-day {
    font-size: 1.6rem;
  }
  .concert-date-time {
    font-size: 0.9rem;
    bottom: -17px;
    padding: 4px 10px;
    min-width: 38px;
  }
  .concert-main-box {
    padding: 0 9px 0 6px;
    min-height: 69px;
    width: auto;
    min-width: auto;
    max-width: calc(100% - 100px);
    flex: 1;
    flex-shrink: 1;
  }
  .concert-title {
    font-size: 0.93rem;
  }
  .concert-price {
    font-size: 1.12rem;
  }
  .concert-ticket-btn {
    font-size: 1rem;
    width: 81px;
    height: 81px;
    margin-left: 7px;
  }
}

/* ==== Diğer Konserler ==== */
.other-concerts-section {
  background: none;
  margin: 100px auto 0 auto;
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 20px;
  box-sizing: border-box;
}
.other-concerts-container {
  max-width: 100%;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.other-concerts-title {
  font-size: 30px;
  font-weight: 900;
  color: #111;
  margin-bottom: 32px;
}
.other-concerts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
}
.other-concert-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.other-date-box {
  background: #16df49;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  transition: background 0.3s ease;
}
.other-month {
  font-size: 18px;
  font-weight: 900;
  color: #111;
  line-height: 1;
  margin-bottom: 8px;
}
.other-day {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.other-right-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-left: 10px;
}
.other-main-box {
  background: #111;
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 70px;
  min-height: 70px;
  transition: background 0.3s ease;
}
.other-venue {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  line-height: 1.3;
}
.other-city-box {
  background: #16df49;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  transition: background 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-top: 10px;
}
.other-concert-card:hover .other-date-box {
  background: #111;
}
.other-concert-card:hover .other-date-box .other-month {
  color: #fff;
}
.other-concert-card:hover .other-main-box {
  background: #16df49;
}
.other-concert-card:hover .other-main-box .other-venue {
  color: #111;
}
.other-concert-card:hover .other-city-box {
  background: #111;
  color: #fff;
}
@media (max-width: 900px) {
  .other-concerts-section {
    margin: 50px 0 0 0;
    padding: 0 3vw;
  }
  .other-concerts-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .other-concerts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .other-date-box {
    padding: 12px 8px;
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
  }
  .other-month {
    font-size: 14px;
  }
  .other-day {
    font-size: 18px;
  }
  .other-right-container {
    margin-left: 10px;
  }
  .other-main-box {
    padding: 12px 8px;
    height: 70px;
    min-height: 70px;
    justify-content: flex-start;
  }
  .other-venue {
    font-size: 11px;
  }
  .other-city-box {
    padding: 6px 10px;
    font-size: 11px;
    margin-top: 10px;
  }
}

/* ==== Promo Banner Section ==== */
.promo-banner-section {
  margin: 50px auto 80px auto;
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.promo-banner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.promo-banner-left {
  background: #16df49;
  flex: 0 0 70%;
  padding: 48px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 140px;

}
.promo-title {
  font-size: 2rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.2;
}
.promo-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}
.promo-banner-right {
  background-image: 
    url('../assets/images/Path 20.svg'),
    url('../assets/images/Path 19.svg'),
    url('../assets/images/Path 20.svg');
  background-size: 33.33% 100%, 33.33% 100%, 33.33% 100%;
  background-position: left center, center center, right center;
  background-repeat: no-repeat;
  background-color: #16df49;
  flex: 0 0 30%;
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 60px;
  overflow: hidden;
}


.promo-join-btn {
  background: #fff;
  color: #111;
  border: none;
  border-radius: 30px;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.promo-join-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
@media (max-width: 900px) {
  .promo-banner-section {
    margin: 30px auto 50px auto;
    width: 97vw;
    max-width: 97vw;
    padding: 0 2vw;
    box-sizing: border-box;
  }
  .promo-banner {
    flex-direction: column;
    border-radius: 0;
    width: 95%;
    max-width: 95%;
  }
  .promo-banner-left {
    flex: 1;
    padding: 32px 24px;
  }
  .promo-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  .promo-subtitle {
    font-size: 0.95rem;
  }
  .promo-banner-right {
    flex: 1;
    padding: 40px 24px;
    min-height: 180px;
    justify-content: center;
  }
  .promo-join-btn {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

/* Etkinlik Detay Hero Section */
.event-detail-hero {
  margin-top: 50px;
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 665px;
  background-color: transparent;
  padding: 0 20px;
  box-sizing: border-box;
}

.event-detail-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  height: 100%;
  width: 100%;
  padding: 0;
}

/* Sol Alan - Sanatçı Bilgileri */
.event-detail-left {
  width: 472px;
  height: 100%;
  background-color: #1a1a1a;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.event-artist-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.event-artist-actions {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.event-favorite-btn {
  background-color: #16df49;
  color: #111;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
}

.event-follow-btn {
  background-color: #fff;
  color: #111;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.event-follow-btn i {
  color: #16df49;
  transition: all 0.3s ease;
}

.event-follow-btn span {
  transition: all 0.3s ease;
}

.event-follow-btn:hover {
  background-color: #f5f5f5;
}

.event-follow-btn:hover i {
  color: #16df49;
}

.event-follow-btn.followed {
  background-color: #16df49;
  color: #fff;
}

.event-follow-btn.followed i {
  color: #fff;
  opacity: 0;
  transform: rotate(90deg);
}

.event-follow-btn.followed span {
  opacity: 0;
  transform: translateX(-10px);
}

.event-follow-btn.followed::after {
  content: '✓ Takip Edildi';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  opacity: 0;
  animation: fadeInSlide 0.4s ease forwards;
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
  }
}

@keyframes rotateClockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.event-artist-info {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
  z-index: 10;
}

.event-artist-name a {
  color: #16df49;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.event-artist-desc {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Orta Alan - Etkinlik Detayları */
.event-detail-middle {
  width: 483px;
  height: 100%;
  background-color: #fff;
  padding: 30px;
  overflow-y: auto;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.event-tag-item {
  display: inline-block;
  background-color: #f5f5f5;
  color: #111;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #e0e0e0;
}

.event-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin: 0 0 20px 0;
}

.event-title-green {
  color: #16df49;
}
.event-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #111;
  white-space: nowrap;
  flex-shrink: 0;
}

.event-meta-item a {
  color: #000;
}

.event-meta-item:last-child {
  flex-shrink: 1;
  min-width: 0;
  white-space: normal;
}

.event-meta-item:last-child span,
.event-meta-item:last-child a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.event-meta-item i {
  color: #16df49;
  width: 16px;
  flex-shrink: 0;
  font-size: 13px;
}

@media (max-width: 768px) {
  .event-meta {
    gap: 8px;
  }
  
  .event-meta-item {
    font-size: 12px;
    gap: 4px;
  }
  
  .event-meta-item i {
    width: 14px;
    font-size: 12px;
  }
}

.event-tag {
  display: inline-block;
  background-color: #16df49;
  color: #111;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

.event-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: none;
}

.event-tab {
  background: #f5f5f5;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  border-radius: 8px;
  margin: 0;
  font-weight: 500;
  transition: all 0.2s;
}

.event-tab:hover {
  background: #e8e8e8;
}

.event-tab.active {
  background: #ff6600;
  color: #fff;
}

.event-tab.active:hover {
  background: #e55a00;
}

.event-tab:not(.active) {
  background: #e0e0e0;
  color: #666;
}

.event-tab-content {
  margin-top: 20px;
  position: relative;
  min-height: 100px;
}

.event-description {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.event-description.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.event-description p {
  margin: 0 0 15px 0;
}

/* Sağ Alan - Bilet Seçimi */
.event-detail-right {
  width: 445px;
  height: 100%;
  background-color: #fff;
  padding: 30px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.ticket-selection {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.ticket-card {
  border: none;
  border-radius: 12px;
  padding: 15px;
  background-color: #f5f5f5;
  position: relative;
}

.ticket-card input[type="radio"] {
  display: none;
}

.ticket-info-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #666;
  font-size: 16px;
  z-index: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.ticket-info-icon:hover {
  color: #16df49;
}

.ticket-info-popup {
  position: fixed;
  width: 220px;
  max-width: 90vw;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  padding: 12px 14px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  pointer-events: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.ticket-info-icon:hover + .ticket-info-popup,
.ticket-info-popup:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.ticket-info-popup p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
  font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
}

.ticket-card label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 15px;
  padding-left: 30px;
}

.ticket-name {
  flex: 1;
  font-size: 14px;
  color: #111;
  font-weight: 600;
}

.ticket-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.qty-value {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
  color: #111;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #111;
  font-weight: 600;
  transition: all 0.2s;
}

.qty-btn.minus {
  background: #e0e0e0;
  color: #111;
}

.qty-btn.plus {
  background: #16df49;
  color: #fff;
}

.ticket-price {
  background-color: #111;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  min-width: 90px;
  text-align: center;
}

.promo-code-section {
  display: flex;
  gap: 0;
  margin-bottom: 15px;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 12px;
  align-items: center;
}

.promo-input {
  flex: 1;
  padding: 8px 12px;
  border: none;
  background: transparent;
  border-radius: 0;
  font-size: 14px;
  color: #111;
}

.promo-input:focus,
.promo-input:focus-visible {
  outline: none;
  border: none;
}
.promo-input::placeholder {
  color: #999;
}

.promo-apply-btn {
  padding: 8px 16px;
  background-color: #e0e0e0;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  color: #111;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.service-fee {
  font-size: 14px;
  color: #111;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
}

.discount-info {
  font-size: 14px;
  color: #16df49;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  font-weight: 600;
}

.discount-info .discount-amount {
  color: #16df49;
}

.total-price-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #16df49;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.total-price-amount {
  display: flex;
  align-items: center;
  gap: 10px;
}

.total-price-amount .original-price {
  text-decoration: line-through;
  opacity: 0.7;
  font-size: 0.9em;
}

.total-price-amount .discounted-price {
  font-size: 1em;
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.checkout-btn:hover {
  background-color: #333;
}

@media (max-width: 900px) {
  .event-detail-hero {
    width: 100%;
    max-width: 100%;
    margin-top: 50px;
    height: auto;
  }
  
  .event-detail-container {
    flex-direction: column;
    gap: 0;
  }
  
  .event-detail-left,
  .event-detail-middle,
  .event-detail-right {
    width: 100%;
    height: auto;
  }
  
  .event-detail-left {
    max-height: 300px;
  }
  
  .event-artist-image {
    max-height: 300px;
    object-fit: cover;
  }
}


/* === VIP Hero Section === */
.vip-hero-section {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 20px auto 0 auto;
  height: 571px;
  overflow: hidden;
  border-radius: 12px;
  padding: 0 20px;
  box-sizing: border-box;
}

.vip-hero-bg {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  bottom: 0;
  width: calc(100% - 40px);
  height: 100%;
  z-index: 1;
}

.vip-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Çerçeve SVG */
.vip-hero-frame {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 15px;
  bottom: 15px;
  width: calc(100% - 80px);
  height: calc(100% - 30px);
  z-index: 5;
  pointer-events: none;
  background-image: url('../assets/images/Path 196.svg');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.vip-frame-svg {
  display: none;
}

/* Sağ alt Scroll Group - Group 12 (yazı) ve Group 13 (mouse) */
.vip-hero-scroll-group {
  position: absolute;
  right: 100px;
  bottom: 80px;
  z-index: 10;
  pointer-events: none;
  width: 149px;
  height: 151px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vip-group12-svg {
  position: absolute;
  width: 149px;
  height: 151px;
  top: 0;
  left: 0;
  animation: rotateClockwise 20s linear infinite;
  transform-origin: center center;
}

.vip-hero-group13 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vip-group13-svg {
  width: 37px;
  height: 58px;
  display: block;
}

/* Sol üst numara kutusu */
.vip-hero-number-box {
  position: absolute;
  top: 75px;
  left: 95px;
  width: 80px;
  height: 80px;
  background: #16df49;
  border-radius: 0 0 55px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.vip-hero-number-text {
  font-size: 36px;
  font-weight: 900;
  color: #000;
  font-family: 'Kanit', sans-serif;
  line-height: 1;
}

/* Sol üst numara (eski - kullanılmıyor) */
.vip-hero-number {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 80px;
  height: 80px;
  background: #16df49;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  color: #000;
  z-index: 10;
  font-family: 'Kanit', sans-serif;
}

/* Sol alt başlık kutusu */
.vip-hero-title-box {
  position: absolute;
  bottom: 60px;
  left: 60px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  box-shadow: none;
}

.vip-hero-title-green {
  font-size: 44px;
  font-weight: 900;
  color: #16df49;
  font-family: 'Kanit', sans-serif;
  line-height: 1;
}

.vip-hero-title-black {
  font-size: 44px;
  font-weight: 700;
  color: #000;
  font-family: 'Kanit', sans-serif;
  line-height: 1;
}

/* Ortada CTA butonu */
.vip-hero-cta-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #16df49;
  color: #fff;
  border: none;
  width: 158px;
  height: 45px;
  padding: 0;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  font-family: 'Kanit', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(22, 223, 73, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vip-hero-cta-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(22, 223, 73, 0.4);
}

/* Sağ üst metin */
.vip-hero-text-right {
  position: absolute;
  top: 30px;
  right: 30px;
  max-width: 300px;
  z-index: 10;
}

.vip-hero-text-right p {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Sağ alt scroll göstergesi */
.vip-hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.vip-scroll-circle {
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.vip-scroll-circle i {
  color: #fff;
  font-size: 20px;
}

.vip-scroll-text {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* VIP Hero Responsive */
@media (max-width: 768px) {
  .vip-hero-section {
    height: 400px;
    margin-top: 10px;
    border-radius: 0;
    max-width: 95vw;
    width: 95vw;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }
  
  .vip-hero-bg {
    left: 0;
    right: 0;
    width: 100%;
  }
  
  /* Çerçeve SVG mobil - gizle */
  .vip-hero-frame {
    display: none;
  }
  
  /* Arka plan resmi mobil - search bar ile hizalı */
  .vip-hero-bg {
    left: 0;
    right: 0;
    width: 100%;
  }
  
  /* Sol üst numara kutusu mobil */
  .vip-hero-number-box {
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 0 0 30px 0;
  }
  
  .vip-hero-number-text {
    font-size: 28px;
  }
  
  .vip-hero-number {
    width: 60px;
    height: 60px;
    font-size: 28px;
    top: 20px;
    left: 20px;
  }
  
  /* Sol alt başlık mobil */
  .vip-hero-title-box {
    bottom: 30px;
    left: 30px;
    gap: 3px;
            background: white;
        padding: 6px;
    
  }

  .vip-hero-scroll-group {
    display:none;
  }
  
  .vip-hero-title-green {
    font-size: 28px;
  }
  
  .vip-hero-title-black {
    font-size: 28px;
  }
  
  /* Ortada buton mobil */
  .vip-hero-cta-btn {
    width: 140px;
    height: 40px;
    font-size: 16px;
  }
  
  .vip-hero-cta-btn:hover {
    transform: translate(-50%, -50%) scale(1.03);
  }
  
  .vip-hero-text-right {
    top: 20px;
    right: 20px;
    max-width: 200px;
  }
  
  .vip-hero-text-right p {
    font-size: 12px;
  }
  
  /* Sağ alt scroll grubu mobil */
  .vip-hero-scroll-group {
    right: 20px;
    bottom: 30px;
    width: 100px;
    height: 100px;
  }
  
  .vip-group12-svg {
    width: 100px;
    height: 100px;
  }
  
  .vip-group13-svg {
    width: 28px;
    height: 44px;
  }
  
  .vip-hero-scroll {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  
  .vip-scroll-circle {
    width: 50px;
    height: 50px;
  }
  
  .vip-scroll-circle i {
    font-size: 16px;
  }
  
  .vip-scroll-text {
    font-size: 10px;
  }
}

/* === VIP Private Club Info Section === */
.vip-private-club-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background: #16df49;
  padding: 60px 0;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .vip-private-club-section {
    max-width: 100vw !important;
    width: 100vw !important;
  }
}

.vip-private-club-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.vip-private-club-title {
  font-family: 'Kanit', sans-serif;
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.2;
  padding: 0 40px;
  box-sizing: border-box;
}

.vip-title-black {
  color: #000;
}

.vip-title-white {
  color: #fff;
}

.vip-private-club-text {
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  max-width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

/* VIP Private Club Responsive */
@media (max-width: 768px) {
  .vip-hero-section {
    margin-bottom: 0;
  }
  
  .vip-private-club-section {
    padding: 40px 20px !important;
    max-width: 95vw !important;
    width: 95vw !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  
  .vip-private-club-container {
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  
  .vip-private-club-title {
    font-size: 32px;
    margin-bottom: 20px;
    padding: 0;
  }
  
  .vip-private-club-text {
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
  }
  
  /* VIP Advantages mobil - search bar ile hizalı */
  .vip-advantages-section {
    width: 80% !important;
    padding: 50px 20px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  
  .vip-advantages-container {
    padding: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}

/* === VIP Advantages Section === */
.vip-advantages-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 40px auto;
  background: #111;
  padding: 80px 0;
  box-sizing: border-box;
  position: relative;
}

@media (max-width: 768px) {
  .vip-advantages-section {
    max-width: 100vw !important;
    width: 95% !important;
  }
}

.vip-advantages-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #16df49;
}

.vip-advantages-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.vip-advantages-left {
  flex: 0 0 auto;
  position: relative;
}

.vip-advantages-green-bg {
  position: absolute;
  background: #16df49;
  transform: rotate(2deg);
  height: 120px;
  width: 400px;
  top: 60px;
  left: 40px;
  z-index: 0;
}

.vip-advantages-label {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Kanit', sans-serif;
  transform: rotate(2deg);
  margin-bottom: 0px;
  margin-left: 80px;
}

.vip-advantages-title {
  color: #fff;
  font-size: 64px;
  font-weight: 900;
  font-family: 'Kanit', sans-serif;
  letter-spacing: 8px;
  margin: 0;
  margin-left: 60px;
  line-height: 1.1;
  transform: rotate(2deg);
}

.vip-advantages-right {
  flex: 1;
  max-width: 600px;
}

.vip-advantages-question {
  font-family: 'Kanit', sans-serif;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.2;
}

.vip-question-green {
  color: #16df49;
}

.vip-question-white {
  color: #fff;
}

.vip-advantages-text {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* VIP Advantages Responsive */
@media (max-width: 768px) {
  .vip-advantages-section {
    padding: 50px 0;
  }
  
  .vip-advantages-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
  
  .vip-advantages-label {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .vip-advantages-green-box {
    padding: 25px 35px;
  }
  
  .vip-advantages-title {
    font-size: 42px;
  }
  
  .vip-advantages-right {
    max-width: 100%;
  }
  
  .vip-advantages-question {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .vip-advantages-text {
    font-size: 14px;
  }
}

/* === VIP Advantages Details Section === */
.vip-advantages-details-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 10px auto;
  background: #f5f5f5;
  padding: 80px 0;
  box-sizing: border-box;
}

.vip-advantages-details-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.vip-advantages-details-left {
  flex: 0 0 300px;
}

.vip-advantages-details-title {
  font-family: 'Kanit', sans-serif;
  font-size: 35px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 0 0;
  color: #000000;
}

.vip-details-title-bold {
  font-weight: 800;
  color: #000000;
}

.vip-details-title-normal {
  font-weight: 600;
  color: #000000;
}

.vip-details-decorative-line {
  width: 222px;
  height: auto;
  display: block;
  margin-top: 0;
}

.vip-advantages-details-right {
  flex: 1;
}

.vip-details-subtitle {
  font-size: 30px;
  color: #333;
  margin-bottom: 40px;
  font-weight: 700;
  font-family: 'Kanit', sans-serif;
  padding-left: 0;
}

.vip-details-item {
  position: relative;
  padding: 30px;
  padding-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-radius: 12px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.vip-details-item:hover {
  background: #16df49;
  transform: rotate(-1deg);
}

.vip-details-item:hover .vip-details-item-title,
.vip-details-item:hover .vip-details-item-text,
.vip-details-item:hover .vip-details-number {
  color: #fff;
}

.vip-details-item-content {
  flex: 1;
}

.vip-details-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.vip-details-item-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0;
  font-family: 'Kanit', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vip-details-title-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.vip-details-icon {
  width: 32px;
  height: 32px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

.vip-details-item-text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

.vip-details-number {
  font-size: 72px;
  font-weight: 900;
  color: #333;
  font-family: 'Kanit', sans-serif;
  line-height: 1;
  align-self: flex-start;
  flex-shrink: 0;
  width: 57px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vip-details-divider {
  height: 1px;
  background: #ddd;
  margin: 40px 0;
}

/* VIP Advantages Details Responsive */
@media (max-width: 768px) {
  .vip-advantages-details-section {
    padding: 50px 20px;
    margin: 0 auto 50px auto;
    max-width: 95%;
    width: 95%;
  }
  
  .vip-advantages-details-container {
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }
  
  .vip-advantages-details-left {
    flex: 1;
    width: 100%;
  }
  
  .vip-advantages-details-title {
    font-size: 36px;
  }
  
  .vip-advantages-details-right {
    width: 100%;
  }
  
  .vip-details-item {
    padding-bottom: 30px;
  }
  
  .vip-details-item-title {
    font-size: 20px;
  }
  
  .vip-details-item-text {
    font-size: 14px;
    max-width: 100%;
  }
  
  .vip-details-number {
    font-size: 36px;
  }
  
  .vip-details-divider {
    margin: 30px 0;
  }
}

/* === VIP Register CTA Section === */
.vip-register-cta-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 10px auto;
  background: #f5f5f5;
  padding: 60px 0;
  box-sizing: border-box;
}

.vip-register-cta-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.vip-register-cta-line1 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vip-cta-text1 {
  font-size: 36px;
  font-weight: 900;
  color: #000;
  font-family: 'Kanit', sans-serif;
}

.vip-cta-info-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.vip-register-cta-line2 {
  background: #16df49;
  padding: 15px 40px;
  border-radius: 8px;
}

.vip-cta-text2 {
  font-size: 36px;
  font-weight: 900;
  color: #000;
  font-family: 'Kanit', sans-serif;
}

/* VIP Register CTA Responsive */
@media (max-width: 768px) {
  .vip-register-cta-section {
    padding: 40px 20px;
    margin: 0 auto 50px auto;
    max-width: 95%;
    width: 95%;
  }
  
  .vip-register-cta-container {
    padding: 0;
  }
  
  .vip-cta-text1 {
    font-size: 24px;
  }
  
  .vip-cta-text2 {
    font-size: 24px;
  }
  
  .vip-cta-info-icon {
    width: 24px;
    height: 24px;
  }
  
  .vip-register-cta-line2 {
    padding: 12px 30px;
  }
}

/* === VIP Register Form Section === */
.vip-register-form-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 20px auto;
  background: #fff;
  padding: 60px 0;
  box-sizing: border-box;
}

.vip-register-form-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vip-form-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vip-form-label {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  font-family: 'Kanit', sans-serif;
}

.vip-form-input,
.vip-form-select {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  box-sizing: border-box;
  outline: none;
}

.vip-form-input {
  background: #f5f5f5;
  color: #000;
  transition: background-color 0.3s ease;
}

.vip-form-input-filled {
  background: #16df49;
  color: #000;
  font-weight: 500;
}

.vip-form-input::placeholder {
  color: #999;
}

.vip-form-select {
  background: #f5f5f5;
  color: #000;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23000' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 50px;
}

.vip-form-select-filled {
  background: #16df49;
  color: #000;
  font-weight: 500;
}

.vip-form-city-select {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  box-sizing: border-box;
  outline: none;
  background: #f5f5f5;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
}

.vip-form-city-select-filled {
  background: #16df49;
  color: #000;
  font-weight: 500;
}

.vip-city-selected {
  flex: 1;
  color: #999;
}

.vip-form-city-select-filled .vip-city-selected {
  color: #000;
}

.vip-form-city-select i {
  font-size: 12px;
  color: #000;
}

/* VIP Register Form Responsive */
@media (max-width: 768px) {
  .vip-register-form-section {
    padding: 40px 20px;
    margin: 0 auto 50px auto;
    max-width: 95%;
    width: 95%;
  }
  
  .vip-register-form-container {
    padding: 0;
    gap: 25px;
  }
  
  .vip-form-label {
    font-size: 16px;
  }
  
  .vip-form-input,
  .vip-form-select {
    padding: 14px 18px;
    font-size: 15px;
  }
  
  .vip-form-city-select {
    padding: 14px 18px;
    font-size: 15px;
  }
}

/* Form Checkbox and Submit */
.vip-form-checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}

.vip-form-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.vip-form-checkbox-label {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

.vip-form-submit-field {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

.vip-form-submit-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 18px 60px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Kanit', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.vip-form-submit-btn:hover {
  background: #333;
  transform: scale(1.02);
}

/* VIP Form Checkbox and Submit Responsive */
@media (max-width: 768px) {
  .vip-form-checkbox-field {
    gap: 10px;
  }
  
  .vip-form-checkbox {
    width: 18px;
    height: 18px;
  }
  
  .vip-form-checkbox-label {
    font-size: 12px;
  }
  
  .vip-form-submit-btn {
    padding: 16px 50px;
    font-size: 16px;
    width: 100%;
  }
}

/* === VIP Student Cashback Section === */
.vip-student-cashback-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 50px auto;
  position: relative;
  min-height: 600px;
  overflow: hidden;
  box-sizing: border-box;
  background: #000;
}

.vip-student-cashback-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.vip-student-cashback-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.001);
  z-index: 1;
}

.vip-student-cashback-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.vip-student-cashback-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 65px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 600px;
}

.vip-student-cashback-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vip-student-lucky-text {
  font-size: 24px;
  font-weight: 400;
  margin-top: 70px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  transform: rotate(6deg);
}

.vip-student-percentage {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  transform: rotate(6deg);
}

.vip-percent-symbol,
.vip-percent-number {
  font-size: 200px;
  font-weight: 900;
  color: #fff;
  font-family: 'Kanit', sans-serif;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.vip-student-percentage::after {
  content: '';
  position: absolute;
  top: 25%;
  left: -10px;
  width: 300px;
  height: 120px;
  background: #16df49;
  transform: rotate(2deg);
  z-index: 1;
}

.vip-student-cashback-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  transform: rotate(6deg);
}

.vip-cashback-line1 {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.vip-cashback-bold {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  font-family: 'Kanit', sans-serif;
}

.vip-cashback-green {
  color: #16df49;
}

.vip-cashback-normal {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}

.vip-student-cashback-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 600px;
  align-self: flex-start;
  margin-top: 0;
}

.vip-student-description {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}

.vip-green-highlight {
  color: #16df49;
  font-weight: 700;
}

.vip-student-register-btn {
  background: #16df49;
  color: #000;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Kanit', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}

.vip-student-register-btn:hover {
  background: #14d043;
  transform: scale(1.02);
}

.vip-student-illustrations {
  position: absolute;
  bottom: 40px;
  right: 65px;
  display: flex;
  gap: 20px;
  z-index: 2;
}

.vip-illustration-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

/* VIP Student Cashback Responsive */
@media (max-width: 768px) {
  .vip-student-cashback-section {
    min-height: auto;
    max-width: 95%;
    width: 95%;
    margin: 0 auto 50px auto;
  }
  
  .vip-student-cashback-container {
    padding: 50px 20px;
    min-height: auto;
    flex-direction: column;
  }
  
  .vip-student-cashback-left {
    order: 1;
    margin-bottom: 40px;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  
  .vip-student-lucky-text {
    text-align: center;
    width: 100%;
  }
  
  .vip-student-percentage {
    margin: 0 auto;
  }
  
  .vip-student-cashback-text {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  
  .vip-student-cashback-right {
    order: 2;
    max-width: 100%;
    align-self: flex-start;
  }
  
  .vip-student-lucky-text {
    font-size: 20px;
  }
  
  .vip-percent-symbol,
  .vip-percent-number {
    font-size: 80px;
  }
  
  .vip-student-percentage::after {
    width: 140px;
    height: 70px;
  }
  
  .vip-cashback-bold {
    font-size: 24px;
  }
  
  .vip-cashback-normal {
    font-size: 18px;
  }
  
  .vip-student-description {
    font-size: 14px;
  }
  
  .vip-student-register-btn {
    padding: 16px 30px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 120px;
  }
  
  .vip-student-illustrations {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  
  .vip-illustration-img {
    height: 80px;
  }
}

/* ============================================
   BİLETLERİM SAYFASI STİLLERİ
   style.css dosyasının sonuna ekleyin
   ============================================ */

/* Ana Sayfa Layout */
.biletlerim-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    min-height: calc(100vh - 200px);
}

/* Container - Sidebar ve Content Yan Yana */
.biletlerim-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

/* Profile Sidebar */
.profile-sidebar {
    width: 215px;
    min-width: 215px;
    max-width: 215px;
    flex: 0 0 215px;
    background: #fff;
    border-radius: 10px;
    padding: 15px 0;
    position: sticky;
    top: 40px;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.profile-nav {
    display: flex;
    flex-direction: column;
}

.profile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    color: #222;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
}

.profile-nav-item i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    color: #666;
    transition: color 0.2s ease;
}

.profile-nav-item:hover {
    background: #f8f8f8;
}

.profile-nav-item.active {
    background: #16df49;
    color: #fff;
}

.profile-nav-item.active i {
    color: #fff;
}

/* Content Area */
.biletlerim-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Tickets Section */
.tickets-section {
    background: #fff;
    border-radius: 10px;
    padding: 35px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tickets-section-title {
    font-family: 'Kanit', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.3;
}


/* Ticket Card */
.ticket-card-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f2f2f2;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .tickets-section {
        width: 100%;
        overflow-x: hidden;
    }
    
    .ticket-card-profile {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ticket-image {
        width: 100%;
        height: 180px;
    }
}

.ticket-card-profile:last-child {
    margin-bottom: 0;
}

.ticket-card-profile:hover {
    background: #16df49;
    box-shadow: 0 8px 25px rgba(22, 223, 73, 0.25);
}

.ticket-card-profile-active {
    background: #16df49;
}

.ticket-card-profile-active:hover {
    background: #14c843;
    box-shadow: 0 8px 25px rgba(22, 223, 73, 0.35);
}

.ticket-card-profile-past {
    background: #f2f2f2;
}

.ticket-card-profile-past:hover {
    background: #16df49;
}

/* Ticket Image */
.ticket-image {
    width: 204px;
    height: 204px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
}

.ticket-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ticket-card-profile:hover .ticket-image img {
    transform: scale(1.05);
}

/* Ticket Info */
.ticket-info {
    flex: 1;
    padding: 20px 0;
    min-width: 0;
}

.ticket-title {
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ticket-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ticket-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #000;
}

.ticket-detail i {
    width: 12px;
    font-size: 12px;
    color: #f25c05;
    opacity: 0.7;
}

/* Ticket Action Button */
.ticket-action {
    padding-right: 40px;
    flex-shrink: 0;
}

.ticket-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.ticket-btn:hover {
    background: #333;
    transform: scale(1.02);
}

.ticket-btn i {
    font-size: 18px;
}

/* Discover Banner */
.discover-banner {
    background: #16df49;
    border-radius: 10px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.discover-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 223, 73, 0.25);
}

.discover-content {
    flex: 1;
}

.discover-title {
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.discover-text {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
}

.discover-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.discover-btn:hover {
    background: #333;
    transform: scale(1.02);
}

/* ============================================
   RESPONSIVE - TABLET (992px)
   ============================================ */
@media (max-width: 992px) {
    .profile-sidebar {
        width: 180px;
        min-width: 180px;
        max-width: 180px;
        flex: 0 0 180px;
    }
    
    .profile-nav-item {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .tickets-section {
        padding: 25px;
    }
    
    .ticket-card {
        flex-wrap: wrap;
    }
    
    .ticket-image {
        width: 160px;
        height: 160px;
    }
    
    .ticket-action {
        width: 100%;
        padding: 0 20px 20px 20px;
    }
    
    .ticket-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE - MOBİL (768px)
   ============================================ */
@media (max-width: 768px) {
    .biletlerim-page {
        padding: 20px 15px 60px;
    }
    
    .biletlerim-container {
        flex-direction: column;
    }
    
    .profile-sidebar {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
        position: static !important;
        padding: 8px 10px !important;
    }
    
     .profile-nav {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 8px !important;
    }
    
    .profile-nav-item {
        flex: 1 !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 12px 8px !important;
        gap: 8px !important;
        border-radius: 10px !important;
        font-size: 12px !important;
        text-align: center !important;
        background: transparent !important;
    }
    
     .profile-nav-item i {
        font-size: 16px !important;
        width: auto !important;
        color: #666 !important;
    }

        .profile-nav-item span {
        display: none !important;
    }
    
     .profile-nav-item.active {
        background: #16df49 !important;
        border-radius: 10px !important;
    }

       .profile-nav-item.active i {
        color: #fff !important;
    }
    
    /* Profil Container */
    .profil-container {
        flex-direction: column !important;
    }

    .tickets-section {
        padding: 25px 20px;
    }
    
    .tickets-section-title {
        font-size: 20px;
    }
    
    .ticket-card {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ticket-image {
        width: 100%;
        height: 180px;
        border-radius: 16px 16px 0 0;
    }
    
    .ticket-info {
        padding: 15px 20px;
    }
    
    .ticket-title {
        font-size: 18px;
    }
    
    .ticket-action {
        padding: 0 20px 20px;
    }
    
    .discover-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
        gap: 20px;
    }
    
    .discover-title {
        font-size: 22px;
    }
    
    .discover-text {
        font-size: 14px;
    }
    
    .discover-btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE - KÜÇÜK MOBİL (480px)
   ============================================ */
@media (max-width: 480px) {
    .profile-nav {
        justify-content: space-around;
    }
    
    .profile-nav-item {
        padding: 12px;
    }
    
    .ticket-detail {
        font-size: 11px;
    }
    
    .ticket-image {
        height: 150px;
    }
    
    .ticket-title {
        font-size: 16px;
    }
    
    .ticket-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* ============================================
   PROFİL SAYFASI STİLLERİ
   style.css dosyasının sonuna ekleyin
   ============================================ */

/* Ana Sayfa Layout */
.profil-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    min-height: calc(100vh - 200px);
}

/* Container - Sidebar ve Content Yan Yana */
.profil-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

/* Content Area */
.profil-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ============================================
   HOŞ GELDİN BANNER
   ============================================ */

.welcome-banner {
    background: #16df49;
    border-radius: 10px 10px 0 0;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.welcome-text {
    flex: 1;
}

.welcome-title {
    font-family: 'Kanit', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #000;
    margin: 0 0 8px 0;
}

.welcome-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
}

.edit-profile-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.edit-profile-btn:hover {
    background: #333;
}

.edit-profile-btn i {
    font-size: 14px;
}

/* ============================================
   PROFİL BİLGİLERİ
   ============================================ */

.profile-info-section {
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.profile-avatar {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f2f2f2;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details {
    flex: 1;
    min-width: 0;
}

.profile-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.profile-name {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.verified-badge {
    color: #16df49;
    font-size: 18px;
}

.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 20px 40px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item-wide {
    grid-column: span 1;
}

.info-label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.info-value {
    background: #f2f2f2;
    border-radius: 10px;
    padding: 14px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
}

/* Öğrenci Badge */
.student-badge {
    width: 100px;
    height: 100px;
    background: #f25c05;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
}

.student-badge i {
    font-size: 28px;
    color: #fff;
}

.student-badge span {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

/* ============================================
   RESPONSIVE - TABLET (992px)
   ============================================ */
@media (max-width: 992px) {
    .welcome-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px 30px;
    }
    
    .edit-profile-btn {
        width: 100%;
        justify-content: center;
    }
    
    .profile-info-section {
        flex-direction: column;
        align-items: center;
        padding: 30px;
        gap: 30px;
    }
    
    .profile-avatar {
        width: 150px;
        height: 150px;
    }
    
    .profile-details {
        width: 100%;
    }
    
    .profile-name-row {
        justify-content: center;
    }
    
    .profile-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .student-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 80px;
        height: 80px;
    }
    
    .student-badge i {
        font-size: 22px;
    }
    
    .student-badge span {
        font-size: 12px;
    }
}

/* ============================================
   RESPONSIVE - MOBİL (768px)
   ============================================ */
@media (max-width: 768px) {
    .profil-page {
        padding: 20px 15px 60px;
    }
    
    .profil-container {
        flex-direction: column;
    }
    
    .welcome-banner {
        padding: 20px;
    }
    
    .welcome-title {
        font-size: 20px;
    }
    
    .welcome-desc {
        font-size: 13px;
    }
    
    .profile-info-section {
        padding: 25px 20px;
        position: relative;
    }
    
    .profile-avatar {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .profile-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .info-value {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .info-label {
        font-size: 12px;
    }
    
    .student-badge {
        width: 70px;
        height: 70px;
    }
    
    .student-badge i {
        font-size: 20px;
    }
    
    .student-badge span {
        font-size: 11px;
    }
}

/* ============================================
   RESPONSIVE - KÜÇÜK MOBİL (480px)
   ============================================ */
@media (max-width: 480px) {
    .profile-info-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 20px;
    }
    
    .student-badge {
        width: 60px;
        height: 60px;
    }
    
    .student-badge i {
        font-size: 18px;
    }
    
    .student-badge span {
        font-size: 10px;
    }
}

/* ============================================
   PROFİL SAYFASI STİLLERİ
   style.css dosyasının sonuna ekleyin
   ============================================ */

/* Ana Sayfa Layout */
.profil-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    min-height: calc(100vh - 200px);
}

/* Container - Sidebar ve Content Yan Yana */
.profil-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

/* Profile Sidebar - Profil sayfası için güncelleme */
.profil-page .profile-sidebar {
    padding: 0;
    overflow: hidden;
}

.profil-page .profile-nav {
    display: flex;
    flex-direction: column;
}

/* İlk nav item (Profil Ayarları) aktifken üst köşeler sidebar ile aynı */
.profil-page .profile-nav-item:first-child.active {
    border-radius: 10px 10px 0 0;
}

/* Diğer nav itemlar için border-radius yok */
.profil-page .profile-nav-item {
    border-radius: 0;
}

/* Content Area */
.profil-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ============================================
   HOŞ GELDİN BANNER
   ============================================ */

.welcome-banner {
    background: #16df49;
    border-radius: 10px 10px 0 0;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.welcome-text {
    flex: 1;
}

.welcome-title {
    font-family: 'Kanit', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #000;
    margin: 0 0 8px 0;
}

.welcome-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
}

.edit-profile-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.edit-profile-btn:hover {
    background: #333;
}

.edit-profile-btn i {
    font-size: 14px;
}

/* ============================================
   PROFİL BİLGİLERİ
   ============================================ */

.profile-info-section {
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.profile-avatar {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f2f2f2;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details {
    flex: 1;
    min-width: 0;
}

.profile-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.profile-name {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.verified-badge {
    color: #16df49;
    font-size: 18px;
}

.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 20px 40px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item-wide {
    grid-column: span 1;
}

.info-label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.info-value {
    background: #f2f2f2;
    border-radius: 10px;
    padding: 14px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
}

/* Öğrenci Badge */
.student-badge {
    width: 100px;
    height: 100px;
    background: #f25c05;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
}

.student-badge i {
    font-size: 28px;
    color: #fff;
}

.student-badge span {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

/* ============================================
   RESPONSIVE - TABLET (992px)
   ============================================ */
@media (max-width: 992px) {
    .welcome-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px 30px;
    }
    
    .edit-profile-btn {
        width: 100%;
        justify-content: center;
    }
    
    .profile-info-section {
        flex-direction: column;
        align-items: center;
        padding: 30px;
        gap: 30px;
        position: relative;
    }
    
    .profile-avatar {
        width: 150px;
        height: 150px;
    }
    
    .profile-details {
        width: 100%;
    }
    
    .profile-name-row {
        justify-content: center;
    }
    
    .profile-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .student-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 80px;
        height: 80px;
    }
    
    .student-badge i {
        font-size: 22px;
    }
    
    .student-badge span {
        font-size: 12px;
    }
}

/* ============================================
   RESPONSIVE - MOBİL (768px)
   ============================================ */
@media (max-width: 768px) {
    .profil-page {
        padding: 20px 15px 60px;
    }
    
    .profil-container {
        flex-direction: column;
    }
    
    .profil-page .profile-sidebar {
        padding: 0;
    }
    
    .profil-page .profile-nav-item:first-child.active {
        border-radius: 8px;
    }
    
    .welcome-banner {
        padding: 20px;
    }
    
    .welcome-title {
        font-size: 20px;
    }
    
    .welcome-desc {
        font-size: 13px;
    }
    
    .profile-info-section {
        padding: 25px 20px;
        position: relative;
    }
    
    .profile-avatar {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .profile-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .info-value {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .info-label {
        font-size: 12px;
    }
    
    .student-badge {
        width: 70px;
        height: 70px;
    }
    
    .student-badge i {
        font-size: 20px;
    }
    
    .student-badge span {
        font-size: 11px;
    }
}

/* ============================================
   RESPONSIVE - KÜÇÜK MOBİL (480px)
   ============================================ */
@media (max-width: 480px) {
    .profile-info-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 20px;
    }
    
    .student-badge {
        width: 60px;
        height: 60px;
    }
    
    .student-badge i {
        font-size: 18px;
    }
    
    .student-badge span {
        font-size: 10px;
    }
}

/* ============================================
   PROFİL DÜZENLEME SAYFASI STİLLERİ
   style.css dosyasının sonuna ekleyin
   ============================================ */

/* ============================================
   AVATAR DÜZENLEME
   ============================================ */

.avatar-edit-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 70px;
}

.avatar-edit-container {
    position: relative;
    width: 100px;
    height: 100px;
}

.avatar-edit-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-camera-btn {
    position: absolute;
    bottom: 0;
    right: -5px;
    width: 33px;
    height: 33px;
    background: #16df49;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.avatar-camera-btn i {
    color: #000;
    font-size: 12px;
}

.avatar-camera-btn:hover {
    background: #14c843;
    transform: scale(1.1);
}

.btn-upload-photo {
    background: #16df49;
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-upload-photo:hover {
    background: #14c843;
}

.btn-delete-photo {
    background: #9e9e9e;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-delete-photo:hover {
    background: #757575;
}

/* ============================================
   FORM STİLLERİ
   ============================================ */

.profile-edit-section {
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.profile-edit-form {
    padding: 0 70px 40px 70px;
}

.form-row {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group-full {
    flex: 1 1 100%;
}

.form-label {
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.form-input {
    background: #f2f2f2;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.form-input::placeholder {
    color: #1a1a1a;
    opacity: 0.6;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #16df49;
}

/* Hata durumu */
.form-input.input-error {
    box-shadow: 0 0 0 2px #ff4444;
    background: #fff5f5;
}

/* Hata mesajı */
.error-message {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #ff4444;
    min-height: 16px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.2s ease;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Select Input */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 50px;
}

.select-wrapper {
    position: relative;
}

.select-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 12px;
    pointer-events: none;
}

/* Tarih Input */
.date-input-wrapper {
    position: relative;
}

.date-input-wrapper .form-input {
    padding-right: 50px;
    cursor: pointer;
}

.date-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
    cursor: pointer;
}

/* ============================================
   INTL TEL INPUT ÖZEL STİLLER
   ============================================ */

.iti {
    width: 100%;
}

.iti__flag-container {
    padding-left: 15px;
}

.iti__selected-flag {
    background: transparent !important;
    padding-right: 10px;
}

.iti__country-list {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
    max-height: 250px;
}

.iti__country {
    padding: 10px 15px;
}

.iti__country:hover {
    background: #f0fff4;
}

.iti__country.iti__highlight {
    background: #16df49;
    color: #000;
}

.iti input {
    padding-left: 90px !important;
}

/* ============================================
   FLATPICKR ÖZEL STİLLER
   ============================================ */

.flatpickr-calendar {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
}

.flatpickr-months {
    padding: 10px;
}

.flatpickr-current-month {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.flatpickr-day {
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
}

.flatpickr-day.selected {
    background: #16df49;
    border-color: #16df49;
    color: #000;
}

.flatpickr-day.selected:hover {
    background: #14c843;
    border-color: #14c843;
}

.flatpickr-day:hover {
    background: #e0ffe5;
    border-color: #e0ffe5;
}

.flatpickr-day.today {
    border-color: #16df49;
}

.flatpickr-monthDropdown-months,
.numInputWrapper input {
    font-family: 'Outfit', sans-serif;
}

/* ============================================
   GÜNCELLE BUTONU
   ============================================ */

.btn-update {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 40px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 20px;
}

.btn-update:hover {
    background: #333;
    transform: translateY(-1px);
}

.btn-update:active {
    transform: translateY(0);
}

/* ============================================
   FATURA BİLGİLERİ ACCORDION
   ============================================ */

.invoice-accordion {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: #fff;
    cursor: pointer;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.accordion-header:hover {
    background: #fafafa;
}

.accordion-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-icon {
    width: 40px;
    height: 40px;
    background: #ff9800;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-icon i {
    color: #fff;
    font-size: 18px;
}

.accordion-title-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.accordion-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.accordion-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.accordion-arrow {
    font-size: 14px;
    color: #666;
    transition: transform 0.3s ease;
}

.accordion-arrow.rotated {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fffbf0;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.accordion-content.open {
    max-height: 500px;
}

.invoice-form-wrapper {
    padding: 30px;
}

.invoice-form-wrapper .form-row {
    margin-bottom: 15px;
}

.invoice-form-wrapper .form-row:last-child {
    margin-bottom: 0;
}

/* Fatura Input Wrapper */
.invoice-input-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.invoice-input-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.invoice-input-icon i {
    color: #ccc;
    font-size: 16px;
}

.invoice-input {
    border-radius: 0;
    background: #fff;
    border: none;
    flex: 1;
}

.invoice-input:focus {
    box-shadow: none;
}

.invoice-input-wrapper:focus-within {
    border-color: #16df49;
}

.invoice-input-wrapper:focus-within .invoice-input-icon i {
    color: #16df49;
}

.invoice-textarea-wrapper {
    align-items: flex-start;
}

.invoice-textarea-wrapper .invoice-input-icon {
    height: 80px;
    padding-top: 15px;
    align-items: flex-start;
}

.invoice-textarea {
    min-height: 80px;
    resize: vertical;
    padding-top: 15px;
}

/* ============================================
   BİLDİRİM SİSTEMİ
   ============================================ */

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    background: #16df49;
    color: #000;
}

.notification-error {
    background: #ff4444;
    color: #fff;
}

.notification i {
    font-size: 18px;
}

/* ============================================
   RESPONSIVE - TABLET (992px)
   ============================================ */
@media (max-width: 992px) {
    .avatar-edit-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 25px 30px;
    }
    
    .profile-edit-form {
        padding: 0 30px 30px 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .invoice-accordion {
        margin-top: 20px;
    }
}

/* ============================================
   RESPONSIVE - MOBİL (768px)
   ============================================ */
@media (max-width: 768px) {
    .avatar-edit-row {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .btn-upload-photo,
    .btn-delete-photo {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .profile-edit-form {
        padding: 0 20px 25px 20px;
    }
    
    .form-label {
        font-size: 16px;
    }
    
    .form-input {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .btn-update {
        width: 100%;
        padding: 14px 24px;
    }
    
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-icon {
        width: 35px;
        height: 35px;
    }
    
    .accordion-icon i {
        font-size: 14px;
    }
    
    .accordion-title {
        font-size: 14px;
    }
    
    .accordion-subtitle {
        font-size: 12px;
    }
    
    .invoice-form-wrapper {
        padding: 20px;
    }
    
    .notification {
        left: 20px;
        right: 20px;
        top: auto;
        bottom: 20px;
        transform: translateY(100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE - KÜÇÜK MOBİL (480px)
   ============================================ */
@media (max-width: 480px) {
    .avatar-edit-container {
        width: 80px;
        height: 80px;
    }
    
    .avatar-edit-img {
        width: 80px;
        height: 80px;
    }
    
    .avatar-camera-btn {
        width: 28px;
        height: 28px;
    }
    
    .avatar-camera-btn i {
        font-size: 10px;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .form-input {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* ============================================
   TAKİP ETTİKLERİM SAYFASI STİLLERİ
   style.css dosyasının sonuna ekleyin
   ============================================ */

/* ============================================
   SAYFA BAŞLIĞI
   ============================================ */

.following-header {
    background: linear-gradient(135deg, #16df49 0%, #0fb33d 100%);
    border-radius: 10px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(22, 223, 73, 0.2);
}

.following-header-content {
    flex: 1;
}

.following-title {
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #000;
    margin: 0 0 8px 0;
}

.following-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    margin: 0;
    opacity: 0.8;
}

.following-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
}

.stat-number {
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    opacity: 0.7;
}

/* ============================================
   SEKMELER
   ============================================ */

.following-section {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.following-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 15px;
}

.following-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #f8f8f8;
    border: none;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.following-tab i {
    font-size: 16px;
}

.following-tab .tab-count {
    background: #e0e0e0;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.following-tab:hover {
    background: #f0fff4;
    color: #16df49;
}

.following-tab.active {
    background: #16df49;
    color: #000;
}

.following-tab.active .tab-count {
    background: rgba(0, 0, 0, 0.15);
    color: #000;
}

/* ============================================
   TAB İÇERİKLERİ
   ============================================ */

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SANATÇI KARTLARI
   ============================================ */

.following-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.artist-card {
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.artist-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.artist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-card-image img {
    transform: scale(1.05);
}

.unfollow-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.unfollow-btn i {
    font-size: 18px;
    color: #ff4757;
    transition: transform 0.2s ease;
}

.unfollow-btn:hover {
    transform: scale(1.1);
}

.unfollow-btn:hover i {
    transform: scale(1.2);
}

.unfollow-btn.unfollowed {
    background: #f2f2f2;
}

.unfollow-btn.unfollowed i {
    color: #999;
}

.artist-card-info {
    padding: 20px;
}

.artist-name {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
}

.artist-genre {
    display: inline-block;
    background: #16df49;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
}

.artist-stats {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.artist-stats i {
    color: #16df49;
    margin-right: 6px;
}

.artist-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
}

.artist-link:hover {
    color: #16df49;
    gap: 12px;
}

/* ============================================
   MEKAN KARTLARI
   ============================================ */

.venues-grid {
    grid-template-columns: repeat(2, 1fr);
}

.venue-card {
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.venue-card-image {
    position: relative;
    width: 200px;
    min-height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.venue-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue-card:hover .venue-card-image img {
    transform: scale(1.05);
}

.venue-card-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.venue-name {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.venue-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.venue-location i {
    color: #16df49;
}

.venue-stats {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.venue-stats i {
    color: #16df49;
    margin-right: 6px;
}

.venue-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
}

.venue-link:hover {
    color: #16df49;
    gap: 12px;
}

/* ============================================
   ETKİNLİK KARTLARI
   ============================================ */

.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-follow-card {
    display: flex;
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-follow-card:hover {
    background: #16df49;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(22, 223, 73, 0.2);
}

.event-follow-image {
    position: relative;
    width: 180px;
    min-height: 160px;
    flex-shrink: 0;
    overflow: hidden;
}

.event-follow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-follow-card:hover .event-follow-image img {
    transform: scale(1.05);
}

.event-soon-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff9800;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-follow-info {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.event-follow-date {
    flex-shrink: 0;
}

.date-box {
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.date-day {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #16df49;
    line-height: 1;
}

.date-month {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin-top: 4px;
}

.date-box-soon {
    background: #fff8e1;
}

.date-box-soon .date-day {
    color: #ff9800;
}

.event-follow-details {
    flex: 1;
    min-width: 0;
}

.event-follow-title {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
}

.event-follow-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.event-follow-meta i {
    margin-right: 6px;
    color: #16df49;
}

.event-follow-card:hover .event-follow-meta {
    color: #000;
}

.event-follow-card:hover .event-follow-meta i {
    color: #000;
}

.event-follow-price {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
}

.price-label {
    color: #666;
}

.price-value {
    font-weight: 700;
    color: #000;
    margin-left: 5px;
}

.event-follow-card:hover .price-label {
    color: #000;
}

.event-follow-actions {
    flex-shrink: 0;
}

.btn-buy-ticket {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-buy-ticket:hover {
    background: #333;
    transform: scale(1.02);
}

.btn-notify {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff9800;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-notify:hover {
    background: #f57c00;
}

.btn-notify.notified {
    background: #4caf50;
}

/* ============================================
   RESPONSIVE - TABLET (1200px)
   ============================================ */
@media (max-width: 1200px) {
    .following-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIVE - TABLET (992px)
   ============================================ */
@media (max-width: 992px) {
    .following-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px 30px;
    }
    
    .following-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .following-tabs {
        flex-wrap: wrap;
    }
    
    .following-tab {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }
    
    .event-follow-card {
        flex-wrap: wrap;
    }
    
    .event-follow-image {
        width: 100%;
        height: 180px;
    }
    
    .event-follow-info {
        flex-wrap: wrap;
        width: 100%;
    }
    
    .event-follow-actions {
        width: 100%;
        margin-top: 10px;
    }
    
    .btn-buy-ticket,
    .btn-notify {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE - MOBİL (768px)
   ============================================ */
@media (max-width: 768px) {
    .following-section {
        padding: 20px;
    }
    
    .following-title {
        font-size: 22px;
    }
    
    .following-tabs {
        gap: 8px;
    }
    
    .following-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .following-tab span:not(.tab-count) {
        display: none;
    }
    
    .following-tab i {
        margin: 0;
    }
    
    .following-grid {
        grid-template-columns: 1fr;
    }
    
    .venue-card {
        flex-direction: column;
    }
    
    .venue-card-image {
        width: 100%;
        height: 180px;
    }
    
    .stat-item {
        padding: 12px 18px;
    }
    
    .stat-number {
        font-size: 22px;
    }
}

/* ============================================
   RESPONSIVE - KÜÇÜK MOBİL (480px)
   ============================================ */
@media (max-width: 480px) {
    .following-header {
        padding: 20px;
    }
    
    .following-stats {
        gap: 10px;
    }
    
    .stat-item {
        padding: 10px 15px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .artist-card-image {
        height: 150px;
    }
    
    .artist-name,
    .venue-name,
    .event-follow-title {
        font-size: 16px;
    }
    
    .event-follow-image {
        height: 150px;
    }
    
    .date-box {
        padding: 12px 16px;
    }
    
    .date-day {
        font-size: 24px;
    }
}

/* ============================================
   TAKİP ETTİKLERİM SAYFASI STİLLERİ
   style.css dosyasının sonuna ekleyin
   ============================================ */

/* ============================================
   SAYFA BAŞLIĞI
   ============================================ */

.following-header {
    background: linear-gradient(135deg, #16df49 0%, #0fb33d 100%);
    border-radius: 10px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(22, 223, 73, 0.2);
}

.following-header-content {
    flex: 1;
}

.following-title {
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #000;
    margin: 0 0 8px 0;
}

.following-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    margin: 0;
    opacity: 0.8;
}

.following-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
}

.stat-number {
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    opacity: 0.7;
}

/* ============================================
   SEKMELER
   ============================================ */

.following-section {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.following-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 15px;
}

.following-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #f8f8f8;
    border: none;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.following-tab i {
    font-size: 16px;
}

.following-tab .tab-count {
    background: #e0e0e0;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.following-tab:hover {
    background: #f0fff4;
    color: #16df49;
}

.following-tab.active {
    background: #16df49;
    color: #000;
}

.following-tab.active .tab-count {
    background: rgba(0, 0, 0, 0.15);
    color: #000;
}

/* ============================================
   TAB İÇERİKLERİ
   ============================================ */

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SANATÇI KARTLARI
   ============================================ */

.following-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.artist-card {
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.artist-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.artist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-card-image img {
    transform: scale(1.05);
}

.unfollow-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.unfollow-btn i {
    font-size: 18px;
    color: #ff4757;
    transition: transform 0.2s ease;
}

.unfollow-btn:hover {
    transform: scale(1.1);
}

.unfollow-btn:hover i {
    transform: scale(1.2);
}

.unfollow-btn.unfollowed {
    background: #f2f2f2;
}

.unfollow-btn.unfollowed i {
    color: #999;
}

.artist-card-info {
    padding: 20px;
}

.artist-name {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
}

.artist-genre {
    display: inline-block;
    background: #16df49;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
}

.artist-stats {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.artist-stats i {
    color: #16df49;
    margin-right: 6px;
}

.artist-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
}

.artist-link:hover {
    color: #16df49;
    gap: 12px;
}

/* ============================================
   MEKAN KARTLARI
   ============================================ */

.venues-grid {
    grid-template-columns: repeat(2, 1fr);
}

.venue-card {
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.venue-card-image {
    position: relative;
    width: 200px;
    min-height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.venue-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue-card:hover .venue-card-image img {
    transform: scale(1.05);
}

.venue-card-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.venue-name {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.venue-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.venue-location i {
    color: #16df49;
}

.venue-stats {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.venue-stats i {
    color: #16df49;
    margin-right: 6px;
}

.venue-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
}

.venue-link:hover {
    color: #16df49;
    gap: 12px;
}

/* ============================================
   ETKİNLİK KARTLARI
   ============================================ */

.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-follow-card {
    display: flex;
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-follow-card:hover {
    background: #16df49;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(22, 223, 73, 0.2);
}

.event-follow-image {
    position: relative;
    width: 180px;
    min-height: 160px;
    flex-shrink: 0;
    overflow: hidden;
}

.event-follow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-follow-card:hover .event-follow-image img {
    transform: scale(1.05);
}

.event-soon-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff9800;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-follow-info {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.event-follow-date {
    flex-shrink: 0;
}

.date-box {
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.date-day {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #16df49;
    line-height: 1;
}

.date-month {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin-top: 4px;
}

.date-box-soon {
    background: #fff8e1;
}

.date-box-soon .date-day {
    color: #ff9800;
}

.event-follow-details {
    flex: 1;
    min-width: 0;
}

.event-follow-title {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
}

.event-follow-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.event-follow-meta i {
    margin-right: 6px;
    color: #16df49;
}

.event-follow-card:hover .event-follow-meta {
    color: #000;
}

.event-follow-card:hover .event-follow-meta i {
    color: #000;
}

.event-follow-price {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
}

.price-label {
    color: #666;
}

.price-value {
    font-weight: 700;
    color: #000;
    margin-left: 5px;
}

.event-follow-card:hover .price-label {
    color: #000;
}

.event-follow-actions {
    flex-shrink: 0;
}

.btn-buy-ticket {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-buy-ticket:hover {
    background: #333;
    transform: scale(1.02);
}

.btn-notify {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff9800;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-notify:hover {
    background: #f57c00;
}

.btn-notify.notified {
    background: #4caf50;
}

/* ============================================
   KEŞFET BANNER
   ============================================ */

.discover-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 10px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
}

.discover-content {
    flex: 1;
}

.discover-title {
    font-family: 'Kanit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.discover-text {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.discover-btn {
    background: #16df49;
    color: #000;
    padding: 14px 30px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.discover-btn:hover {
    background: #14c843;
    transform: scale(1.02);
}

/* ============================================
   RESPONSIVE - TABLET (1200px)
   ============================================ */
@media (max-width: 1200px) {
    .following-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .venues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE - TABLET (992px)
   ============================================ */
@media (max-width: 992px) {
    .following-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }
    
    .following-stats {
        width: 100%;
        gap: 8px;
    }
    
    .stat-item {
        flex: 1;
        padding: 10px 8px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .following-section {
        padding: 20px;
    }
    
    .following-tabs {
        gap: 8px;
    }
    
    .following-tab {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 13px;
    }
    
    /* Mekanlar 2'li grid */
    .venues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .venue-card {
        flex-direction: column;
    }
    
    .venue-card-image {
        width: 100%;
        height: 140px;
    }
    
    .venue-card-info {
        padding: 15px;
    }
    
    /* Etkinlikler 2'li grid */
    .events-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .event-follow-card {
        flex-direction: column;
    }
    
    .event-follow-image {
        width: 100%;
        height: 140px;
    }
    
    .event-follow-info {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        gap: 12px;
    }
    
    .event-follow-date {
        position: absolute;
        top: 12px;
        left: 12px;
    }
    
    .event-follow-card {
        position: relative;
    }
    
    .date-box {
        padding: 10px 14px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }
    
    .event-follow-actions {
        width: 100%;
    }
    
    .btn-buy-ticket,
    .btn-notify {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .discover-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .discover-btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE - MOBİL (768px)
   ============================================ */
@media (max-width: 768px) {
    .following-header {
        padding: 15px;
        gap: 12px;
    }
    
    .following-title {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .following-desc {
        font-size: 13px;
    }
    
    .following-stats {
        gap: 6px;
    }
    
    .stat-item {
        padding: 8px 6px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .following-section {
        padding: 15px;
    }
    
    .following-tabs {
        gap: 6px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    /* Tab'larda yazı görünür kalıyor */
    .following-tab {
        padding: 10px 8px;
        font-size: 11px;
        gap: 5px;
        border-radius: 8px;
        flex-direction: column;
        text-align: center;
    }
    
    .following-tab i {
        font-size: 16px;
    }
    
    .following-tab span:first-of-type {
        font-size: 10px;
    }
    
    .following-tab .tab-count {
        padding: 2px 6px;
        font-size: 10px;
    }
    
    /* Sanatçılar 2'li grid */
    .following-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .artist-card-image {
        height: 120px;
    }
    
    .artist-card-info {
        padding: 12px;
    }
    
    .artist-name {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .artist-genre {
        padding: 3px 8px;
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    .artist-stats {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .artist-link {
        font-size: 12px;
    }
    
    /* Mekanlar 2'li grid */
    .venues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .venue-card {
        flex-direction: column;
    }
    
    .venue-card-image {
        width: 100%;
        height: 120px;
    }
    
    .venue-card-info {
        padding: 12px;
    }
    
    .venue-name {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .venue-location,
    .venue-stats {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .venue-link {
        font-size: 11px;
    }
    
    /* Etkinlikler 2'li grid */
    .events-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .event-follow-image {
        height: 120px;
    }
    
    .event-follow-info {
        padding: 12px;
        gap: 10px;
    }
    
    .date-box {
        padding: 8px 12px;
    }
    
    .date-day {
        font-size: 18px;
    }
    
    .date-month {
        font-size: 9px;
    }
    
    .event-follow-title {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .event-follow-meta {
        font-size: 11px;
        gap: 6px;
        flex-direction: column;
    }
    
    .event-follow-price {
        font-size: 12px;
    }
    
    .btn-buy-ticket,
    .btn-notify {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .discover-banner {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .discover-title {
        font-size: 18px;
    }
    
    .discover-text {
        font-size: 13px;
    }
    
    .discover-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ============================================
   RESPONSIVE - KÜÇÜK MOBİL (480px)
   ============================================ */
@media (max-width: 480px) {
    .following-header {
        padding: 12px;
        gap: 10px;
    }
    
    .following-title {
        font-size: 18px;
    }
    
    .following-desc {
        font-size: 12px;
    }
    
    .following-stats {
        gap: 5px;
    }
    
    .stat-item {
        padding: 6px 4px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .following-section {
        padding: 12px;
    }
    
    .following-tabs {
        gap: 4px;
    }
    
    /* Tab'larda yazı görünür - dikey düzen */
    .following-tab {
        padding: 8px 6px;
        font-size: 10px;
        gap: 3px;
        flex-direction: column;
    }
    
    .following-tab i {
        font-size: 14px;
    }
    
    .following-tab span:first-of-type {
        font-size: 9px;
    }
    
    .following-tab .tab-count {
        padding: 1px 5px;
        font-size: 9px;
    }
    
    /* Sanatçılar 2'li grid korunuyor */
    .following-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .artist-card-image {
        height: 100px;
    }
    
    .artist-card-info {
        padding: 10px;
    }
    
    .artist-name {
        font-size: 12px;
    }
    
    .artist-genre {
        padding: 2px 6px;
        font-size: 9px;
    }
    
    .artist-stats {
        font-size: 9px;
    }
    
    .artist-link {
        font-size: 10px;
    }
    
    .unfollow-btn {
        width: 28px;
        height: 28px;
        top: 6px;
        right: 6px;
    }
    
    .unfollow-btn i {
        font-size: 12px;
    }
    
    /* Mekanlar 2'li grid korunuyor */
    .venues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .venue-card-image {
        height: 100px;
    }
    
    .venue-card-info {
        padding: 10px;
    }
    
    .venue-name {
        font-size: 11px;
    }
    
    .venue-location,
    .venue-stats {
        font-size: 9px;
        margin-bottom: 6px;
    }
    
    .venue-link {
        font-size: 10px;
    }
    
    /* Etkinlikler 2'li grid korunuyor */
    .events-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .event-follow-image {
        height: 100px;
    }
    
    .event-follow-info {
        padding: 10px;
        gap: 8px;
    }
    
    .date-box {
        padding: 6px 10px;
    }
    
    .date-day {
        font-size: 16px;
    }
    
    .date-month {
        font-size: 8px;
    }
    
    .event-follow-title {
        font-size: 11px;
    }
    
    .event-follow-meta {
        font-size: 9px;
    }
    
    .event-follow-price {
        font-size: 10px;
    }
    
    .btn-buy-ticket,
    .btn-notify {
        padding: 8px 12px;
        font-size: 10px;
    }
    
    .discover-banner {
        padding: 15px 12px;
    }
    
    .discover-title {
        font-size: 16px;
    }
    
    .discover-text {
        font-size: 12px;
    }
}

/* ============================================
   BİLET DETAY SAYFASI STİLLERİ
   style.css dosyasının sonuna ekleyin
   ============================================ */

/* Ana Sayfa Layout */
.bilet-detay-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    min-height: calc(100vh - 200px);
}

/* Geri Dön Butonu */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.back-button:hover {
    background: #16df49;
    color: #000;
    transform: translateX(-5px);
}

.back-button i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.back-button:hover i {
    transform: translateX(-3px);
}

/* Biletler Container */
.tickets-list-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Ticket Main Wrapper */
.ticket-main-wrapper {
    background: #16df49;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    gap: 30px;
}

/* Sol Taraf - Sipariş Bilgileri */
.ticket-left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ticket-info-card,
.ticket-payment-card,
.ticket-notes-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px 30px;
}

.ticket-info-card .info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ticket-info-card .info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ticket-info-card .info-label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #9e9e9e;
}

.ticket-info-card .info-value {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.status-completed {
    color: #16df49 !important;
}

.payment-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #9e9e9e;
}

.payment-value {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.download-ticket-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: auto;
}

.download-ticket-btn:hover {
    background: #333;
    transform: scale(1.02);
}

.download-ticket-btn i {
    font-size: 18px;
}

.notes-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #9e9e9e;
    margin-bottom: 15px;
}

.notes-content {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
}

.notes-content p {
    margin-bottom: 15px;
}

.notes-content p:last-child {
    margin-bottom: 0;
}

/* Sağ Taraf - Bilet Koçanı */
.ticket-right-section {
    width: 420px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ticket-details-toggle {
    display: none;
}

.mobile-download-btn {
    display: none;
}

/* ============================================
   BİLET KOÇANI - GÖRSEL 2'YE UYGUN TASARIM
   ============================================ */
.ticket-stub {
    background: #fff;
    border-radius: 16px;
    position: relative;
    overflow: visible;
}

/* Yan Oyuklar - İnce iç çıkıntılar */
.stub-notch {
    position: absolute;
    width: 10px;
    height: 20px;
    background: #16df49;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.stub-notch-left {
    left: 0;
    border-radius: 0 10px 10px 0;
}

.stub-notch-right {
    right: 0;
    border-radius: 10px 0 0 10px;
}

/* İçerik Alanı - Üst Kısım */
.stub-content {
    display: flex;
    gap: 18px;
    padding: 30px 25px 25px 25px;
}

.stub-image {
    width: 100px;
    height: 130px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.stub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stub-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stub-artist {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin: 0;
}

.stub-meta {
    display: flex;
    gap: 25px;
}

.stub-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stub-meta-label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #16df49;
}

.stub-meta-value {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.stub-venue {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stub-venue-label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #16df49;
}

.stub-venue-value {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
}

.stub-count {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stub-count-label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #16df49;
}

.stub-count-value {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

/* Logo - Normalde gizli, sadece indirmede görünür */
.stub-logo {
    display: none;
    background: #f8f8f8;
    padding: 18px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.stub-logo img {
    height: 30px;
    width: auto;
}

/* PNR Kutusu - Siyah arka plan */
.stub-pnr {
    padding: 0 20px;
    margin-bottom: 15px;
}

.stub-pnr-text {
    display: block;
    background: #000;
    padding: 16px 25px;
    text-align: center;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

.stub-pnr .pnr-code {
    font-weight: 700;
}

/* Kesik Çizgi Bölümü */
.stub-divider {
    display: flex;
    align-items: center;
    position: relative;
    padding: 15px 0;
}

.stub-divider-line {
    flex: 1;
    height: 0;
    border-top: 2px dashed #ddd;
    margin: 0 25px;
}

.stub-divider-notch {
    display: none;
}

/* QR Code */
.stub-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 25px 35px 25px;
}

.qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code img {
    width: 200px !important;
    height: 200px !important;
}

/* Download Overlay */
.download-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.download-overlay.active {
    opacity: 1;
    visibility: visible;
}

.download-modal {
    background: #fff;
    padding: 40px 60px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.download-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f0f0f0;
    border-top-color: #16df49;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.download-modal p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* ============================================
   RESPONSIVE - TABLET (992px)
   ============================================ */
@media (max-width: 992px) {
    .ticket-main-wrapper {
        flex-direction: column;
        padding: 25px;
    }
    
    .ticket-right-section {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .ticket-info-card .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-grid {
        flex-wrap: wrap;
    }
    
    .download-ticket-btn {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 15px;
    }
}

/* ============================================
   RESPONSIVE - MOBİL (768px)
   ============================================ */
@media (max-width: 768px) {
    .bilet-detay-page {
        padding: 20px 15px 60px;
    }
    
    .back-button {
        padding: 10px 18px;
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .tickets-list-container {
        gap: 20px;
    }
    
    .ticket-main-wrapper {
        padding: 15px;
        gap: 15px;
        flex-direction: column-reverse;
    }
    
    /* Mobilde Gizli - Toggle ile açılır */
    .ticket-left-section {
        display: none;
        gap: 15px;
    }
    
    .ticket-left-section.open {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .ticket-info-card,
    .ticket-payment-card,
    .ticket-notes-card {
        padding: 18px;
    }
    
    .ticket-info-card .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .ticket-info-card .info-value {
        font-size: 14px;
    }
    
    .ticket-info-card .info-label {
        font-size: 12px;
    }
    
    .payment-grid {
        flex-direction: column;
        gap: 12px;
    }
    
    .payment-label {
        font-size: 12px;
    }
    
    .payment-value {
        font-size: 15px;
    }
    
    .download-ticket-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .notes-title {
        font-size: 14px;
    }
    
    .notes-content {
        font-size: 13px;
    }
    
    .ticket-right-section {
        width: 100%;
        max-width: 100%;
    }
    
    /* Toggle Butonu - Görünür */
    .ticket-details-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: #fff;
        color: #000;
        border: none;
        border-radius: 10px;
        padding: 14px 20px;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        width: 100%;
        order: 2;
    }
    
    .ticket-details-toggle i:first-child {
        color: #16df49;
        font-size: 16px;
    }
    
    .ticket-details-toggle .toggle-arrow {
        margin-left: auto;
        font-size: 12px;
        color: #999;
        transition: transform 0.3s ease;
    }
    
    .ticket-details-toggle.active .toggle-arrow {
        transform: rotate(180deg);
    }
    
    .ticket-details-toggle:hover {
        background: #f5f5f5;
    }
    
    /* Mobil İndir Butonu - Görünür */
    .mobile-download-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: #000;
        color: #fff;
        border: none;
        border-radius: 10px;
        padding: 14px 20px;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
        width: 100%;
        order: 3;
    }
    
    .mobile-download-btn:hover {
        background: #333;
    }
    
    /* Koçan sıralaması */
    .ticket-stub {
        order: 1;
    }
    
    /* Koçan Mobil Ayarları */
    .ticket-stub {
        border-radius: 12px;
    }
    
    .stub-notch {
        width: 8px;
        height: 16px;
    }
    
    .stub-notch-left {
        border-radius: 0 8px 8px 0;
    }
    
    .stub-notch-right {
        border-radius: 8px 0 0 8px;
    }
    
    .stub-content {
        padding: 20px 20px 15px 20px;
        gap: 12px;
    }
    
    .stub-image {
        width: 80px;
        height: 100px;
    }
    
    .stub-artist {
        font-size: 17px;
    }
    
    .stub-meta {
        gap: 18px;
    }
    
    .stub-meta-value {
        font-size: 13px;
    }
    
    .stub-venue-value {
        font-size: 12px;
    }
    
    .stub-pnr {
        padding: 0 20px;
        margin-bottom: 12px;
    }
    
    .stub-pnr-text {
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .stub-divider {
        padding: 12px 0;
    }
    
    .stub-divider-line {
        margin: 0 20px;
    }
    
    .stub-qr {
        padding: 8px 20px 25px 20px;
    }
    
    .qr-code img {
        width: 160px !important;
        height: 160px !important;
    }
}

/* ============================================
   RESPONSIVE - KÜÇÜK MOBİL (480px)
   ============================================ */
@media (max-width: 480px) {
    .ticket-info-card .info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stub-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .stub-image {
        width: 100px;
        height: 130px;
    }
    
    .stub-details {
        align-items: center;
    }
    
    .stub-meta {
        justify-content: center;
    }
    
    .stub-venue {
        align-items: center;
    }
    
    .stub-count {
        align-items: center;
    }
    
    .stub-pnr-text {
        font-size: 11px;
    }
    
    .qr-code img {
        width: 150px !important;
        height: 150px !important;
    }
    
    .download-modal {
        padding: 30px 40px;
        margin: 0 20px;
    }
}

/* ============================================
   ÖDEME BAŞARILI SAYFASI STİLLERİ
   style.css dosyasının sonuna ekleyin
   ============================================ */

/* Ana Container */
.payment-success-page {
    background-color: #16df49;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arka Plan Çizgileri */
.success-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.success-bg-lines img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 60%;
    height: auto;
    opacity: 0.15;
    filter: brightness(0);
}

/* İçerik Container */
.payment-success-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Sol Taraf - Yazılar */
.success-content {
    flex: 1;
    max-width: 550px;
}

/* Tebrikler Başlığı */
.success-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.success-title-bg {
    position: absolute;
    top: 50%;
    left: -10px;
    right: -10px;
    height: 70%;
    background: #000;
    transform: translateY(-50%) rotate(3deg);
    z-index: 1;
}

.success-title {
    font-family: 'Kanit', sans-serif;
    font-size: 90px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1;
    transform: rotate(3deg);
    text-shadow: 2px 2px 0 #000;
}

/* Alt Başlık */
.success-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin: 25px 0 20px 0;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

/* Ayırıcı Çizgi */
.success-divider {
    width: 320px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    margin: 25px 0;
}

/* Açıklama */
.success-description {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #000;
    margin: 0 0 30px 0;
}

/* Buton */
.success-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.success-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Sağ Taraf - Görsel */
.success-illustration {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.success-illustration img.main-illustration {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Sağ alt köşe görseli */
.success-illustration img.bottom-illustration {
    position: absolute;
    bottom: -80px;
    right: -100px;
    width: 350px;
    height: auto;
    z-index: 1;
    opacity: 0.9;
}

/* ============================================
   RESPONSIVE - TABLET (992px)
   ============================================ */
@media (max-width: 992px) {
    .payment-success-page {
        min-height: auto;
    }
    
    .payment-success-container {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
        gap: 40px;
    }
    
    .success-content {
        max-width: 100%;
    }
    
    .success-title-wrapper {
        display: inline-block;
    }
    
    .success-title {
        font-size: 70px;
    }
    
    .success-subtitle,
    .success-description {
        font-size: 24px;
    }
    
    .success-divider {
        margin: 20px auto;
    }
    
    .success-illustration {
        max-width: 450px;
    }
    
    .success-illustration img.bottom-illustration {
        width: 250px;
        bottom: -60px;
        right: -60px;
    }
    
    .success-bg-lines img {
        width: 80%;
        opacity: 0.1;
    }
}

/* ============================================
   RESPONSIVE - MOBİL (768px)
   ============================================ */
@media (max-width: 768px) {
    .payment-success-container {
        padding: 50px 20px;
        gap: 30px;
    }
    
    .success-title {
        font-size: 55px;
    }
    
    .success-title-bg {
        left: -8px;
        right: -8px;
    }
    
    .success-subtitle,
    .success-description {
        font-size: 20px;
    }
    
    .success-divider {
        width: 250px;
        margin: 18px auto;
    }
    
    .success-btn {
        font-size: 16px;
        padding: 14px 30px;
    }
    
    .success-illustration {
        max-width: 350px;
    }
    
    .success-illustration img.bottom-illustration {
        width: 180px;
        bottom: -40px;
        right: -30px;
    }
    
    .success-bg-lines img {
        width: 100%;
        left: -20%;
    }
}

/* ============================================
   RESPONSIVE - KÜÇÜK MOBİL (480px)
   ============================================ */
@media (max-width: 480px) {
    .payment-success-container {
        padding: 40px 15px;
    }
    
    .success-title {
        font-size: 45px;
    }
    
    .success-subtitle,
    .success-description {
        font-size: 18px;
    }
    
    .success-divider {
        width: 200px;
        margin: 15px auto;
    }
    
    .success-btn {
        font-size: 15px;
        padding: 12px 25px;
        width: 100%;
        text-align: center;
    }
    
    .success-illustration {
        max-width: 280px;
    }
    
    .success-illustration img.bottom-illustration {
        width: 120px;
        bottom: -30px;
        right: -20px;
    }
}

/* ============================================
   KVKK / YASAL SAYFALAR STİLLERİ
   style.css dosyasının sonuna ekleyin
   ============================================ */

/* Hero Banner */
.legal-hero {
    background: linear-gradient(135deg, #16df49 0%, #12c240 100%);
    padding: 80px 40px;
    text-align: center;
}

.legal-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

/* Ana Sayfa */
.legal-page {
    background: #f5f5f5;
    padding: 60px 20px 80px;
    min-height: 60vh;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 50px 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Bölümler */
.legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Başlıklar */
.legal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #16df49;
    margin: 0 0 20px 0;
}

/* İçerik */
.legal-content {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
}

.legal-content p {
    margin: 0 0 15px 0;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content strong {
    font-weight: 700;
    color: #000;
}

/* Liste */
.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content ul li {
    margin-bottom: 10px;
    position: relative;
}

.legal-content ul li::marker {
    color: #16df49;
}

/* ============================================
   RESPONSIVE - TABLET (992px)
   ============================================ */
@media (max-width: 992px) {
    .legal-hero {
        padding: 60px 30px;
    }
    
    .legal-hero h1 {
        font-size: 34px;
    }
    
    .legal-container {
        padding: 40px 40px;
    }
    
    .legal-title {
        font-size: 22px;
    }
}

/* ============================================
   RESPONSIVE - MOBİL (768px)
   ============================================ */
@media (max-width: 768px) {
    .legal-hero {
        padding: 50px 20px;
    }
    
    .legal-hero h1 {
        font-size: 26px;
    }
    
    .legal-page {
        padding: 40px 15px 60px;
    }
    
    .legal-container {
        padding: 30px 25px;
        border-radius: 12px;
    }
    
    .legal-section {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .legal-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .legal-content {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .legal-content ul {
        padding-left: 20px;
    }
}

/* ============================================
   RESPONSIVE - KÜÇÜK MOBİL (480px)
   ============================================ */
@media (max-width: 480px) {
    .legal-hero {
        padding: 40px 15px;
    }
    
    .legal-hero h1 {
        font-size: 22px;
    }
    
    .legal-container {
        padding: 25px 20px;
    }
    
    .legal-title {
        font-size: 18px;
    }
    
    .legal-content {
        font-size: 14px;
    }
}

/* ============================================
   HAKKIMIZDA SAYFASI STİLLERİ
   style.css dosyasının sonuna ekleyin
   ============================================ */

/* Ana Sayfa */
.about-page {
    background: #f2f2f2;
    padding: 30px 0 80px 0;
}

.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Hero Banner - Container İçinde */
.about-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 16px;
    margin-bottom: 50px;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
}

.about-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Giriş Bölümü */
.about-intro {
    margin-bottom: 40px;
}

.about-intro-title {
    font-family: 'Kanit', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.about-intro-title .green {
    color: #16df49;
}

.about-intro-text {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

.about-intro-text:last-child {
    margin-bottom: 0;
}

/* Misyon & Vizyon Kartları */
.about-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.about-card {
    border-radius: 10px;
    padding: 50px 60px;
}

.about-card-white {
    background: #fff;
}

.about-card-title {
    font-family: 'Kanit', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
}

.about-card-text {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

.about-card-text:last-child {
    margin-bottom: 0;
}

/* Checklist */
.about-checklist {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 1.5;
}

.about-checklist li:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: #16df49;
    border-radius: 5px;
    position: relative;
    margin-top: 2px;
}

.check-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
}

/* Neden Birbiletal? Bölümü */
.about-why {
    padding-top: 20px;
}

.about-why-title {
    font-family: 'Kanit', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin: 0 0 30px 0;
}

.about-why-title .green {
    color: #16df49;
}

/* Özellik Kartları Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature-card {
    background: #16df49;
    border-radius: 10px;
    padding: 35px 45px;
}

.about-feature-title {
    font-family: 'Kanit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.about-feature-text {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RESPONSIVE - TABLET (992px)
   ============================================ */
@media (max-width: 992px) {
    .about-container {
        padding: 0 40px;
    }
    
    .about-hero {
        height: 350px;
        margin-bottom: 40px;
    }
    
    .about-hero-content {
        padding: 0 50px;
    }
    
    .about-hero h1 {
        font-size: 40px;
    }
    
    .about-mission-vision {
        grid-template-columns: 1fr;
    }
    
    .about-card {
        padding: 40px 45px;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-feature-card {
        padding: 30px 40px;
    }
}

/* ============================================
   RESPONSIVE - MOBİL (768px)
   ============================================ */
@media (max-width: 768px) {
    .about-page {
        padding: 20px 0 60px 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-hero {
        height: 280px;
        border-radius: 12px;
        margin-bottom: 30px;
    }
    
    .about-hero-bg img {
        border-radius: 12px;
    }
    
    .about-hero-content {
        padding: 0 30px;
    }
    
    .about-hero h1 {
        font-size: 32px;
    }
    
    .about-intro {
        margin-bottom: 30px;
    }
    
    .about-intro-title {
        font-size: 24px;
    }
    
    .about-intro-text {
        font-size: 15px;
    }
    
    .about-mission-vision {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .about-card {
        padding: 30px 25px;
    }
    
    .about-card-title {
        font-size: 24px;
    }
    
    .about-card-text {
        font-size: 15px;
    }
    
    .about-checklist li {
        font-size: 15px;
        gap: 12px;
    }
    
    .check-icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }
    
    .check-icon::after {
        width: 8px;
        height: 8px;
    }
    
    .about-why-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-features-grid {
        gap: 15px;
    }
    
    .about-feature-card {
        padding: 25px 25px;
    }
    
    .about-feature-title {
        font-size: 20px;
    }
    
    .about-feature-text {
        font-size: 15px;
    }
}

/* ============================================
   RESPONSIVE - KÜÇÜK MOBİL (480px)
   ============================================ */
@media (max-width: 480px) {
    .about-page {
        padding: 15px 0 50px 0;
    }
    
    .about-container {
        padding: 0 15px;
    }
    
    .about-hero {
        height: 220px;
        border-radius: 10px;
        margin-bottom: 25px;
    }
    
    .about-hero-bg img {
        border-radius: 10px;
    }
    
    .about-hero-content {
        padding: 0 20px;
    }
    
    .about-hero h1 {
        font-size: 26px;
    }
    
    .about-intro-title {
        font-size: 22px;
    }
    
    .about-intro-text {
        font-size: 14px;
    }
    
    .about-card {
        padding: 25px 20px;
    }
    
    .about-card-title {
        font-size: 22px;
    }
    
    .about-card-text {
        font-size: 14px;
    }
    
    .about-checklist li {
        font-size: 14px;
    }
    
    .about-why-title {
        font-size: 22px;
    }
    
    .about-feature-card {
        padding: 22px 20px;
    }
    
    .about-feature-title {
        font-size: 18px;
    }
    
    .about-feature-text {
        font-size: 14px;
    }
}



.header-btn {
  text-decoration: none;
}

/* ===================== ETKİNLİKLER SAYFA STİLLERİ ===================== */

/* Carousel okları düzeltmesi - sabit kalmasın */
.carousel-row .carousel-arrow,
.carousel-row .carousel-arrow-fixed {
    position: absolute !important;
}

/* Kategori Tab Bar */
.category-tab-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 75px;
    z-index: 100;
}

.category-tabs {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.cat-tab {
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.cat-tab:hover {
    color: #16df49;
}

.cat-tab.active {
    color: #16df49;
    border-bottom-color: #16df49;
    background: rgba(22, 223, 73, 0.05);
    border-radius: 8px 8px 0 0;
}

/* Ana Container */
.events-page-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    gap: 30px;
}

/* Sidebar */
.events-sidebar {
    width: 260px;
    flex-shrink: 0;
    position: relative;
    top: auto;
    height: auto;
    max-height: none;
    overflow-y: visible;
}

.sidebar-content {
    padding: 0;
}

.filter-section {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #222;
    transition: background 0.2s;
    user-select: none;
}

.filter-header:hover {
    background: #fafafa;
}

.filter-header i {
    font-size: 12px;
    color: #888;
    transition: transform 0.3s;
    pointer-events: none;
}

.filter-content {
    padding: 0 20px 20px 20px;
}

.filter-content.collapsed {
    display: none;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    transition: color 0.2s;
}

.filter-option:hover {
    color: #16df49;
}

.filter-option input[type="radio"],
.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #16df49;
    cursor: pointer;
}

.filter-count {
    margin-left: auto;
    font-size: 12px;
    color: #999;
}

.filter-search {
    position: relative;
    margin-bottom: 12px;
}

.filter-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 13px;
    pointer-events: none;
}

.filter-search input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}

.filter-search input:focus {
    border-color: #16df49;
}

.filter-options-scroll {
    max-height: none;
    overflow-y: visible;
}

.filter-date-picker {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 8px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.filter-date-picker:hover {
    background: #16df49;
    color: #fff;
    border-color: #16df49;
}

.filter-date-picker.has-date {
    background: #16df49;
    color: #fff;
    border-color: #16df49;
    border-style: solid;
}

.filter-date-picker .selected-date {
    font-weight: 600;
}

.filter-date-picker .clear-date {
    margin-left: 8px;
    opacity: 0.8;
    cursor: pointer;
}

.filter-date-picker .clear-date:hover {
    opacity: 1;
}

/* Tarih seçici hidden input */
#custom-date-input {
    position: absolute;
    visibility: hidden;
    width: 0;
    height: 0;
}

/* Price Slider */
.price-range-slider {
    padding: 10px 0;
}

.price-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: linear-gradient(to right, #16df49 0%, #16df49 100%, #e5e5e5 100%);
    border-radius: 3px;
    outline: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #16df49;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(22, 223, 73, 0.4);
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #16df49;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(22, 223, 73, 0.4);
}

.price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 13px;
    color: #666;
}

.price-values span:last-child {
    color: #16df49;
    font-weight: 600;
}

/* Aktif Filtre Badge'leri */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.active-filters:empty {
    display: none;
}

.filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #16df49;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.filter-badge i {
    cursor: pointer;
    opacity: 0.8;
}

.filter-badge i:hover {
    opacity: 1;
}

/* Filtreleri Temizle - varsayılan gizli */
.clear-filters-btn {
    width: 100%;
    padding: 14px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 14px;
    color: #777;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    display: none;
}

.clear-filters-btn.visible {
    display: flex;
}

.clear-filters-btn:hover {
    background: #ff4444;
    color: #fff;
    border-color: #ff4444;
}

/* Main Content */
.events-main {
    flex: 1;
    min-width: 0;
}

.events-top-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.events-sort {
    position: relative;
    z-index: 50;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.sort-btn:hover {
    background: #16df49;
    color: #fff;
}

.sort-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    padding: 8px;
    min-width: 200px;
    display: none;
    z-index: 100;
}

.sort-dropdown.show {
    display: block;
}

.sort-option {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
}

.sort-option:hover,
.sort-option.active {
    background: #16df49;
    color: #fff;
}

.events-result-count {
    flex: 1;
    font-size: 14px;
    color: #666;
}

.events-result-count strong {
    color: #16df49;
}

.events-view-toggle {
    display: flex;
    gap: 4px;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 8px;
}

.view-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
}

.view-btn:hover {
    color: #16df49;
}

.view-btn.active {
    background: #16df49;
    color: #fff;
}

/* Mobil Filtre Trigger - Desktop'ta gizli */
.mobile-filter-trigger {
    display: none;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.event-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.event-card.hidden {
    display: none !important;
}

.event-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-card-img img {
    transform: scale(1.08);
}

.event-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-trend {
    background: #16df49;
    color: #fff;
}

.badge-limited {
    background: #ff6b35;
    color: #fff;
}

.badge-soon {
    background: #3b82f6;
    color: #fff;
}

.badge-vip {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
}

.badge-new {
    background: #8b5cf6;
    color: #fff;
}

.event-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #888;
}

.event-fav:hover {
    background: #ff4757;
    color: #fff;
}

.event-fav.active {
    background: #ff4757;
    color: #fff;
}

.event-fav.active i {
    font-weight: 900;
}

.event-card-content {
    padding: 18px;
}

.event-card-title {
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card-venue,
.event-card-date {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-card-venue i,
.event-card-date i {
    color: #16df49;
    font-size: 12px;
    width: 14px;
}

.event-card-footer {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.event-price {
    font-size: 15px;
    font-weight: 700;
    color: #16df49;
}

.event-price.soon {
    color: #3b82f6;
    font-weight: 600;
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-results i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 16px;
    display: block;
}

.no-results h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

/* Pagination */
.events-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    padding: 20px;
}

.page-btn {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover:not(:disabled) {
    background: #16df49;
    color: #fff;
    border-color: #16df49;
}

.page-btn.active {
    background: #16df49;
    color: #fff;
    border-color: #16df49;
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.page-dots {
    padding: 0 8px;
    color: #888;
}

/* List View */
.events-grid.list-view {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
}

.events-grid.list-view .event-card {
    display: flex !important;
    flex-direction: row !important;
}

.events-grid.list-view .event-card-img {
    width: 240px;
    flex-shrink: 0;
    aspect-ratio: auto;
    height: 160px;
}

.events-grid.list-view .event-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.events-grid.list-view .event-card-footer {
    margin-top: auto;
}

/* Sidebar Overlay - Desktop'ta gizli */
.sidebar-overlay {
    display: none;
}

/* Mobil Header/Footer - Desktop'ta gizli */
.sidebar-mobile-header,
.sidebar-mobile-footer {
    display: none;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .events-grid.list-view {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .events-grid.list-view .event-card {
        display: flex !important;
        flex-direction: row !important;
    }
}

@media (max-width: 992px) {
    /* Mobilde event card image daha kısa */
    .event-card-img {
        aspect-ratio: 16/9;
    }
    
    /* Top bar düzeni */
    .events-top-bar {
        flex-wrap: nowrap;
        padding: 10px 12px;
        gap: 8px;
    }
    
    /* Filtre butonu (mobilde sonuç sayısı yerine) */
    .mobile-filter-trigger {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px 16px;
        background: #16df49;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }
    
    .mobile-filter-trigger .filter-count-badge {
        background: rgba(255,255,255,0.3);
        padding: 2px 8px;
        border-radius: 10px;
        font-size: 12px;
    }
    
    /* Sonuç sayısı mobilde gizle */
    .events-result-count {
        display: none !important;
    }
    
    /* Sidebar - alttan yukarı açılır panel */
    .events-sidebar {
        display: none;
        position: fixed !important;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto !important;
        width: 100% !important;
        max-height: 85vh !important;
        background: #fff;
        z-index: 2000;
        padding: 0;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
        overflow-y: auto !important;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    
    .events-sidebar.mobile-open {
        display: block;
        transform: translateY(0);
    }
    
    /* Sidebar header */
    .sidebar-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        border-bottom: 1px solid #eee;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 10;
    }
    
    .sidebar-mobile-header h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
    }
    
    .sidebar-close-btn {
        width: 36px;
        height: 36px;
        border: none;
        background: #f5f5f5;
        border-radius: 50%;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Sidebar içerik */
    .sidebar-content {
        padding: 20px;
    }
    
    /* Sidebar footer - uygula butonu */
    .sidebar-mobile-footer {
        display: block;
        padding: 16px 20px;
        border-top: 1px solid #eee;
        position: sticky;
        bottom: 0;
        background: #fff;
    }
    
    .apply-filters-btn {
        width: 100%;
        padding: 14px;
        background: #16df49;
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
    }
    
    /* Overlay */
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1999;
    }
    
    .sidebar-overlay.active {
        display: block;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid.list-view {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .events-grid.list-view .event-card {
        display: flex !important;
        flex-direction: row !important;
    }
    
    .events-grid.list-view .event-card-img {
        width: 200px;
        height: 140px;
    }
    
    .category-tab-bar {
        top: 60px;
    }
}

@media (max-width: 600px) {
    .events-page-container {
        padding: 15px;
    }
    
    /* Mobil grid */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Daha kısa görsel */
    .event-card-img {
        aspect-ratio: 2/1 !important;
    }
    
    .cat-tab {
        padding: 12px 16px;
        font-size: 12px;
    }
    
    .events-view-toggle {
        padding: 3px;
    }
    
    .view-btn {
        width: 32px;
        height: 32px;
    }
    
    .events-sort .sort-btn {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
    }
    
    .events-sort .sort-btn i:first-child {
        display: none;
    }
    
    /* List view mobil - yatay kalmalı */
    .events-grid.list-view {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .events-grid.list-view .event-card {
        display: flex !important;
        flex-direction: row !important;
    }
    
    .events-grid.list-view .event-card-img {
        width: 120px;
        height: 100px;
        aspect-ratio: auto !important;
    }
    
    .events-grid.list-view .event-card-content {
        padding: 12px;
    }
    
    .events-grid.list-view .event-card-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .events-grid.list-view .event-card-venue,
    .events-grid.list-view .event-card-date {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .events-grid.list-view .event-card-footer {
        margin-top: 8px;
        padding-top: 8px;
    }
    
    .events-grid.list-view .event-price {
        font-size: 13px;
    }
}

/* ===================== MEKAN DETAY - SPLIT LAYOUT ===================== */

/* Ana Split Container */
.venue-split-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 75px);
}

/* ==================== SOL PANEL - MEKAN BİLGİLERİ ==================== */
.venue-panel {
    width: 380px;
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid #eee;
}

.venue-panel-inner {
    position: relative;
}

/* Cover Image */
.venue-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.venue-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.4) 100%);
}

.venue-gallery-trigger {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.venue-gallery-trigger:hover {
    background: #16df49;
    color: #fff;
}

/* Identity Section */
.venue-identity {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.venue-logo-box {
    width: 72px;
    height: 72px;
    margin: -50px auto 12px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #fff;
    position: relative;
    z-index: 10;
}

.venue-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.venue-title {
    font-family: 'Kanit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px 0;
}

.venue-location-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #666;
}

.venue-location-tag i {
    color: #16df49;
    font-size: 11px;
}

/* Quick Stats */
.venue-quick-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.quick-stat {
    flex: 1;
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid #f0f0f0;
}

.quick-stat:last-child {
    border-right: none;
}

.stat-value {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #16df49;
}

.stat-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Action Buttons */
.venue-actions {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.btn-follow {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border: 2px solid #16df49;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #16df49;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-follow:hover,
.btn-follow.following {
    background: #16df49;
    color: #fff;
}

.btn-directions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: #16df49;
    border: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-directions:hover {
    background: #12c43f;
}

.btn-share {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-share:hover {
    background: #16df49;
    color: #fff;
}

/* Info Sections - Accordion */
.venue-info-sections {
    padding: 0;
}

.info-section {
    border-bottom: 1px solid #f0f0f0;
}

.info-section-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
}

.info-section-header:hover {
    background: #fafafa;
}

.info-section-header span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-section-header span i {
    color: #16df49;
    width: 18px;
}

.section-chevron {
    font-size: 12px;
    color: #999;
    transition: transform 0.3s;
}

.info-section.open .section-chevron {
    transform: rotate(180deg);
}

.info-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.info-section.open .info-section-content {
    max-height: 500px;
    padding: 0 20px 20px;
}

.info-section-content p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 14px 0;
}

/* Feature Tags */
.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f0fff4;
    border-radius: 6px;
    font-size: 12px;
    color: #16df49;
    font-weight: 500;
}

.feature-tag i {
    font-size: 11px;
}

/* Address & Map */
.address-text {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.mini-map {
    margin: 12px 0;
    border-radius: 10px;
    overflow: hidden;
}

.transport-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #555;
}

.transport-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 6px;
    color: #666;
    font-size: 11px;
}

/* Contact Links */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #16df49;
}

.contact-link i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 8px;
    color: #16df49;
    font-size: 12px;
}

.social-row {
    display: flex;
    gap: 8px;
}

.social-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.social-btn:hover {
    background: #16df49;
    color: #fff;
}

.no-events {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    margin: 20px 0;
}

.no-events i {
    font-size: 48px;
    color: #16df49;
    margin-bottom: 20px;
    opacity: 0.8;
}

.no-events h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 12px 0;
}

.no-events p {
    font-size: 15px;
    color: #666;
    margin: 0;
    max-width: 350px;
    line-height: 1.6;
}

/* ==================== SAĞ PANEL - ETKİNLİKLER ==================== */
.venue-events-panel {
    flex: 1;
    min-width: 0;
    padding: 24px 30px;
    background: #f8f9fa;
}

.events-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.events-title {
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.events-title i {
    color: #16df49;
}

.events-count {
    font-size: 13px;
    color: #16df49;
    font-weight: 600;
    background: #f0fff4;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Events List */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    background: #fff;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
}

.event-row:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.event-row-img {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.event-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-row-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.badge-trend {
    background: #16df49;
    color: #fff;
}

.badge-new {
    background: #8b5cf6;
    color: #fff;
}

.badge-limited {
    background: #ff6b35;
    color: #fff;
}

.badge-vip {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
}

.event-row-content {
    flex: 1;
    min-width: 0;
}

.event-row-title {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-row-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.event-row-date {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-row-date i {
    color: #16df49;
}

.event-row-multi {
    font-size: 11px;
    color: #16df49;
    background: #f0fff4;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.event-row-price {
    text-align: right;
    flex-shrink: 0;
}

.price-value {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #16df49;
}

.price-label {
    font-size: 11px;
    color: #999;
}

.event-row-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 8px;
    color: #999;
    flex-shrink: 0;
    transition: all 0.2s;
}

.event-row:hover .event-row-arrow {
    background: #16df49;
    color: #fff;
}

/* Past Events Toggle */
.past-events-toggle {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px dashed #ddd;
}

.past-events-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.past-events-btn:hover,
.past-events-btn.active {
    background: #f0f0f0;
    border-color: #ccc;
}

/* ==================== BENZER MEKANLAR ==================== */
.similar-venues-section {
    background: #fff;
    padding: 40px 20px;
    border-top: 1px solid #eee;
}

.similar-venues-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-split {
    font-family: 'Kanit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.section-title-split .title-green {
    color: #16df49;
}

.similar-venues-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.similar-venues-scroll::-webkit-scrollbar {
    height: 6px;
}

.similar-venues-scroll::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.similar-venue-card {
    flex: 0 0 200px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.similar-venue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.similar-venue-img {
    height: 120px;
    overflow: hidden;
}

.similar-venue-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.similar-venue-card:hover .similar-venue-img img {
    transform: scale(1.05);
}

.similar-venue-info {
    padding: 12px;
}

.similar-venue-info h4 {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.similar-venue-info span {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.similar-venue-info span i {
    color: #16df49;
    font-size: 10px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
    .venue-panel {
        width: 340px;
    }
    
    .venue-events-panel {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    /* Mobilde dikey layout */
    .venue-split-container {
        flex-direction: column;
    }
    
    .venue-panel {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .venue-panel-inner {
        position: static;
        max-height: none;
        overflow: visible;
    }
    
    .venue-cover {
        height: 180px;
    }
    
    /* Mobilde accordion davranışı */
    .info-section-content {
        max-height: 0;
        padding: 0 20px;
    }
    
    .info-section.open .info-section-content {
        max-height: 500px;
        padding: 0 20px 20px;
    }
    
    .venue-events-panel {
        padding: 20px 15px;
    }
    
    .events-panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .event-row {
        padding: 12px;
        gap: 12px;
    }
    
    .event-row-img {
        width: 70px;
        height: 70px;
    }
    
    .event-row-title {
        font-size: 14px;
    }
    
    .price-value {
        font-size: 16px;
    }
    
    .event-row-arrow {
        display: none;
    }
    
    .similar-venues-section {
        padding: 30px 15px;
    }
}

@media (max-width: 600px) {
    .venue-cover {
        height: 160px;
    }
    
    .venue-identity {
        padding: 16px;
    }
    
    .venue-title {
        font-size: 20px;
    }
    
    .venue-quick-stats {
        padding: 12px 16px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .venue-actions {
        padding: 12px 16px;
        flex-wrap: wrap;
    }
    
    .btn-follow,
    .btn-directions {
        flex: 1 1 calc(50% - 5px);
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .btn-share {
        width: 42px;
        height: 42px;
    }
    
    .event-row {
        flex-wrap: wrap;
    }
    
    .event-row-img {
        width: 60px;
        height: 60px;
    }
    
    .event-row-content {
        flex: 1 1 calc(100% - 140px);
    }
    
    .event-row-price {
        width: 100%;
        text-align: left;
        padding-top: 10px;
        margin-top: 10px;
        border-top: 1px solid #f0f0f0;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .price-value {
        font-size: 15px;
    }
    
    .price-label {
        font-size: 12px;
    }
    
    .similar-venue-card {
        flex: 0 0 160px;
    }
    
    .similar-venue-img {
        height: 100px;
    }
}



/* ===================== BLOG SAYFALARI STİLLERİ ===================== */

/* ==================== BLOG LİSTELEME SAYFASI ==================== */

/* Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #16df49 0%, #0fa83a 100%);
    padding: 40px 20px;
    text-align: center;
}

.blog-hero-content {
    max-width: 1440px;
    margin: 0 auto;
}

.blog-hero-title {
    font-family: 'Kanit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.title-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.blog-hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* Filters Section */
.blog-filters {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 14px 20px;
    position: sticky;
    top: 75px;
    z-index: 100;
}

.blog-filters-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.blog-categories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
}

.blog-categories::-webkit-scrollbar {
    display: none;
}

.blog-cat-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f5f5f5;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.blog-cat-btn i {
    font-size: 12px;
}

.blog-cat-btn:hover {
    background: #e8e8e8;
}

.blog-cat-btn.active {
    background: #16df49;
    color: #fff;
}

.blog-search {
    position: relative;
    flex-shrink: 0;
}

.blog-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 14px;
}

.blog-search input {
    width: 220px;
    padding: 10px 14px 10px 40px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}

.blog-search input:focus {
    border-color: #16df49;
}

/* Blog Content */
.blog-content {
    background: #f5f5f5;
    padding: 30px 20px 50px;
}

.blog-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.blog-main {
    min-width: 0;
}

/* Featured Card */
.blog-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.blog-featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.featured-img {
    position: relative;
    min-height: 280px;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(0,0,0,0.05) 100%);
}

.featured-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: #16df49;
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.featured-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 12px;
}

.featured-meta span {
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-meta i {
    color: #16df49;
}

.featured-title {
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-read-more {
    font-size: 13px;
    font-weight: 600;
    color: #16df49;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.blog-featured-card:hover .featured-read-more {
    gap: 10px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.blog-card-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: #16df49;
    color: #fff;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
}

.blog-card-category.category-campaign {
    background: #ff6b35;
}

.blog-card-content {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.blog-card-meta span {
    font-size: 10px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card-meta i {
    color: #ccc;
}

.blog-card-title {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Load More */
.blog-load-more {
    text-align: center;
    margin-top: 30px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #fff;
    border: 2px solid #16df49;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #16df49;
    cursor: pointer;
    transition: all 0.2s;
}

.load-more-btn:hover {
    background: #16df49;
    color: #fff;
}

/* ==================== SIDEBAR ==================== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-section {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sidebar-title {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin: 0 0 14px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-title i {
    color: #16df49;
    font-size: 13px;
}

/* Trending List */
.trending-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trending-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    padding: 8px;
    margin: -8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.trending-item:hover {
    background: #f8f9fa;
}

.trending-number {
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #16df49;
    opacity: 0.3;
    line-height: 1;
    min-width: 28px;
}

.trending-content h4 {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0 0 3px 0;
    line-height: 1.4;
}

.trending-meta {
    font-size: 10px;
    color: #999;
}

/* Category List */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    color: #444;
    transition: all 0.2s;
}

.category-item:hover {
    background: #16df49;
    color: #fff;
}

.category-count {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    background: #fff;
    padding: 2px 8px;
    border-radius: 10px;
}

.category-item:hover .category-count {
    background: rgba(255,255,255,0.3);
    color: #fff;
}

/* Newsletter */
.sidebar-newsletter {
    background: linear-gradient(135deg, #16df49 0%, #0fa83a 100%);
    text-align: center;
    padding: 22px 16px;
}

.newsletter-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 18px;
    color: #fff;
}

.newsletter-title {
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px 0;
}

.newsletter-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 14px 0;
}

.newsletter-form {
    display: flex;
    gap: 6px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    outline: none;
}

.newsletter-form button {
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 8px;
    color: #16df49;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.newsletter-form button:hover {
    background: #111;
    color: #fff;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 12px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.tag-item:hover {
    background: #16df49;
    color: #fff;
}

/* ==================== BLOG DETAY SAYFASI ==================== */

/* Breadcrumb */
.blog-breadcrumb {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 20px;
}

.breadcrumb-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.breadcrumb-container a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-container a:hover {
    color: #16df49;
}

.breadcrumb-container i {
    font-size: 9px;
    color: #ccc;
}

.breadcrumb-container span {
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}

/* Blog Detail Content */
.blog-detail-content {
    background: #f5f5f5;
    padding: 24px 20px 50px;
}

.blog-detail-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

/* Article */
.blog-article {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.article-header {
    padding: 24px 28px 0;
}

.article-category-tag {
    display: inline-block;
    padding: 5px 14px;
    background: #16df49;
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 14px;
}

.article-title {
    font-family: 'Kanit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin: 0 0 16px 0;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 38px;
    height: 38px;
    background: #f0fff4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16df49;
    font-size: 16px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #111;
    font-size: 13px;
}

.author-date {
    font-size: 11px;
    color: #888;
}

.article-stats {
    display: flex;
    gap: 14px;
}

.article-stats span {
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-stats i {
    color: #ccc;
}

/* Featured Image */
.article-featured-img {
    margin: 20px 28px;
    border-radius: 12px;
    overflow: hidden;
    max-height: 360px;
}

.article-featured-img img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    display: block;
}

/* Share Bar */
.article-share-bar {
    position: absolute;
    left: calc(50% - 650px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 50;
}

.share-label {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    color: #666;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.share-btn:hover {
    border-color: #16df49;
    color: #16df49;
}

.share-twitter:hover { color: #1da1f2; border-color: #1da1f2; }
.share-facebook:hover { color: #1877f2; border-color: #1877f2; }
.share-whatsapp:hover { color: #25d366; border-color: #25d366; }
.share-linkedin:hover { color: #0a66c2; border-color: #0a66c2; }

/* Article Body */
.article-body {
    padding: 0 28px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.article-lead {
    font-size: 16px;
    color: #444;
    font-weight: 500;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.article-body h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 28px 0 14px;
}

.article-body p {
    margin: 0 0 16px;
}

/* Quote */
.article-quote {
    background: #f8f9fa;
    border-left: 3px solid #16df49;
    padding: 18px 22px;
    margin: 22px 0;
    border-radius: 0 10px 10px 0;
}

.article-quote p {
    font-size: 15px;
    font-style: italic;
    color: #444;
    margin: 0 0 10px;
}

.article-quote cite {
    font-size: 12px;
    color: #888;
    font-style: normal;
}

/* Event Card in Article */
.article-event-card {
    display: flex;
    gap: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 14px;
    margin: 20px 0;
}

.article-event-card .event-card-img {
    width: 120px;
    height: 85px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.article-event-card .event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-event-card .event-card-info h4 {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin: 0 0 6px;
}

.article-event-card .event-card-info p {
    font-size: 12px;
    color: #666;
    margin: 0 0 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-event-card .event-card-info p i {
    color: #16df49;
    font-size: 11px;
}

.event-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    padding: 6px 14px;
    background: #16df49;
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.event-card-btn:hover {
    background: #12c43f;
}

/* Figure */
.article-figure {
    margin: 28px 0;
}

.article-figure img {
    width: 100%;
    border-radius: 12px;
}

.article-figure figcaption {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 10px;
}

/* Lists */
.article-list {
    margin: 20px 0;
    padding-left: 24px;
}

.article-list li {
    margin-bottom: 10px;
}

.article-list strong {
    color: #111;
}

/* CTA Box */
.article-cta-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #16df49 0%, #0fa83a 100%);
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
}

.cta-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}

.cta-content {
    flex: 1;
}

.cta-content h4 {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
}

.cta-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.cta-btn {
    padding: 12px 24px;
    background: #fff;
    color: #16df49;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.2s;
}

.cta-btn:hover {
    background: #111;
    color: #fff;
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 20px 28px;
    border-top: 1px solid #f0f0f0;
}

.tags-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.article-tag {
    padding: 5px 12px;
    background: #f5f5f5;
    border-radius: 5px;
    font-size: 11px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.article-tag:hover {
    background: #16df49;
    color: #fff;
}

/* Author Box */
.article-author-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    margin: 0 28px;
    background: #f8f9fa;
    border-radius: 12px;
}

.author-box-avatar {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16df49;
    font-size: 22px;
    flex-shrink: 0;
}

.author-box-content h4 {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin: 0 0 6px;
}

.author-box-content p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 10px;
}

.author-box-social {
    display: flex;
    gap: 8px;
}

.author-box-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 6px;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s;
}

.author-box-social a:hover {
    background: #16df49;
    color: #fff;
}

/* Article Navigation */
.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px 28px 24px;
}

.nav-prev,
.nav-next {
    padding: 14px 16px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-prev:hover,
.nav-next:hover {
    background: #f0f0f0;
}

.nav-next {
    text-align: right;
}

.nav-label {
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
}

.nav-next .nav-label {
    justify-content: flex-end;
}

.nav-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    display: block;
}

/* Detail Sidebar */
.blog-detail-sidebar {
    position: sticky;
    align-self: start;
}

/* Related Events */
.related-events {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-event-card {
    display: flex;
    gap: 10px;
    padding: 8px;
    margin: -8px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.related-event-card:hover {
    background: #f8f9fa;
}

.related-event-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-event-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin: 0 0 4px;
}

.related-event-info span {
    font-size: 11px;
    color: #888;
    display: block;
}

.related-event-price {
    font-size: 12px !important;
    font-weight: 600;
    color: #16df49 !important;
    margin-top: 2px;
}

/* Similar Posts */
.similar-posts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.similar-post {
    display: flex;
    gap: 10px;
    padding: 8px;
    margin: -8px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.similar-post:hover {
    background: #f8f9fa;
}

.similar-post-img {
    width: 60px;
    height: 42px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.similar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-post-content h4 {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin: 0 0 3px;
    line-height: 1.4;
}

.similar-post-content span {
    font-size: 10px;
    color: #999;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1400px) {
    .article-share-bar {
        display: none;
    }
}

@media (max-width: 1100px) {
    .blog-container,
    .blog-detail-container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar,
    .blog-detail-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .sidebar-newsletter {
        grid-column: 1 / -1;
    }
    
    .blog-featured-card {
        grid-template-columns: 1fr;
    }
    
    .featured-img {
        min-height: 240px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 35px 15px;
    }
    
    .blog-hero-title {
        font-size: 28px;
    }
    
    .title-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .blog-filters {
        padding: 12px 15px;
    }
    
    .blog-filters-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .blog-search {
        width: 100%;
    }
    
    .blog-search input {
        width: 100%;
    }
    
    .blog-content,
    .blog-detail-content {
        padding: 20px 15px 40px;
    }
    
    .blog-sidebar,
    .blog-detail-sidebar {
        grid-template-columns: 1fr;
    }
    
    .article-header,
    .article-body,
    .article-tags,
    .article-navigation {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .article-featured-img {
        margin: 20px;
    }
    
    .article-author-box {
        margin: 0 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .author-box-social {
        justify-content: center;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-navigation {
        grid-template-columns: 1fr;
    }
    
    .article-cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .article-event-card {
        flex-direction: column;
    }
    
    .article-event-card .event-card-img {
        width: 100%;
        height: 140px;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .featured-title {
        font-size: 20px;
    }
    
    .blog-card-content {
        padding: 14px;
    }
    
    .blog-card-title {
        font-size: 15px;
    }
}

/* ===================== İLETİŞİM SAYFASI STİLLERİ ===================== */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #16df49 0%, #0fa83a 100%);
    padding: 50px 20px;
    text-align: center;
}

.contact-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: 'Kanit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.contact-hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* Main Page */
.contact-page {
    background: #f5f5f5;
    padding: 30px 20px 60px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Quick Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.contact-quick-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.contact-quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.quick-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e8fff0 0%, #d4fce4 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.quick-card-icon i {
    font-size: 22px;
    color: #16df49;
}

.quick-card-title {
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0 0 10px 0;
}

.quick-card-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #16df49;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.quick-card-value:hover {
    color: #12c43f;
}

.quick-card-note {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.quick-card-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.quick-card-social a {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s;
}

.quick-card-social a:hover {
    background: #16df49;
    color: #fff;
}

/* Main Grid (Map + Info) */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

/* Map Section */
.contact-map-section {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.map-wrapper {
    height: 320px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.map-address i {
    color: #16df49;
    font-size: 16px;
    margin-top: 2px;
}

.map-address span {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Info Section */
.contact-info-section {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.info-section-title {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 20px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.company-name {
    margin-bottom: 20px;
}

.company-label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}

.company-value {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

.company-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-label {
    font-size: 11px;
    color: #888;
}

.detail-value {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

/* Working Hours */
.working-hours {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 16px;
}

.hours-title {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hours-title i {
    color: #16df49;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hours-row .day {
    font-size: 13px;
    color: #555;
}

.hours-row .time {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #e8fff0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #16df49;
}

.hours-badge i {
    font-size: 12px;
}




/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 40px 15px;
    }
    
    .contact-hero-title {
        font-size: 26px;
    }
    
    .contact-page {
        padding: 20px 15px 50px;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-quick-card {
        padding: 24px 20px;
    }
    
    .quick-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .quick-card-icon i {
        font-size: 20px;
    }
    
    .contact-main-grid {
        gap: 16px;
    }
    
    .contact-info-section {
        padding: 20px;
    }
    
    .company-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 22px;
    }
    
    .contact-hero-desc {
        font-size: 14px;
    }
    
    .map-wrapper {
        height: 220px;
    }
    
    .map-address {
        padding: 14px 16px;
    }
    
    .map-address span {
        font-size: 13px;
    }
}

/* ===================== VIP FORM EK STİLLERİ ===================== */
/* Bu stilleri style.css dosyasının SONUNA ekleyin */

/* Form Hint */
.vip-form-hint {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 10px;
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

.vip-form-hint i {
    color: #16df49;
    margin-top: 1px;
    flex-shrink: 0;
}

/* File Upload Container */
.vip-form-file-upload {
    border: 2px dashed #d0d0d0;
    border-radius: 16px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.vip-form-file-upload:hover {
    border-color: #16df49;
    background: linear-gradient(135deg, #f0fff4 0%, #e8fff0 100%);
    box-shadow: 0 4px 20px rgba(22, 223, 73, 0.1);
}

.vip-form-file-upload.dragover {
    border-color: #16df49;
    background: linear-gradient(135deg, #e8fff0 0%, #d4fce4 100%);
    transform: scale(1.01);
}

/* Upload Content - Default State */
.vip-file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
}

.vip-file-upload-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #16df49 0%, #0fa83a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(22, 223, 73, 0.25);
}

.vip-file-upload-icon i {
    font-size: 28px;
    color: #fff;
}

.vip-file-upload-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.vip-file-upload-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.vip-file-upload-subtitle {
    font-size: 14px;
    color: #888;
}

.vip-file-upload-formats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
}

.vip-file-upload-formats i {
    color: #16df49;
}

/* Selected File Display */
.vip-file-upload-selected {
    display: none;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f0fff4 0%, #e8fff0 100%);
}

.vip-file-upload-selected.active {
    display: flex;
}

.vip-file-icon-wrapper {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.vip-file-icon-wrapper i {
    font-size: 24px;
    color: #16df49;
}

.vip-file-info {
    flex: 1;
    min-width: 0;
}

.vip-file-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.vip-file-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #16df49;
    font-weight: 500;
}

.vip-file-status i {
    font-size: 12px;
}

.vip-file-remove {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.vip-file-remove:hover {
    background: #ff4757;
    border-color: #ff4757;
    color: #fff;
}

/* Hide content when file selected */
.vip-form-file-upload.has-file .vip-file-upload-content {
    display: none;
}

.vip-form-file-upload.has-file {
    border-style: solid;
    border-color: #16df49;
}

/* Responsive */
@media (max-width: 768px) {
    .vip-file-upload-content {
        padding: 32px 20px;
    }
    
    .vip-file-upload-icon {
        width: 60px;
        height: 60px;
    }
    
    .vip-file-upload-icon i {
        font-size: 24px;
    }
    
    .vip-file-upload-title {
        font-size: 15px;
    }
    
    .vip-file-upload-subtitle {
        font-size: 13px;
    }
    
    .vip-file-upload-selected {
        padding: 16px 18px;
        gap: 12px;
    }
    
    .vip-file-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .vip-file-icon-wrapper i {
        font-size: 20px;
    }
    
    .vip-file-name {
        font-size: 13px;
    }
}

/* =====================================================
   MEMBERSHIP PASSES - Bilet/Pass Konseptli Üyelik Alanı
   ===================================================== */

.membership-passes {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px 40px;
}

.mp-header {
    margin-bottom: 28px;
}

.mp-title {
    font-family: 'Kanit', sans-serif;
    font-size: 27px;
    font-weight: 700;
    color: #222;
}

.mp-subtitle {
    font-size: 14px;
    color: #999;
    margin: 4px 0 0 0;
    font-weight: 400;
}

/* ===== GRID ===== */
.mp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== PASS CARD (Ortak) ===== */
.pass-card {
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pass-card:hover {
    transform: translateY(-5px);
}

/* Üst gradient accent çizgisi */
.pass-accent {
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6, #16df49);
    flex-shrink: 0;
}

.pass-accent-green {
    background: linear-gradient(90deg, #16df49, #57F262, #c5ffc5);
}

/* ===== DARK PASS (Private Club) ===== */
.pass-dark {
    background: #0a0a0a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.pass-dark:hover {
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.15),
                0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===== LIGHT PASS (Student+) ===== */
.pass-light {
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.pass-light:hover {
    box-shadow: 0 16px 48px rgba(22, 223, 73, 0.12),
                0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ===== PASS BODY ===== */
.pass-body {
    padding: 28px 28px 24px;
    flex-grow: 1;
}

.pass-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.pass-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: transform 0.3s ease;
}

.pass-card:hover .pass-icon {
    transform: scale(1.08) rotate(-3deg);
}

.pass-icon-purple {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.pass-icon-green {
    background: linear-gradient(135deg, #16df49, #57F262);
    box-shadow: 0 4px 16px rgba(22, 223, 73, 0.3);
}

/* Pass Type Badge */
.pass-type {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    padding: 5px 12px;
    border-radius: 6px;
    background: rgba(22, 223, 73, 0.12);
    color: #16df49;
}

.pass-type-green {
    background: rgba(22, 223, 73, 0.1);
    color: #16df49;
}

/* Title */
.pass-title {
    font-family: 'Kanit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.pass-title span {
    color: #16df49;
}

.pass-title-dark {
    color: #222;
}

.pass-title-dark span {
    color: #16df49;
}

/* Description */
.pass-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 20px 0;
}

.pass-desc-dark {
    color: #888;
}

/* Perks */
.pass-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pass-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.pass-perks li i {
    font-size: 13px;
    flex-shrink: 0;
    color: #16df49;
}

.pass-perks-dark li {
    color: #555;
}

.pass-perks-dark li i {
    color: #16df49;
}

/* ===== TEAR LINE (Bilet Perforasyon Efekti) ===== */
.pass-tear {
    position: relative;
    height: 1px;
    margin: 0 28px;
    border-top: 2px dashed rgba(255, 255, 255, 0.1);
}

.pass-tear-light {
    border-top-color: #eee;
}

/* Perforasyon çentikleri — sayfa arka planıyla aynı renk */
.pass-notch {
    position: absolute;
    top: -11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f5f5f5;
}

.pass-notch-l {
    left: -38px;
}

.pass-notch-r {
    right: -38px;
}

/* ===== FOOTER / CTA ===== */
.pass-footer {
    padding: 18px 28px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pass-cta {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #16df49;
    letter-spacing: 0.3px;
}

.pass-cta-green {
    color: #16df49;
}

.pass-arrow {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #16df49;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.pass-arrow-green {
    background: #16df49;
    color: #000;
}

.pass-card:hover .pass-arrow {
    transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .mp-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .membership-passes {
        padding: 35px 16px 30px;
    }

    .mp-title {
        font-size: 23px;
    }

    .mp-subtitle {
        font-size: 13px;
    }

    .pass-body {
        padding: 22px 20px 18px;
    }

    .pass-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 12px;
    }

    .pass-title {
        font-size: 22px;
    }

    .pass-desc {
        font-size: 13px;
    }

    .pass-perks li {
        font-size: 12.5px;
    }

    .pass-tear {
        margin: 0 20px;
    }

    .pass-notch-l {
        left: -30px;
    }

    .pass-notch-r {
        right: -30px;
    }

    .pass-footer {
        padding: 14px 20px 18px;
    }

    .pass-arrow {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }
}

/* =====================================================
   MOBILE BOTTOM NAVIGATION BAR
   style.css'in en altına ekleyin
   ===================================================== */

/* Bottom Nav - Sadece mobilde görünür */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f8f8;
    z-index: 9999;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.06);
    /* iOS/Android scroll bounce fix */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

.mobile-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    height: 60px;
    max-width: 100%;
}

/* Nav Item */
.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #888;
    font-size: 10px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    gap: 3px;
    position: relative;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    /* Touch scroll fix */
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.mobile-nav-item i {
    font-size: 22px;
    transition: transform 0.2s ease;
}

.mobile-nav-item span {
    letter-spacing: -0.2px;
}

/* Active State - Turuncu */
.mobile-nav-item.active {
    color: #ff6b35;
}

.mobile-nav-item.active i {
    transform: scale(1.1);
}

/* Hover/Touch State */
.mobile-nav-item:active {
    color: #ff6b35;
    transform: scale(0.92);
}

.mobile-nav-item:active i {
    transform: scale(0.95);
}

/* Center Menu Button - Keşfet */
.mobile-nav-item.nav-menu-btn {
    position: relative;
}

.mobile-nav-item.nav-menu-btn .nav-menu-icon {
    width: 48px;
    height: 48px;
    background: #16df49;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -28px;
    box-shadow: 0 4px 16px rgba(22, 223, 73, 0.35);
    transition: all 0.2s ease;
    position: relative;
}

.mobile-nav-item.nav-menu-btn .nav-menu-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: rgba(22, 223, 73, 0.15);
    border-radius: 17px;
    z-index: -1;
}

.mobile-nav-item.nav-menu-btn .nav-menu-icon i {
    color: #fff;
    font-size: 20px;
}

.mobile-nav-item.nav-menu-btn span {
    margin-top: 4px;
    color: #16df49;
    font-weight: 700;
}

.mobile-nav-item.nav-menu-btn:active .nav-menu-icon {
    transform: scale(0.9);
    box-shadow: 0 2px 10px rgba(22, 223, 73, 0.4);
}

/* Body padding for fixed nav */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
    
    body {
        padding-bottom: calc(60px + env(safe-area-inset-bottom));
    }
    
    /* Scroll sırasında kayma önleme */
    html {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Footer'ın bottom nav ile örtüşmemesi için */
    .site-footer {
        margin-bottom: 0;
    }
}

/* Landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .mobile-bottom-nav-inner {
        height: 50px;
    }
    
    .mobile-nav-item i {
        font-size: 20px;
    }
    
    .mobile-nav-item span {
        font-size: 9px;
    }
    
    .mobile-nav-item.nav-menu-btn .nav-menu-icon {
        width: 42px;
        height: 42px;
        margin-top: -24px;
        border-radius: 12px;
    }
    
    .mobile-nav-item.nav-menu-btn .nav-menu-icon::before {
        inset: -2px;
        border-radius: 14px;
    }
    
    body {
        padding-bottom: calc(50px + env(safe-area-inset-bottom));
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .mobile-nav-item span {
        font-size: 9px;
    }
    
    .mobile-nav-item i {
        font-size: 20px;
    }
    
    .mobile-nav-item.nav-menu-btn .nav-menu-icon {
        width: 44px;
        height: 44px;
        margin-top: -24px;
    }
}

/* =====================================================
   AUTH SAYFALARI - YENİ TASARIM
   style.css'in sonuna ekleyin
   ===================================================== */

/* Auth Page Base */
.auth-page {
    padding-top: 0 !important;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.auth-page .header {
    position: relative;
    background: transparent;
}

.auth-page .header-row {
    padding-top: 10px;
}

/* Auth Container */
.auth-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    min-height: calc(100vh - 75px);
    gap: 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    align-items: center;
}

/* Center Container (şifremi unuttum, kod doğrula) */
.auth-center-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: calc(100vh - 75px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =====================================================
   SOL TARAF - BİLGİ ALANI
   ===================================================== */
.auth-info-side {
    flex: 1;
    color: #fff;
    padding: 40px 0;
    order: 1;
}

/* Welcome Section */
.auth-welcome {
    margin-bottom: 50px;
}

.auth-welcome-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 223, 73, 0.15);
    color: #16df49;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.auth-welcome h1 {
    font-family: 'Kanit', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
}

.auth-welcome h1 span {
    color: #16df49;
}

.auth-welcome p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 500px;
}

/* =====================================================
   MEMBERSHIP CARDS (Private Club & Student+)
   ===================================================== */
.auth-membership-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.auth-membership-card {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.auth-membership-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
}

.auth-membership-card.private {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,215,0,0.25);
}

.auth-membership-card.private:hover {
    border-color: rgba(255,215,0,0.5);
    background: rgba(255,215,0,0.05);
}

.auth-membership-card.student {
    background: rgba(255,255,255,0.03);
    border-color: rgba(22,223,73,0.25);
}

.auth-membership-card.student:hover {
    border-color: rgba(22,223,73,0.5);
    background: rgba(22,223,73,0.05);
}

.membership-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.auth-membership-card.private .membership-card-icon {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
}

.auth-membership-card.student .membership-card-icon {
    background: linear-gradient(135deg, #16df49, #0eb83a);
    color: #fff;
}

.membership-card-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.auth-membership-card.private .membership-card-badge {
    background: rgba(255,215,0,0.15);
    color: #ffd700;
}

.auth-membership-card.student .membership-card-badge {
    background: rgba(22,223,73,0.15);
    color: #16df49;
}

.membership-card-title {
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.membership-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 16px;
}

.membership-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.membership-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.membership-card-features li i {
    font-size: 10px;
}

.auth-membership-card.private .membership-card-features li i {
    color: #ffd700;
}

.auth-membership-card.student .membership-card-features li i {
    color: #16df49;
}

.membership-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
    transition: gap 0.2s;
}

.auth-membership-card.private .membership-card-link {
    color: #ffd700;
}

.auth-membership-card.student .membership-card-link {
    color: #16df49;
}

.auth-membership-card:hover .membership-card-link {
    gap: 10px;
}

/* =====================================================
   STATS
   ===================================================== */
.auth-stats {
    display: flex;
    gap: 50px;
}

.auth-stat {
    text-align: left;
}

.auth-stat-number {
    font-family: 'Kanit', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #16df49;
    line-height: 1;
}

.auth-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* =====================================================
   BENEFITS GRID (Kayıt sayfası için)
   ===================================================== */
.auth-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.auth-benefit {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 20px;
    transition: all 0.3s;
}

.auth-benefit:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}

.auth-benefit-icon {
    width: 44px;
    height: 44px;
    background: rgba(22,223,73,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.auth-benefit-icon i {
    font-size: 18px;
    color: #16df49;
}

.auth-benefit h4 {
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.auth-benefit p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin: 0;
}

/* =====================================================
   MEMBERSHIP PROMO (Kayıt sayfası için)
   ===================================================== */
.auth-membership-promo {
    display: flex;
    gap: 16px;
}

.auth-promo-card {
    flex: 1;
    padding: 20px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 16px;
}

.auth-promo-card:hover {
    transform: translateY(-3px);
}

.auth-promo-card.private {
    background: rgba(255,215,0,0.08);
    border: 1px solid rgba(255,215,0,0.25);
}

.auth-promo-card.student {
    background: rgba(22,223,73,0.08);
    border: 1px solid rgba(22,223,73,0.25);
}

.auth-promo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.auth-promo-card.private .auth-promo-icon {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
}

.auth-promo-card.student .auth-promo-icon {
    background: linear-gradient(135deg, #16df49, #0eb83a);
    color: #fff;
}

.auth-promo-content h4 {
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.auth-promo-card.private .auth-promo-content h4 {
    color: #ffd700;
}

.auth-promo-card.student .auth-promo-content h4 {
    color: #16df49;
}

.auth-promo-content p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* =====================================================
   SAĞ TARAF - FORM ALANI
   ===================================================== */
.auth-form-side {
    flex: 0 0 420px;
    max-width: 420px;
    order: 2;
}

.auth-form-side.wide {
    flex: 0 0 460px;
    max-width: 460px;
}

/* Auth Card */
.auth-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.auth-logo {
    text-align: center;
    margin-bottom: 28px;
}

.auth-logo img {
    height: 36px;
}

.auth-title {
    font-family: 'Kanit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Auth Icon (kod doğrula, şifremi unuttum) */
.auth-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #16df49 0%, #12c240 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(22, 223, 73, 0.3);
}

.auth-icon i {
    font-size: 28px;
    color: #fff;
}

/* =====================================================
   SOCIAL BUTTONS
   ===================================================== */
.auth-social-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.auth-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
    border: none;
}

.auth-social-btn.google {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    color: #333;
}

.auth-social-btn.google:hover {
    border-color: #4285f4;
    background: #f8faff;
}

.auth-social-btn.apple {
    background: #000;
    color: #fff;
}

.auth-social-btn.apple:hover {
    background: #222;
}

.auth-social-btn i {
    font-size: 18px;
}

/* =====================================================
   DIVIDER
   ===================================================== */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}

.auth-divider span {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =====================================================
   FORM ELEMENTS
   ===================================================== */
.auth-form-group {
    margin-bottom: 18px;
}

.auth-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.auth-input-wrap {
    position: relative;
}

.auth-input-wrap input {
    width: 100%;
    padding: 14px 44px 14px 16px;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
    box-sizing: border-box;
    background: #fafafa;
}

.auth-input-wrap input:focus {
    outline: none;
    border-color: #16df49;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(22, 223, 73, 0.1);
}

.auth-input-wrap input.has-error {
    border-color: #e53935;
    background: #fff5f5;
}

.auth-input-wrap i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 16px;
}

/* Phone Input */
.auth-phone-wrap .iti {
    width: 100%;
}

.auth-phone-wrap .iti input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    background: #fafafa;
}

.auth-phone-wrap .iti input:focus {
    outline: none;
    border-color: #16df49;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(22, 223, 73, 0.1);
}

.auth-phone-wrap .iti input.has-error {
    border-color: #e53935;
    background: #fff5f5;
}

/* Error Message */
.auth-error {
    font-size: 12px;
    color: #e53935;
    margin-top: 6px;
    display: none;
}

.auth-error.show {
    display: block;
}

/* Form Extras (remember me, forgot password) */
.auth-form-extras {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    margin-top: -8px;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.auth-remember input {
    width: 16px;
    height: 16px;
    accent-color: #16df49;
}

.auth-forgot {
    font-size: 13px;
    color: #16df49;
    text-decoration: none;
    font-weight: 500;
}

.auth-forgot:hover {
    text-decoration: underline;
}

/* Terms Checkbox */
.auth-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.auth-terms input {
    width: 18px;
    height: 18px;
    accent-color: #16df49;
    margin-top: 2px;
    flex-shrink: 0;
}

.auth-terms a {
    color: #16df49;
    text-decoration: none;
}

.auth-terms a:hover {
    text-decoration: underline;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.auth-btn-primary {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #16df49 0%, #12c240 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(22, 223, 73, 0.3);
}

.auth-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(22, 223, 73, 0.4);
}

.auth-btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Resend Button */
.auth-resend-btn {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #16df49;
    cursor: pointer;
    margin-top: 20px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
}

.auth-resend-btn:hover:not(:disabled) {
    text-decoration: underline;
}

.auth-resend-btn:disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* =====================================================
   LINKS
   ===================================================== */
.auth-register-link,
.auth-login-link {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #666;
}

.auth-register-link a,
.auth-login-link a {
    color: #16df49;
    font-weight: 600;
    text-decoration: none;
}

.auth-register-link a:hover,
.auth-login-link a:hover {
    text-decoration: underline;
}

.auth-back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.auth-back-link:hover {
    color: #16df49;
}

/* =====================================================
   CODE INPUT (Kod Doğrulama)
   ===================================================== */
.auth-code-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.auth-code-input {
    width: 50px;
    height: 60px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
    background: #fafafa;
}

.auth-code-input:focus {
    outline: none;
    border-color: #16df49;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(22, 223, 73, 0.15);
}

.auth-code-input.has-error {
    border-color: #e53935;
    background: #fff5f5;
}

.auth-code-input.filled {
    border-color: #16df49;
    background: #f0fff4;
}

/* Phone Display */
.auth-phone-display {
    font-size: 17px;
    font-weight: 600;
    color: #16df49;
    margin-bottom: 28px;
    text-align: center;
}

/* Timer */
.auth-timer {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
    text-align: center;
}

.auth-timer span {
    font-weight: 700;
    color: #16df49;
}

/* Success Elements */
.auth-success-email {
    font-weight: 700;
    color: #16df49;
}

.auth-success-note {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 8px;
}

/* Info Note */
.auth-info-note {
    background: #f0fff4;
    border: 1px solid rgba(22, 223, 73, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 24px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    text-align: center;
}

.auth-info-note i {
    color: #16df49;
    margin-right: 6px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
    .auth-container {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
    }
    
    .auth-info-side {
        order: 2;
        padding: 0;
    }
    
    .auth-form-side,
    .auth-form-side.wide {
        flex: none;
        max-width: 100%;
        width: 100%;
        order: 1;
    }
    
    .auth-welcome h1 {
        font-size: 36px;
        text-align: center;
    }
    
    .auth-welcome p {
        text-align: center;
        margin: 0 auto;
    }
    
    .auth-welcome-tag {
        display: flex;
        justify-content: center;
        margin: 0 auto 20px;
        width: fit-content;
    }
    
    .auth-membership-cards {
        flex-direction: column;
    }
    
    .auth-benefits {
        grid-template-columns: 1fr;
    }
    
    .auth-membership-promo {
        flex-direction: column;
    }
    
    .auth-stats {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .auth-container {
        padding: 15px;
    }
    
    .auth-card {
        padding: 28px 24px;
    }
    
    .auth-social-row {
        flex-direction: column;
    }
    
    .auth-welcome h1 {
        font-size: 28px;
    }
    
    .auth-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .auth-stat-number {
        font-size: 32px;
    }
    
    .auth-icon {
        width: 64px;
        height: 64px;
    }
    
    .auth-icon i {
        font-size: 24px;
    }
    
    .auth-title {
        font-size: 22px;
    }
    
    .auth-code-input {
        width: 44px;
        height: 54px;
        font-size: 22px;
    }
    
    .auth-code-inputs {
        gap: 8px;
    }
}

@media (max-width: 380px) {
    .auth-code-input {
        width: 40px;
        height: 50px;
        font-size: 20px;
    }
    
    .auth-code-inputs {
        gap: 6px;
    }
}

.flash-message {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-width: 400px;
}

.flash-message.flash-error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.flash-message.flash-success {
    background: #d1fae5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.flash-message button {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    padding: 0;
    margin-left: auto;
}

.flash-message button:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Password Toggle */
.auth-input-wrap {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px;
    z-index: 2;
}

.password-toggle:hover {
    color: #333;
}

/* Profile Nav Divider */
.profile-nav-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 12px 0;
}

/* Logout Button */
.profile-nav-logout {
    color: #ef4444 !important;
    margin-top: auto;
}
.profile-nav-logout:hover {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #dc2626 !important;
}
.profile-nav-logout i {
    color: #ef4444 !important;
}
.profile-nav-logout:hover i {
    color: #dc2626 !important;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0,0,0,0.1);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reading-progress.visible {
    opacity: 1;
}

.reading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #16df49 0%, #12b33d 100%);
    width: 0;
    transition: width 0.1s ease;
}

/* Copy Button Success */
.share-btn.copied {
    background: #16df49 !important;
    color: #fff !important;
    border-color: #16df49 !important;
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, #16df49 0%, #12b33d 100%);
    text-align: center;
    padding: 24px 16px;
}

.sidebar-cta .cta-content i {
    font-size: 32px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
}

.sidebar-cta h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
}

.sidebar-cta p {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.sidebar-cta .cta-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #fff;
    color: #16df49;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.sidebar-cta .cta-btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
}

/* Article Author Box h3 fix */
.article-author-box h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin: 0 0 6px 0;
}

/* Similar Posts h3 fix */
.similar-post h3 {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin: 0 0 3px 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .article-author-box {
        flex-direction: column;
        text-align: center;
        margin: 0 15px;
    }
    
    .author-box-avatar {
        margin: 0 auto;
    }
    
    .author-box-social {
        justify-content: center;
    }
}

/* Mobile Input Zoom Fix - SEO Friendly */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="number"],
    input[type="search"],
    input[type="url"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px !important;
        touch-action: manipulation;
    }
}

/* =====================================================
   FAQ PAGE STYLES
   ===================================================== */

/* Hero Section */
.faq-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 20px;
    text-align: center;
}

.faq-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.faq-hero h1 {
    font-family: 'Kanit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}

.faq-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Main Page */
.faq-page {
    background: #f5f5f5;
    padding: 40px 20px 60px;
    min-height: 60vh;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Category Section */
.faq-category {
    margin-bottom: 32px;
}

.faq-category:last-of-type {
    margin-bottom: 40px;
}

.faq-category-title {
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-category-title i {
    color: #16df49;
    font-size: 18px;
}

/* Accordion */
.faq-accordion {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Question Button */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: all 0.2s ease;
    gap: 16px;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    font-size: 12px;
    color: #999;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #16df49;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 18px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* CTA Section */
.faq-cta {
    background: linear-gradient(135deg, #16df49 0%, #12c43e 100%);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 4px 20px rgba(22, 223, 73, 0.3);
}

.faq-cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-cta-icon i {
    font-size: 28px;
    color: #fff;
}

.faq-cta-content {
    flex: 1;
}

.faq-cta-content h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px 0;
}

.faq-cta-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #16df49;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.faq-cta-btn:hover {
    background: #1a1a2e;
    color: #fff;
    transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 768px) {
    .faq-hero {
        padding: 40px 15px;
    }

    .faq-hero h1 {
        font-size: 28px;
    }

    .faq-hero p {
        font-size: 14px;
    }

    .faq-page {
        padding: 24px 15px 40px;
    }

    .faq-category-title {
        font-size: 18px;
    }

    .faq-question {
        padding: 16px;
        font-size: 14px;
    }

    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 13px;
    }

    /* CTA Mobile */
    .faq-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }

    .faq-cta-icon {
        width: 56px;
        height: 56px;
    }

    .faq-cta-icon i {
        font-size: 24px;
    }

    .faq-cta-content h3 {
        font-size: 18px;
    }

    .faq-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-hero h1 {
        font-size: 24px;
    }

    .faq-question {
        padding: 14px 12px;
        font-size: 13px;
    }

    .faq-answer p {
        padding: 0 12px 14px;
    }
}

/* =====================================================
   PAGE HERO BANNER (İç Sayfalar)
   ===================================================== */

.page-hero-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 48px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2316df49' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-banner h1 {
    font-family: 'Kanit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .page-hero-banner {
        padding: 36px 16px;
    }
    
    .page-hero-banner h1 {
        font-size: 28px;
    }
    
    .page-hero-banner p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-hero-banner {
        padding: 28px 12px;
    }
    
    .page-hero-banner h1 {
        font-size: 24px;
    }
}

/* =====================================================
   TAKIP ETTIKLERIM - EMPTY STATE
   ===================================================== */

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    margin: 20px 0;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16df49 0%, #0fb33d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(22, 223, 73, 0.3);
}

.empty-state-icon i,
.empty-state > i {
    font-size: 32px;
    color: #fff;
}

.empty-state > i {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16df49 0%, #0fb33d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(22, 223, 73, 0.3);
}

.empty-state h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 12px 0;
}

.empty-state p {
    font-size: 15px;
    color: #666;
    margin: 0 0 24px 0;
    max-width: 400px;
    line-height: 1.6;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #16df49 0%, #0fb33d 100%);
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 223, 73, 0.3);
}

.btn-discover:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 223, 73, 0.4);
    color: #fff;
}

/* Event Card Image - Cover */
.event-card-img {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.event-card:hover .event-card-img img {
    transform: scale(1.05);
}

/* Artist Hero Image - Cover */
.artist-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.artist-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 768px) {
    .artist-hero {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .artist-hero {
        height: 350px;
    }
}

/* Featured Card Image - Cover */
.fc-img {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
}

.fc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.fc-card:hover .fc-img img {
    transform: scale(1.05);
}

/* Artist Hero - Desktop Only Contain */
.artist-hero.artist-hero-single-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}



/* Desktop (992px ve üzeri) - Contain */
@media (min-width: 992px) {
    .artist-hero-img {
        object-fit: contain !important;
        object-position: center center !important;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .artist-hero.artist-hero-single-bg {
        height: 450px;
        border-radius: 12px;
        margin: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .artist-hero.artist-hero-single-bg {
        height: 400px;
        border-radius: 10px;
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .artist-hero.artist-hero-single-bg {
        height: 350px;
        border-radius: 8px;
        margin: 8px;
    }
}

.rec-small-card h4 {
  color:#393939;
}

/* Arama Sonuçları */
.search-loading,
.search-error,
.search-no-results {
  padding: 20px;
  text-align: center;
  color: #666;
}

.search-loading i {
  margin-right: 8px;
}

.search-result-group {
  margin-bottom: 16px;
}

.search-result-title {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}

.search-result-item:hover {
  background: #f5f5f5;
}

.search-result-img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
}

.search-result-img-round {
  border-radius: 50%;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-name {
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-meta {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.search-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: #f8f8f8;
  color: #16df49;
  font-weight: 500;
  text-decoration: none;
  border-top: 1px solid #eee;
}

.search-view-all:hover {
  background: #f0f0f0;
}

/* Son Aramalar */
.search-recent-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.search-recent-item:hover {
  background: #f5f5f5;
}

.search-recent-item i:first-child {
  color: #999;
  width: 16px;
}

.search-recent-text {
  flex: 1;
  font-size: 14px;
  color: #333;
}

.search-recent-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  padding: 4px;
  opacity: 0;
  transition: opacity 0.2s;
}

.search-recent-item:hover .search-recent-remove {
  opacity: 1;
}

.search-recent-remove:hover {
  color: #ff4444;
}

/* Kategori item link */
.search-category-item {
  text-decoration: none;
  color: inherit;
}

/* Mobilde input zoom engellemek için */
#search-input {
    font-size: 16px; /* Minimum 16px olmalı */
}

/* Veya tüm inputlar için */
@media screen and (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}

/* Footer Payment Band */
.footer-payment-band {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.footer-payment-band .payment-logos {
  height: 32px;
  width: auto;
  max-width: 100%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-payment-band .payment-logos:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-payment-band {
    padding: 20px 16px;
  }
  
  .footer-payment-band .payment-logos {
    height: 24px;
  }
}

/* Mobilde footer social alanı - başlık üstte, ikonlar altta yan yana ortalı */
@media (max-width: 768px) {
  .footer-col.social {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-col.social h4 {
    margin-bottom: 12px;
  }
  
  .footer-col.social .social-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
}

.event-description ul {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}

.event-description ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 2px;
  line-height: 1.6;
}

.event-description ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background-color: #1db954;
  border-radius: 50%;
}

/* Masaüstü - mobil elementleri gizle */
.desc-short.mobile-only,
.event-description-toggle.mobile-only {
  display: none;
}

/* Mobil - Promo code taşma düzeltmesi ve event-description kısaltma */
@media (max-width: 768px) {
  .promo-code-section {
    flex-wrap: wrap;
  }

  .promo-input {
    flex: 1 1 0;
    min-width: 0;
  }

  .promo-apply-btn {
    flex-shrink: 0;
    padding: 8px 12px;
    font-size: 13px;
  }

  .ticket-card label {
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 24px;
  }

  .ticket-name {
    flex: 1 1 100%;
    font-size: 13px;
  }

  .ticket-quantity {
    gap: 8px;
  }

  .ticket-price {
    padding: 8px 12px;
    font-size: 13px;
    min-width: 70px;
  }

  .desc-short.mobile-only {
    display: block !important;
  }

  .desc-short.mobile-only.mobile-hidden {
    display: none !important;
  }

  .desc-full.mobile-hidden {
    display: none !important;
  }

  .desc-full:not(.mobile-hidden) {
    display: block !important;
  }

  .event-description-toggle.mobile-only {
    display: block;
    margin-left: auto;
    margin-top: 8px;
    background-color: #1db954;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    padding: 6px 16px;
  }

  .event-description-toggle.mobile-only:hover {
    background-color: #17a34a;
  }

  .event-description-toggle:hover {
    background-color: #17a34a;
  }
}

/* ============================================
   MOBİL - Profil Düzenle Sidebar/Content Yükseklik Eşitleme
   ============================================ */
@media (max-width: 768px) {
    .profil-page .profil-container {
        min-height: calc(100vh - 160px) !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .profil-page .profil-content {
        flex: 1 1 auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .profil-page .profile-edit-section {
        flex: 1 1 auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .profil-page .profile-edit-form {
        flex: 1 1 auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .profil-page .welcome-banner + .profile-edit-section,
    .profil-page .profile-edit-section {
        flex-grow: 1 !important;
    }
}