/* === CSS Variables === */
:root {
  --bg: #1e293b;
  --bg-secondary: #1a2332;
  --card: rgba(30, 41, 59, 0.92);
  --card-hover: rgba(51, 65, 85, 0.95);
  --border: rgba(71, 85, 105, 0.6);
  --border-light: rgba(100, 116, 139, 0.7);
  --muted: #cbd5e1;
  --text: #f8fafc;
  --text-secondary: #e2e8f0;
  --accent: #38bdf8;
  --accent-hover: #7dd3fc;
  --accent-text: #0c4a6e;
  --ok: #4ade80;
  --ok-bg: rgba(74, 222, 128, 0.15);
  --bad: #f87171;
  --bad-bg: rgba(248, 113, 113, 0.15);
  --warning: #fbbf24;
  --shadow: rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
  --glass-bg: rgba(30, 41, 59, 0.92);
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background-color: #0f172a;
  background-image: url('/back.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  min-height: 100vh;
  color: var(--text);
  line-height: 1.6;
}

/* Background overlay for better readability */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  z-index: -1;
  pointer-events: none;
}

/* === Layout === */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
}

@media (max-width: 600px) {
  .container {
    padding: 16px;
  }
}

/* === Header === */
.header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 12px 0 32px;
}

/* === Site Header === */
.site-header {
  text-align: center;
  margin: 20px 0 32px;
  padding: 20px;
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.site-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 8px;
}

.site-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 600px) {
  .site-title {
    font-size: 32px;
  }
  .site-subtitle {
    font-size: 16px;
  }
}

/* === Main Grid Layout === */
.main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .main-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: stretch;
  }
}

/* === Left Column === */
.left-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.left-column .telegram-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.left-column .telegram-section .telegram-widget-container {
  flex: 1;
}

/* === Cards Row (Telegram + Map aligned) === */
.cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

@media (min-width: 900px) {
  .cards-row {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.cards-row .card {
  height: 100%;
}

.cards-row .telegram-section {
  margin-top: 0;
}

/* === Hero Section === */
.hero {
  position: relative;
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 70vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 8px 32px var(--shadow);
}

.hero-gallery:hover {
  border-color: var(--accent);
}

.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-secondary);
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
  pointer-events: none;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  margin: 0 0 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin: 0;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
  .hero-gallery {
    aspect-ratio: 4 / 3;
    max-height: 600px;
  }
}

@media (max-width: 600px) {
  .hero-gallery {
    aspect-ratio: 3 / 4;
    max-height: 500px;
  }

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

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

/* === Gallery Section === */
.gallery-section {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-gallery {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 8px 32px var(--shadow);
  background: var(--bg-secondary);
  cursor: zoom-in;
}

.page-gallery:hover {
  border-color: var(--accent);
}

.page-gallery:hover .gallery-btn {
  opacity: 1;
}

.gallery-fallback {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-secondary);
}

.gallery-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.gallery-slide {
  min-width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-secondary);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s;
  z-index: 2;
}

.page-gallery:hover .gallery-btn {
  opacity: 1;
}

.gallery-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 12px;
  border-radius: 20px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}

.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.gallery-dot.active {
  background: white;
  transform: scale(1.2);
}

@media (min-width: 900px) {
  .page-gallery {
    height: 650px;
  }
}

@media (max-width: 600px) {
  .page-gallery {
    height: 450px;
  }

  .gallery-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
    opacity: 1;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-dots {
    bottom: 12px;
    gap: 6px;
    padding: 6px 10px;
  }

  .gallery-dot {
    width: 8px;
    height: 8px;
  }
}

/* === Typography === */
.h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px;
}

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

p {
  margin: 0;
}

label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* === Cards === */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 40px var(--shadow);
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-light);
}

/* === Buttons === */
.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn:hover {
  background: var(--card);
  border-color: var(--border-light);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent) 0%, #0ea5e9 100%);
  color: #fff;
  border: none;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.3);
}

.btn.primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, #38bdf8 100%);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
}

