* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #ff6b35;
  --primary-dark: #e85a2a;
  --dark: #1a1a1a;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --border: #e5e7eb;
  --white: #fff;
  --success: #10b981;
  --error: #ef4444;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--light-gray);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all .3s;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-link {
  position: relative;
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* VIP One Cik butonu ozel stili */
.nav-link-vip {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  color: #1a1a1a !important;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.nav-link-vip:hover {
  background: linear-gradient(135deg, #ffb347 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
  color: #1a1a1a !important;
}

.nav-link-vip.active {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
  color: white !important;
}

@media (max-width: 768px) {
  .nav-link-vip {
    width: auto;
    margin: 0.5rem 0;
  }
}
.user-menu-container {
  position: relative;
}

.user-profile-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 24px;
  transition: all 0.2s;
  background: var(--light-gray);
  border: none;
  cursor: pointer;
}

.user-profile-btn:hover {
  background: rgba(255, 107, 53, 0.1);
}

.header-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.header-username {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9375rem;
}

.dropdown-arrow {
  transition: transform 0.2s;
  stroke-width: 2;
}

.user-profile-btn:hover .dropdown-arrow {
  transform: translateY(2px);
}

.user-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 1000;
}

.user-dropdown.show {
  display: block;
  animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}

.user-dropdown-item:hover {
  background: var(--light-gray);
}

.dropdown-icon {
  font-size: 1.125rem;
  width: 24px;
  text-align: center;
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

.logout-item {
  color: var(--error);
}

.logout-item:hover {
  background: rgba(239, 68, 68, 0.1);
}

@media (max-width: 768px) {
  .header-container {
    padding: 0.75rem 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 101;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 100;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-link {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.125rem;
  }

  .notification-container {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .notification-bell {
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    font-size: 1.125rem;
  }

  .notification-dropdown {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: auto;
    width: auto;
    max-width: none;
  }

  .user-menu-container {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .user-profile-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 1rem 0;
    background: transparent;
    border-radius: 0;
  }

  .user-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin-top: 0.5rem;
  }

  body.menu-open {
    overflow: hidden;
  }
}

.notification-container {
  position: relative;
}
.notification-bell {
  background: 0 0;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  position: relative;
}
.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  min-width: 20px;
  max-width: fit-content;
  text-align: center;
  box-shadow: 0 2px 8px rgb(239 68 68 / 40%);
  animation: pulse 2s infinite;
}
.notification-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  width: 380px;
  max-width: calc(100vw - 2rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: .5rem;
  max-height: 400px;
  overflow-y: auto;
}
.notification-dropdown.show {
  display: block;
}
.notification-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.enable-push-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: .5rem 1rem;
  border-radius: 6px;
  font-size: .875rem;
  cursor: pointer;
}
.notification-list {
  padding: .5rem;
}
.notification-item {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  gap: .75rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.notification-item:hover {
  background: var(--light-gray);
}

.notification-item.unread {
  background: rgba(255, 107, 53, 0.05);
}
.notif-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--light-gray);
}
.notif-content {
  flex: 1;
}
.notif-time {
  font-size: .75rem;
  color: var(--gray);
}
.notification-empty {
  padding: 2rem;
  text-align: center;
  color: var(--gray);
}
.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.auth-container {
  max-width: 400px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}
