:root {
  --bg: #07110d;
  --card: rgba(255, 255, 255, 0.08);
  --text: #f4fff8;
  --muted: #b7c8be;
  --accent: #74f0a7;
  --accent-2: #f8d477;
  --border: rgba(255, 255, 255, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(116, 240, 167, 0.20), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(248, 212, 119, 0.16), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 68px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 13, 0.74);
  border-bottom: 1px solid var(--border);
}

.brand { font-weight: 900; font-size: 1.15rem; letter-spacing: -0.03em; }
.brand-sub { color: var(--accent); font-size: 0.78rem; font-weight: 700; }

.mini-link {
  padding: 10px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
}

main {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 0 32px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.73rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.75rem, 12vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.subtitle {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 4vw, 1.35rem);
  color: var(--muted);
  line-height: 1.5;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 52px;
  border: 0;
  border-radius: 18px;
  padding: 15px 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  cursor: pointer;
  font-size: 1rem;
}

.primary { background: linear-gradient(135deg, var(--accent), #d9ff86); color: #07110d; }
.secondary { background: var(--card); border: 1px solid var(--border); color: var(--text); }
.full { width: 100%; }

.stats {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.stats div, .info-panel, .video-box, .cta-box {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 24px;
}

.stats strong { display: block; font-size: 1rem; }
.stats span { display: block; color: var(--muted); margin-top: 4px; }

.section { padding: 42px 0; }
.section-head h2, .split h2, .cta-box h2 {
  margin: 0;
  font-size: clamp(1.8rem, 7vw, 3.2rem);
  letter-spacing: -0.06em;
}

.soft { color: var(--muted); line-height: 1.6; }

.cards {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.20);
}

.card-photo {
  min-height: 180px;
  display: grid;
  place-items: end start;
  padding: 16px;
  font-size: 3rem;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45), transparent);
}

.card-photo span {
  position: relative;
  z-index: 1;
}

.card-body { padding: 18px; }

.tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(116, 240, 167, 0.14);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
}

.card h3 { margin: 12px 0 8px; font-size: 1.25rem; letter-spacing: -0.03em; }
.card p { color: var(--muted); line-height: 1.5; margin: 0; }

.meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  margin-top: 16px;
  font-size: 0.88rem;
}

.watch-line {
  margin-top: 14px;
  color: var(--accent-2);
  font-weight: 800;
  font-size: .92rem;
}

.planner { margin-bottom: 36px; }

.planner-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

select {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 0 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.28);
  font-size: 1rem;
}

.result {
  margin-top: 18px;
  padding: 18px;
  background: rgba(116, 240, 167, 0.10);
  border: 1px solid rgba(116, 240, 167, 0.28);
  border-radius: 28px;
}

.result h3 { margin-top: 0; }

.day {
  margin-top: 14px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.07);
}

.day strong { display: block; margin-bottom: 8px; }
.destination-line { color: var(--muted); margin: 8px 0; line-height: 1.45; }
.destination-line a { color: var(--accent-2); font-weight: 800; }
.hidden { display: none; }

.detail-hero { padding: 18px 0 0; }

.detail-cover {
  min-height: 62vh;
  border-radius: 32px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border: 1px solid var(--border);
}

.detail-cover-overlay {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.12));
}

.detail-grid {
  display: grid;
  gap: 16px;
}

.video-box {
  overflow: hidden;
}

.video-box iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 680px;
  border: 0;
  border-radius: 22px;
  background: #000;
}

.video-label {
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 900;
}

.video-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(0,0,0,.25);
  border: 1px dashed rgba(255,255,255,.25);
}

.video-placeholder span { color: var(--muted); }

.info-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.quick-facts {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.quick-facts div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}

.quick-facts strong { display: block; }
.quick-facts span { display: block; color: var(--muted); margin-top: 5px; }

.split {
  display: grid;
  gap: 20px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chips span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(116,240,167,.12);
  color: var(--accent);
  font-weight: 800;
}

.tips p {
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.5;
}

