* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #08121f, #0d1625, #111827);
  color: #fff;
  min-height: 100vh;
  position: relative;
}

.page-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(120, 119, 198, 0.18), transparent 30%),
    radial-gradient(circle at top left, rgba(0, 183, 255, 0.10), transparent 25%);
  pointer-events: none;
  z-index: 0;
}

.jelajahi-header {
  width: 100%;
  padding: 20px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(12px);
  background: rgba(4, 10, 20, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  font-size: 1.7rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.logo span {
  color: #a78bfa;
}

.nav-menu {
  display: flex;
  gap: 22px;
}

.nav-menu a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.96rem;
  transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
}

.search-toggle {
  background: rgba(255,255,255,0.08);
  border: none;
  color: white;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
}

.hero-jelajahi {
  position: relative;
  z-index: 1;
  padding: 90px 7% 70px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.15);
  color: #d8c8ff;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(167, 139, 250, 0.22);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.3rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-desc {
  max-width: 760px;
  margin: 0 auto 30px;
  color: #d6d6d6;
  font-size: 1rem;
  line-height: 1.8;
}

.hero-search-box {
  max-width: 760px;
  margin: 0 auto 22px;
  display: flex;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-search-box input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  outline: none;
  border-radius: 12px;
  font-size: 0.96rem;
  background: rgba(255,255,255,0.08);
  color: white;
}

.hero-search-box input::placeholder {
  color: #cfcfcf;
}

.hero-search-box button,
.comment-form button {
  padding: 14px 22px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: white;
  cursor: pointer;
  font-weight: 600;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-tags span,
.country-filter-wrap button {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #ddd;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-tags span:hover,
.country-filter-wrap button:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 35px;
}

.mini-title {
  color: #b8a4ff;
  font-size: 0.92rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section-title-wrap h2 {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
}

.country-filter-section,
.trending-section,
.featured-video-section,
.video-section,
.favorites-section,
.stories-section,
.comments-section {
  position: relative;
  z-index: 1;
  padding: 40px 7% 80px;
}

.country-filter-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.country-filter-wrap button {
  border: none;
  font-family: inherit;
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trending-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.trending-card:hover {
  transform: translateY(-6px);
}

.trending-rank {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.14);
  color: #d8c8ff;
}

.trending-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.trending-card p {
  color: #d5d5d5;
  line-height: 1.7;
}

.featured-video-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.featured-video-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.featured-video-frame iframe,
.video-frame iframe,
.modal-video-frame iframe {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.featured-info h3 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  margin: 10px 0 12px;
}

.featured-location {
  color: #d8c8ff;
}

.featured-info p {
  color: #d4d4d4;
  line-height: 1.8;
}

.interaction-bar {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.interaction-bar button,
.card-actions button {
  border: none;
  cursor: pointer;
  border-radius: 12px;
  padding: 12px 16px;
  transition: 0.3s;
}

.like-btn,
.card-actions button:first-child {
  background: rgba(255,255,255,0.08);
  color: white;
}

.comment-btn,
.save-btn,
.card-actions button:nth-child(2),
.card-actions button:nth-child(3) {
  background: rgba(167, 139, 250, 0.16);
  color: white;
}

.interaction-bar button:hover,
.card-actions button:hover,
.comment-form button:hover {
  transform: translateY(-2px);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: rgba(255,255,255,0.05);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.35s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.video-card:hover {
  transform: translateY(-6px);
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-info {
  padding: 18px;
}

.video-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.video-info p {
  color: #d5d5d5;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.card-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.card-meta span {
  background: rgba(255,255,255,0.07);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  color: #e8e8e8;
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.favorite-box {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}

.favorite-note {
  color: #d6d6d6;
  margin-bottom: 14px;
}

#favoriteList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#favoriteList li {
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  color: #fff;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.story-box {
  background: rgba(255,255,255,0.05);
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
}

.story-box h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.story-box p {
  color: #d5d5d5;
  line-height: 1.8;
}

.comment-form {
  max-width: 760px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.06);
  color: white;
  outline: none;
}

.comment-form textarea {
  min-height: 130px;
  resize: vertical;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: #cfcfcf;
}

.comment-form button {
  width: fit-content;
}

.comment-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comment-item {
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

.comment-item strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.comment-item p {
  color: #d7d7d7;
  line-height: 1.7;
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  width: 100%;
  max-width: 900px;
  background: #0f172a;
  border-radius: 24px;
  padding: 22px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}

.video-modal-content h3 {
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
}

.modal-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.08);
  color: white;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
}

.jelajahi-footer {
  text-align: center;
  padding: 25px 7%;
  color: #bdbdbd;
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
}

.hidden {
  display: none !important;
}

@media (max-width: 992px) {

  .featured-video-card,
  .video-grid,
  .stories-grid,
  .trending-grid
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

}
    grid-template-columns: 1fr 1fr;
  }

  .featured-video-card {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-search-box {
    flex-direction: column;
  }

  .video-grid,
  .stories-grid,
  .trending-grid {
    grid-template-columns: 1fr;
  }

  .section-title-wrap h2 {
    font-size: 1.8rem;
  }
  .world-map-section{

padding:80px 7%;
text-align:center;

}
.world-map-section {
  padding: 100px 7% 80px;
  text-align: center;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 70px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.world-map {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
  opacity: 0.9;
}
.map-point {
  position: absolute;
  border: none;
  font-size: 22px;
  cursor: pointer;
  background: none;
  z-index: 5;
}
.nav-search{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
  padding: 10px 16px;
  width: 340px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
}

.search-icon{
  font-size: 16px;
  opacity: 0.85;
}

.nav-search input{
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 14px;
  font-family: inherit;
}

.nav-search input::placeholder{
  color: rgba(255,255,255,0.65);
}
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
}

.logo-text span {
  color: #a78bfa;
}
img {
  max-width: 100%;
  height: auto;
}
.hero-jelajahi img {
  display: none !important;
}

body > img {
  display: none !important;
}
.logo-img {
  width: 40px !important;
  height: 40px !important;
  position: relative;
  z-index: 10;
}