body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to bottom, #ffdde1, #ee9ca7);
  color: #333;
  text-align: center;
}

.note {
  margin-top: 20px;
  color: #880e4f;
}

.hero {
  padding: 60px 20px;
}

.hero h1 {
  font-size: 3rem;
  color: #c2185b;
}

.hero p {
  font-size: 1.2rem;
}

button {
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  background: #c2185b;
  color: white;
  cursor: pointer;
  margin-top: 20px;
}

button:hover {
  background: #880e4f;
}

section {
  padding: 40px 20px;
}

.message {
  max-width: 900px;
  margin: auto;
  background: rgba(255,255,255,0.92);
  padding: 30px;
  border-radius: 18px;
  line-height: 1.9;
  font-size: 1.1rem;
}

.next-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: #c2185b;
  color: white;
  text-decoration: none;
  border-radius: 30px;
}

.next-btn:hover {
  background: #880e4f;
}

footer {
  background: #c2185b;
  color: white;
  padding: 30px;
}

/* 🔁 Infinite scrolling gallery */
.gallery-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
}

.gallery-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scroll 22s linear infinite;
}

.gallery-track img {
  height: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  flex-shrink: 0;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.countdown {
  background: rgba(255,255,255,0.85);
  margin: 30px auto;
  padding: 20px;
  max-width: 600px;
  border-radius: 15px;
  font-size: 1.2rem;
}

.countdown h2 {
  color: #c2185b;
}

.blast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.95);
  padding: 30px 40px;
  border-radius: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #c2185b;
  z-index: 9999;
  animation: pop 0.6s ease-out;
}

.hidden {
  display: none;
}

@keyframes pop {
  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.zones {
  margin: 15px 0;
  font-size: 1.1rem;
  color: #555;
}

.zones p {
  margin: 5px 0;
}

#countdown-text {
  margin-top: 15px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #c2185b;
}

.zone-box {
  margin: 15px 0;
  font-size: 1.2rem;
}

.zone-box p {
  margin: 4px 0;
}

#india-countdown,
#ireland-countdown {
  font-weight: bold;
  color: #c2185b;
}

.map-section {
  padding: 50px 20px;
  text-align: center;
}

.map-container {
  position: relative;
  max-width: 900px;
  margin: 30px auto;
}

.world-map {
  width: 100%;
  opacity: 0.9;
  border-radius: 20px;
}

/* Pins */
.pin {
  position: absolute;
  font-size: 1.8rem;
  animation: pulse 2s infinite;
}

.india {
  top: 58%;
  left: 62%;
}

.ireland {
  top: 35%;
  left: 45%;
}

/* Heart line */
.heart-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.heart-line path {
  fill: none;
  stroke: #c2185b;
  stroke-width: 3;
  stroke-dasharray: 8;
  animation: dash 4s linear infinite;
}

/* Heart */
.heart {
  position: absolute;
  top: 45%;
  left: 53%;
  font-size: 1.5rem;
  animation: heartbeat 1.5s infinite;
}

/* Text */
.map-text {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #880e4f;
  font-style: italic;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1); }
  75% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes dash {
  to {
    stroke-dashoffset: -16;
  }
}
/* Plane route */
.route {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.route path {
  fill: none;
  stroke: #c2185b;
  stroke-width: 3;
  stroke-dasharray: 8;
  animation: dash 4s linear infinite;
}

/* Plane icon */
.route text {
  font-size: 1.6rem;
}

/* Line animation */
@keyframes dash {
  to {
    stroke-dashoffset: -16;
  }
}
.map-section {
  padding: 50px 20px;
  text-align: center;
}

.map-container {
  max-width: 900px;
  margin: 30px auto;
}

.map-svg {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Labels */
.map-label {
  font-size: 14px;
  font-weight: bold;
  fill: #c2185b;
  background: white;
}

/* Flight path */
.flight-path {
  fill: none;
  stroke: #c2185b;
  stroke-width: 3;
  stroke-dasharray: 8;
  animation: dash 4s linear infinite;
}

/* Plane */
.plane {
  font-size: 18px;
}

/* Animation */
@keyframes dash {
  to {
    stroke-dashoffset: -16;
  }
}

.map-text {
  text-align: center;
  font-size: 1.2rem;
  color: #880e4f;
  margin-top: 15px;
}