.gallery {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

footer {
  display: grid;
  gap: 6px;
  padding: 30px 18px 42px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
}

footer strong { color: var(--text); }

@media (min-width: 720px) {
  .hero-actions { grid-template-columns: 200px 200px; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .planner-form { grid-template-columns: repeat(2, 1fr); }
  .planner-form button { grid-column: 1 / -1; }
  .detail-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
  .split { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}


/* BONUS_APK_CSS_START */
.bonus-apps {
  padding-top: 30px;
}

.bonus-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.bonus-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.bonus-preview {
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(116, 240, 167, 0.16), transparent 24rem),
    rgba(0, 0, 0, 0.16);
}

.bonus-preview img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.24);
}

.bonus-content {
  padding: 20px;
}

.bonus-content h3 {
  margin: 12px 0 8px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.bonus-content p {
  color: var(--muted);
  line-height: 1.55;
}

.bonus-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}

.bonus-meta span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.download-note {
  margin: 12px 0 0;
  font-size: .82rem;
}

.download-note code {
  color: var(--accent-2);
}

@media (min-width: 720px) {
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* BONUS_APK_CSS_END */


/* ADMIN_PANEL_V05_CSS_START */
.admin-shell{min-height:100vh;display:grid;place-items:center;padding:24px}.admin-card{width:min(560px,100%);background:var(--card);border:1px solid var(--border);border-radius:30px;padding:24px;box-shadow:0 18px 60px rgba(0,0,0,.25)}.admin-login-card h1{font-size:clamp(2.4rem,10vw,4.2rem)}.admin-form,.admin-editor-form{display:grid;gap:14px;margin-top:18px}.admin-form input,.admin-editor-form input,.admin-editor-form textarea{width:100%;border-radius:16px;border:1px solid var(--border);padding:14px;color:var(--text);background:rgba(0,0,0,.28);font-size:1rem}.admin-editor-form textarea{resize:vertical;min-height:92px}.admin-grid{display:grid;gap:14px}.admin-top-actions{display:flex;gap:8px;align-items:center}.admin-section-head{display:grid;gap:18px}.admin-table-wrap{overflow-x:auto;margin-top:20px;border:1px solid var(--border);border-radius:24px;background:var(--card)}.admin-table{width:100%;min-width:820px;border-collapse:collapse}.admin-table th,.admin-table td{padding:14px;border-bottom:1px solid var(--border);text-align:left;vertical-align:middle}.admin-table th{color:var(--accent);font-size:.82rem;text-transform:uppercase;letter-spacing:.08em}.admin-table td span{display:block;color:var(--muted);font-size:.82rem;margin-top:4px}.admin-alert,.admin-success{margin:18px 0;padding:14px;border-radius:18px;border:1px solid var(--border)}.admin-alert{background:rgba(255,80,80,.12);color:#ffd0d0}.admin-success{background:rgba(116,240,167,.14);color:var(--accent)}.admin-upload-box{margin-top:28px;padding:18px;border-radius:24px;border:1px solid var(--border);background:var(--card)}.admin-upload-box h3{margin-top:0}.admin-code{margin-top:14px;padding:14px;border-radius:16px;background:rgba(0,0,0,.3);color:var(--accent-2);white-space:pre-wrap;overflow-x:auto}@media (min-width:720px){.admin-grid{grid-template-columns:repeat(2,1fr)}.admin-section-head{grid-template-columns:1fr auto;align-items:end}}
/* ADMIN_PANEL_V05_CSS_END */


/* ADMIN_POLISH_MAPS_V051_START */
.admin-preview-grid {
  display: grid;
  gap: 18px;
  margin: 20px 0;
}

.admin-live-preview {
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--card);
}

.admin-live-preview h3 {
  margin: 0 0 12px;
}

.admin-live-preview img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  display: block;
}

.admin-empty-preview {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px dashed var(--border);
  border-radius: 20px;
}

.admin-quick-links {
  display: grid;
  gap: 10px;
}