.auth-header h1 {
  color: var(--primary);
  margin-bottom: .5rem;
}
.auth-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 2rem;
}
.tab-btn {
  flex: 1;
  padding: .75rem;
  background: var(--light-gray);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.tab-btn.active {
  background: var(--primary);
  color: var(--white);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea,
.form-input {
  width: 100%;
  padding: .75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-input:focus {
  outline: 0;
  border-color: var(--primary);
}
.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--gray);
}
.btn {
  padding: .75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
}
.btn-secondary {
  background: var(--light-gray);
  color: var(--dark);
}
.btn-sm {
  padding: .5rem 1rem;
  font-size: .875rem;
}
.btn-primary-outline {
  background: 0 0;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-suggestion {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  color: #2563eb;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-suggestion:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.1) 100%);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

.btn-suggestion:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}
.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.alert-error {
  background: #fee2e2;
  color: var(--error);
}
.alert-success {
  background: #d1fae5;
  color: var(--success);
}
.feed {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.checkin-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.checkin-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.checkin-user-info {
  flex: 1;
}
.username {
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
}
.username:hover {
  color: var(--primary);
}
.checkin-location {
  color: var(--gray);
  font-size: .875rem;
}
.checkin-time {
  color: var(--gray);
  font-size: .875rem;
}
.checkin-photo {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.checkin-actions {
  display: flex;
  gap: 1rem;
}
.like-btn {
  background: 0 0;
  border: none;
  cursor: pointer;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.like-btn:hover,
.like-btn.liked {
  color: var(--primary);
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  padding: 2rem 0;
  align-items: center;
  justify-content: center;
}
.modal.show {
  display: flex;
}
.modal-content {
  background: var(--white);
  margin: 0 auto;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.close,
.close-modal {
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: var(--gray);
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
}
.profile-cover {
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.profile-header-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  margin: -80px auto 2rem;
  max-width: 900px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}
.profile-avatar-section {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.profile-avatar-large {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.profile-main-info {
  text-align: center;
}
.profile-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
  word-break: break-word;
  overflow-wrap: break-word;
}
.profile-username {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 1rem;
}
.profile-stats-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 1.75rem 1.25rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, #ff8c61 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
  filter: grayscale(0.2);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.15);
  filter: grayscale(0);
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, #ff8c61 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .profile-stats-cards {
    max-width: 100%;
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-icon {
    font-size: 2rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  /* Mobil görünümde "Yer Bildirimi", "Arkadaş", "Fotoğraf" yazılarını gizle */
  .stat-label {
    display: none;
  }
}

.profile-section-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.photo-gallery-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.gallery-item-modern {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--light-gray);
  transition: all .3s;
}
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.checkins-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.checkin-card-modern {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s;
}
.checkin-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
}
.checkin-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.checkin-content {
  padding: 1.25rem;
}
.checkin-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}
.image-modal.show {
  display: flex;
}
.image-modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  z-index: 2001;
}
.image-modal-content {
  width: 90%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-modal-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.search-box {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.search-box form {
  display: flex;
  gap: .5rem;
}
.success-message {
  padding: .75rem;
  background: #d1fae5;
  color: var(--success);
  border-radius: 8px;
  margin-bottom: 1rem;
}
.error-message {
  padding: .75rem;
  background: #fee2e2;
  color: var(--error);
  border-radius: 8px;
  margin-bottom: 1rem;
}
.venue-detail {
  min-height: 100vh;
  background: var(--light-gray);
}
.venue-hero-parallax {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.venue-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.venue-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.venue-hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  overflow: hidden;
}
.venue-hero-text {
  color: var(--white);
}
.venue-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  word-break: break-word;
  overflow-wrap: break-word;
}
.venue-body {
  max-width: 1200px;
  margin: -80px auto 2rem;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.venue-stats-modern {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}
.venue-creator-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(232, 90, 42, 0.05) 100%);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.creator-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.creator-avatar-large {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.creator-label {
  font-size: .875rem;
  color: var(--gray);
  margin-bottom: .25rem;
}
.creator-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  word-break: break-word;
  overflow-wrap: break-word;
}
.messages-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: calc(100vh - 200px);
  min-height: 500px;
}
.conversations-list {
  border-right: 1px solid var(--border);
  overflow-y: auto;
  background: var(--light-gray);
}
.conversation-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  color: var(--dark);
  transition: background .2s;
  background: var(--white);
}
.conversation-item:hover {
  background: var(--light-gray);
}
.chat-area {
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.messages-list {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--light-gray);
}
.message {
  display: flex;
  flex-direction: column;
  max-width: 70%;
}
.message.sent {
  align-self: flex-end;
}
.message.received {
  align-self: flex-start;
}
.message-content {
  padding: .75rem 1rem;
  border-radius: 12px;
}
.message.sent .message-content {
  background: var(--primary);
  color: var(--white);
}
.message.received .message-content {
  background: var(--white);
  border: 1px solid var(--border);
}
.message-form {
  display: flex;
  gap: .75rem;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}
.message-form input[type="text"] {
  flex: 1;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 24px;
}
.venue-category-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.venue-location-hero {
  font-size: 1.125rem;
  opacity: 0.9;
}

.venue-action-bar {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 90;
  transform: translateY(-100%);
  transition: transform 0.3s;
}

.venue-action-bar.visible {
  transform: translateY(0);
}

.venue-action-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.venue-quick-info h2 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.venue-quick-info p {
  font-size: 0.875rem;
  color: var(--gray);
}

.venue-actions {
  display: flex;
  gap: 0.75rem;
}

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

.stat-icon-modern {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-value-modern {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-label-modern {
  font-size: 0.875rem;
  color: var(--gray);
}

.creator-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-danger {
  background: var(--error);
  color: var(--white);
}

.btn-danger:hover {
  background: #dc2626;
}

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

/* Pull-to-refresh styles for mobile */
.pull-refresh-indicator {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 9999;
  transform: translateY(-100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pull-refresh-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--light-gray);
  border-top-color: var(--primary);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.pull-refresh-indicator.ready .pull-refresh-spinner {
  transform: rotate(180deg);
}

.pull-refresh-indicator.refreshing .pull-refresh-spinner {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.pull-refresh-text {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 600;
}

.pull-refresh-indicator.ready .pull-refresh-text {
  color: var(--primary);
}

@media (min-width: 769px) {
  .pull-refresh-indicator {
    display: none;
  }
}
