/* main.css */

/* Reset tweaks or overrides */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* Hero section */
.hero {
  background: url('../images/bg2.png') no-repeat center / cover;
  padding: 60px 0;
  color: #fff;
}

/* Widget styling */
.widget {
  background: #fff;
  border: 1px solid #e6e6e6;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: .25rem;
}

/* Ad slots */
.adsbygoogle {
  display: block;
  text-align: center;
  margin: 2rem 0;
}
.map-container {
  width: 90vw;
  max-width: 800px;
}

#world-map {
  width: 100%;
  height: auto;
}

/* default country fill */
#world-map path {
  fill: #eee;
  stroke: #aaa;
  stroke-width: 0.5;
  cursor: pointer;
  transition: fill 0.2s;
}

/* visited countries get highlighted */
#world-map path.visited {
  fill: #4caf50;
}

.zoom-controls {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.zoom-controls button {
  width: 2rem;
  height: 2rem;
  font-size: 1.25rem;
  cursor: pointer;
}
/* styles.css (append at bottom) */
.map-container {
  touch-action: none;          /* prevent scrolling on touch devices */
}

#world-map {
  cursor: grab;                /* show grab cursor */
  user-select: none;
}
#world-map.dragging {
  cursor: grabbing;            /* while dragging */
}
/* a) Fade in + float */
.banner-animator .eg-affiliate-banners {
  opacity: 0;
  animation: fadeSlideIn 1s ease-out forwards,
             floatUpDown 4s ease-in-out 1s infinite;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* b) Pulsing border (optional) */
.banner-animator .eg-affiliate-banners {
  position: relative;
}
.banner-animator .eg-affiliate-banners::after {
  content: "";
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border: 4px solid rgba(255,255,255,0.6);
  border-radius: 4px;
  animation: pulseBorder 2s ease-out infinite;
  pointer-events: none;
}

@keyframes pulseBorder {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.1); opacity: 0; }
}
/* ==== Vlogs (mobile-first) ==== */
.vlogs-list {
  display: grid;
  grid-template-columns: 1fr;     /* stack on phones */
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 2-up from small tablets */
@media (min-width: 576px) {
  .vlogs-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Optional: widen gutters on large screens */
@media (min-width: 992px) {
  .vlogs-list {
    gap: 1.25rem;
  }
}

.vlogs-item {
  display: flex;
}

.vlog-card {
  width: 100%;
  max-width: 640px;               /* keeps nice width on big screens */
  margin-inline: auto;            /* center the card in its grid cell */
  border: 2px solid #333;
  border-radius: 20px;            /* similar to your 25% look but cleaner */
  overflow: hidden;
  background: #000;               /* avoids white flash before video loads */
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* 16:9 responsive iframe wrapper (works everywhere) */
.vlog-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;            /* 16/9 = 56.25% */
}

.vlog-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;                      /* use card border instead */
  display: block;
  border-radius: 0;               /* corners come from the card */
}

/* Optional: make corners a bit rounder on mobile */
@media (max-width: 480px) {
  .vlog-card {
    border-radius: 24px;
  }
}

/* ...etc. */