.btn.primary:disabled {
  background: var(--border);
  color: var(--muted);
  box-shadow: none;
}

/* === Badge === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--accent-hover);
  font-size: 13px;
  font-weight: 600;
}

.badge.warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--warning);
}

/* === Form Fields === */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.input, textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
}

.input:hover, textarea:hover {
  border-color: var(--border-light);
}

.input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.input::placeholder, textarea::placeholder {
  color: var(--muted);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

/* === Phone Input Group === */
.phone-input-group {
  display: flex;
  gap: 8px;
}

.phone-input-group .country-select {
  width: 110px;
  flex-shrink: 0;
  padding: 12px 8px;
  font-size: 14px;
}

.phone-input-group .phone-number {
  flex: 1;
  min-width: 0;
}

@media (max-width: 600px) {
  .phone-input-group {
    flex-direction: column;
    gap: 8px;
  }
  .phone-input-group .country-select {
    width: 100%;
  }
}

/* === Row Layout === */
.row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.row .field {
  flex: 1;
  min-width: 140px;
}

/* === Key-Value Grid === */
.kv {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
}

.kv div {
  padding: 6px 0;
}

.kv div:nth-child(odd) {
  color: var(--muted);
  font-size: 14px;
}

.kv div:nth-child(even) {
  color: var(--text);
  font-weight: 500;
}

/* === Status Colors === */
.success {
  color: var(--ok);
}

.error {
  color: var(--bad);
}

/* === Table === */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th, .table td {
  border-bottom: 1px solid var(--border);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

.table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table tr:hover td {
  background: rgba(56, 189, 248, 0.03);
}

.table td:last-child {
  white-space: nowrap;
}

/* === Map === */
.map {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: var(--radius);
  margin-top: 12px;
  background: var(--bg);
}

/* === Dialog === */
dialog {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 90vw;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

dialog .card {
  animation: dialogIn 0.2s ease;
  background: #475569;
  border: 1px solid #64748b;
}

dialog .card h3 {
  color: var(--text);
  font-size: 20px;
  margin-bottom: 20px;
}

dialog .card label {
  color: var(--text);
  font-weight: 500;
}

dialog .card .input,
dialog .card textarea {
  background: #334155;
  border-color: #64748b;
  color: var(--text);
}

dialog .card .input::placeholder,
dialog .card textarea::placeholder {
  color: #94a3b8;
}

dialog .card .input:focus,
dialog .card textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

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

/* === Footer === */
.footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

/* === Telegram Widget === */
.telegram-section {
  margin-top: 24px;
}

.telegram-section h2 {
  margin-bottom: 12px;
}

.telegram-widget-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  padding: 16px;
  overflow: hidden;
}

.telegram-widget-container iframe {
  max-width: 100% !important;
  border-radius: 8px;
}

.telegram-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

/* === Utilities === */
.tokenBox {
  display: flex;
  gap: 8px;
}

.tokenBox input {
  flex: 1;
}

/* === Scrollbar === */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-light);
}

/* === Focus Visible === */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* === No Events Message === */
.no-events-message {
  text-align: center;
  padding: 32px 20px;
  margin-top: 20px;
  background: rgba(56, 189, 248, 0.05);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
}

.no-events-message .no-events-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.no-events-message h3 {
  color: var(--text);
  margin: 0 0 8px;
  font-size: 18px;
}

.no-events-message p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* === Selection === */
::selection {
  background: rgba(56, 189, 248, 0.3);
  color: var(--text);
}

/* === Gallery === */
.gallery-container {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 8px 32px var(--shadow);
  flex-shrink: 0;
}

.gallery-container:hover {
  border-color: var(--accent);
}

.gallery-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.gallery-slide {
  min-width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-secondary);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s;
  z-index: 2;
}

.hero-gallery:hover .gallery-btn {
  opacity: 1;
}

.gallery-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.gallery-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.gallery-dot.active {
  background: white;
  transform: scale(1.2);
}

