@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@500;700&display=swap');

body {
  margin: 0;
  background: #0e0e0e;
  color: #f2e9f0;
  font-family: 'Unbounded', sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 1em 2em;
  border-bottom: 2px solid #f6baff;
}

header img {
  height: 60px;
}

nav a {
  color: #f6baff;
  text-decoration: none;
  margin: 0 1em;
  font-size: 1.2em;
}

.landing {
  max-width: 800px;
  margin: 4em auto;
  padding: 2em;
  text-align: center;
}

button {
  background: #f6baff;
  border: none;
  padding: 1em 2em;
  margin: 1em;
  font-size: 1.2em;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

button:hover {
  background: #ffccff;
}

.card {
  background: #1c1c1c;
  border: 2px solid #f6baff;
  border-radius: 10px;
  padding: 1em;
  margin: 1em 0;
  animation: fadein 0.7s ease;
}

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

img {
  max-width: 100%;
  border-radius: 10px;
}

.how-it-works, .trust-features {
  text-align: center;
  margin-top: 3em;
  color: #f6baff;
}

.trust-headline {
  font-size: 1.4em;
  margin-bottom: 1em;
  text-shadow: 0 0 5px #f6baff55;
}

.steps, .trust-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 1em;
}

.steps div, .trust-icons div {
  background: #1a0020;
  padding: 1em;
  border-radius: 8px;
  width: 160px;
  box-shadow: 0 0 10px #55008855;
}

.steps .emoji, .trust-icons .emoji {
  font-size: 2em;
  display: block;
  margin-bottom: 0.5em;
}

.how-it-works, .trust-features {
  text-align: center;
  margin-top: 3em;
  color: #f6baff;
}

.trust-headline {
  font-size: 1.4em;
  margin-bottom: 1em;
  text-shadow: 0 0 5px #f6baff55;
}

.steps, .trust-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 1em;
}

.steps div, .trust-icons div {
  background: #1a0020;
  padding: 1em;
  border-radius: 8px;
  width: 160px;
  box-shadow: 0 0 10px #55008855;
}

.emoji {
  font-size: 2em;
  display: block;
  margin-bottom: 0.5em;
}

/* === INTERNATIONAL SECTION === */
.intl-hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #0e0e0e, #1a0f1f);
  color: var(--accent);
}
.world-clocks {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 1rem;
}
.clock {
  background: #1f1f1f;
  border: 1px solid #333;
  padding: 1.5rem;
  border-radius: 10px;
  font-size: 1.1rem;
  text-align: center;
  color: #f0f0f0;
  min-width: 130px;
}
.clock span {
  font-size: 1.8rem;
  display: block;
  margin-top: 0.5rem;
  color: var(--accent);
}
.flight-board {
  padding: 3rem 1rem;
  text-align: center;
}
.flight-board table {
  width: 90%;
  margin: auto;
  border-collapse: collapse;
  color: #ddd;
}
.flight-board th, .flight-board td {
  padding: 1rem;
  border-bottom: 1px solid #444;
}
.flight-board h2 {
  color: var(--accent);
  margin-bottom: 1rem;
}
.fade-in {
  animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