@media (min-width: 800px) {
  .admin-preview-grid {
    grid-template-columns: 1.4fr .8fr;
  }
}
/* ADMIN_POLISH_MAPS_V051_END */


/* BILINGUAL_ARTICLE_V054_START */

.admin-bilingual-grid{display:grid;gap:14px}

.article-title-row{display:grid;gap:14px;align-items:start}

.language-tabs{display:flex;flex-wrap:wrap;gap:8px}

.lang-btn{border:1px solid var(--border);border-radius:999px;padding:10px 14px;color:var(--text);background:rgba(255,255,255,.06);cursor:pointer;font-weight:800}

.lang-btn.active{color:#07110d;background:var(--accent)}

.article-lang{display:none}

.article-lang.active{display:grid}

@media (min-width:900px){.admin-bilingual-grid{grid-template-columns:repeat(2,1fr)}.article-title-row{grid-template-columns:1fr auto}}

/* BILINGUAL_ARTICLE_V054_END */



/* YOUTUBE_POLISH_V055_START */
.admin-youtube-preview {
  margin-top: 28px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, .08), transparent 24rem),
    var(--card);
}

.admin-youtube-preview h3 {
  margin-top: 0;
}

.admin-youtube-preview iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 620px;
  border: 0;
  border-radius: 22px;
  background: rgba(0,0,0,.28);
}

@media (min-width: 760px) {
  .admin-youtube-preview iframe {
    max-width: 360px;
  }
}
/* YOUTUBE_POLISH_V055_END */


/* ADMIN_LOGIN_POLISH_START */
.admin-login-shell {
  background:
    radial-gradient(circle at top left, rgba(116, 240, 167, .16), transparent 28rem),
    radial-gradient(circle at bottom right, rgba(201, 255, 128, .10), transparent 24rem),
    var(--bg);
}

.admin-login-polished {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 26px;
}

.admin-login-polished::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at top right, rgba(201, 255, 128, .22), transparent 16rem),
    radial-gradient(circle at bottom left, rgba(116, 240, 167, .14), transparent 18rem);
  pointer-events: none;
}

.admin-login-polished > * {
  position: relative;
  z-index: 1;
}

.admin-login-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.admin-login-logo {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-weight: 1000;
  font-size: 1.4rem;
  color: #07110d;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 28px rgba(116, 240, 167, .22);
}

.admin-login-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.admin-login-card h1 {
  font-size: clamp(2.3rem, 8vw, 4rem);
  line-height: .95;
  margin-bottom: 16px;
  letter-spacing: -0.06em;
}

.admin-login-form {
  margin-top: 24px;
}

.admin-login-form label {
  display: grid;
  gap: 9px;
  font-weight: 800;
  color: var(--text);
}

.admin-login-form input {
  min-height: 56px;
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  color: #0b1510;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}

.admin-login-form input:focus {
  outline: 3px solid rgba(116, 240, 167, .24);
  border-color: var(--accent);
}

.admin-login-button {
  min-height: 56px;
  border-radius: 20px;
  font-size: 1rem;
}

.admin-login-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: .86rem;
}

@media (max-width: 520px) {
  .admin-login-polished {
    padding: 22px;
    border-radius: 28px;
  }

  .admin-login-logo {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }
}
/* ADMIN_LOGIN_POLISH_END */


/* PROD_SAFETY_V057_START */
.video-dev-box {
  min-height: 320px;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  padding: 22px;
  border-radius: 24px;
  border: 1px dashed var(--border);
  background:
    radial-gradient(circle at center, rgba(116, 240, 167, .10), transparent 22rem),
    rgba(0, 0, 0, .22);
}

.video-dev-box strong {
  color: var(--text);
  font-size: 1.05rem;
}

.video-dev-box span {
  color: var(--muted);
  max-width: 280px;
  line-height: 1.55;
}
/* PROD_SAFETY_V057_END */

/* APK_PREVIEW_IMAGE_START */
.apk-preview-img {
  width: 100%;
  max-width: 230px;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
}
/* APK_PREVIEW_IMAGE_END */