@media (max-width: 600px) {
  .gallery-container {
    width: 140px;
    height: 140px;
  }

  .gallery-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
    opacity: 1;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-dots {
    bottom: 60px;
    gap: 8px;
  }

  .gallery-dot {
    width: 10px;
    height: 10px;
  }
}

/* === Info Column === */
.info-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  max-width: 100%;
}

.info-column .card {
  margin-top: 0;
  overflow: hidden;
  word-wrap: break-word;
}

/* === Large Button === */
.btn-large {
  padding: 16px 28px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* === Info Cards (What to bring, What's included) === */
.info-cards-section h2 {
  margin-bottom: 20px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--border-light);
  background: var(--card-hover);
}

.info-card.included {
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.2);
}

.info-card.included:hover {
  background: rgba(74, 222, 128, 0.12);
  border-color: rgba(74, 222, 128, 0.3);
}

.info-card-icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* === Safety Section === */
.safety-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.safety-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.safety-item:hover {
  border-color: var(--border-light);
}

.safety-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.safety-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.safety-item p {
  font-size: 14px;
  line-height: 1.5;
}

/* === FAQ Section === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-light);
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-item summary {
  padding: 16px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--accent);
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item p {
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  animation: faqSlideIn 0.3s ease;
}

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

/* === FAQ Icon === */
.faq-icon {
  margin-right: 10px;
  font-size: 18px;
}

/* === Sticky Book Button === */
.sticky-book-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: var(--glass-bg);
  border-top: 1px solid var(--border);
  z-index: 100;
  animation: slideUp 0.3s ease;
}

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

.sticky-book-btn.visible {
  display: block;
}

@media (max-width: 900px) {
  .sticky-book-btn.visible {
    display: block;
  }
}

@media (min-width: 901px) {
  .sticky-book-btn {
    display: none !important;
  }
}

/* Add padding to footer when sticky button is visible on mobile */
@media (max-width: 900px) {
  .footer {
    padding-bottom: 100px;
  }
}

/* === Remove gallery counter - keep thumbnails */
.gallery-thumbnails {
  display: none;
}

/* === Event Info with Icons === */
.event-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.event-info-item:hover {
  border-color: var(--border-light);
}

.event-info-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.event-info-content {
  flex: 1;
  min-width: 0;
}

.event-info-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.event-info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  word-wrap: break-word;
}

/* === Location Address === */
.location-address {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 15px;
}

/* === Seats Hint === */
.seats-hint {
  font-size: 14px;
  font-weight: 600;
  color: var(--ok);
  display: flex;
  align-items: center;
  gap: 6px;
}

.seats-hint.warning {
  color: var(--warning);
}

.seats-hint.urgent {
  color: var(--bad);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* === Scroll to Top Button === */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #0ea5e9 100%);
  color: #fff;
  border: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.3);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, #38bdf8 100%);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
  transform: translateY(-2px);
}

.scroll-to-top:active {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .scroll-to-top {
    bottom: 90px; /* Above sticky book button */
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* === Weather Widget === */
.weather-section {
  margin-top: 0;
}

.weather-location {
  font-size: 14px;
  margin-bottom: 16px;
}

.weather-container {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.weather-day {
  flex: 1;
  min-width: 0;
  max-width: 120px;
  padding: 14px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.weather-day:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.weather-day.today {
  border-color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
}

.weather-day-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.weather-day.today .weather-day-name {
  color: var(--accent);
}

.weather-date {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}

.weather-icon {
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 1;
}

.weather-temp {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.weather-temp-range {
  font-size: 12px;
  color: var(--muted);
}

.weather-wind {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.weather-wind-icon {
  font-size: 12px;
}

.weather-loading {
  padding: 40px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.weather-error {
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 600px) {
  .weather-container {
    gap: 8px;
  }

  .weather-day {
    padding: 12px 8px;
  }

  .weather-icon {
    font-size: 28px;
  }

  .weather-temp {
    font-size: 16px;
  }

  .weather-day-name {
    font-size: 12px;
  }
}
