/* ── Font ─────────────────────────────────────────────── */
@font-face {
  font-family: "KeepOnTruckin";
  src: url("fonts/KeeponTruckin.ttf") format("truetype");
}

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow-x: hidden;
  position: relative;
  font-family: 'Sora', 'Poppins', sans-serif;

  /* Background image with dark overlay */
  background-image:
    linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.9)),
    url('bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Background glow ──────────────────────────────────── */
.bg-glow {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 320px;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.08) 35%,
    transparent 75%
  );
  filter: blur(55px);
  z-index: 0;
}

/* ── Content Wrapper ──────────────────────────────────── */
.wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 520px;
}

/* ── Logo ─────────────────────────────────────────────── */
.logo-circle {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  animation: fadeDown 0.6s ease-out both;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Title ────────────────────────────────────────────── */
.title {
  color: #ffffff;
  text-align: center;
  font-family: "KeepOnTruckin", sans-serif;
  font-size: clamp(30px, 8vw, 32px);
  line-height: 1;
  letter-spacing: 0.08em;
  margin-top: 20px;
  margin-bottom: 40px;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.18));
  animation: fadeDown 0.6s 0.1s ease-out both;
}

/* ── Menu List ────────────────────────────────────────── */
.menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* ── Menu Card ────────────────────────────────────────── */
.menu-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: 100%;
  max-width: 480px;
  padding: 18px 28px;
  border-radius: 16px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.09) 100%
  );
  border: 1px solid rgba(255,255,255,0.10);

  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  user-select: none;

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  box-shadow: 0 4px 25px rgba(255,255,255,0.05);

  transition:
    transform 300ms ease-out,
    background 300ms ease-out,
    border-color 300ms ease-out,
    box-shadow 300ms ease-out;

  /* Staggered entrance animation */
  animation: fadeUp 0.5s ease-out both;
}

.menu-card:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
  box-shadow: 0 8px 35px rgba(255,255,255,0.12);
}

.menu-card:active {
  transform: translateY(0) scale(0.98);
}

/* ── Icon Wrap ────────────────────────────────────────── */
.icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}

.icon-wrap img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.9;
}

/* ── Label ────────────────────────────────────────────── */
.label {
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.15));
}

/* ── Alert Box ────────────────────────────────────────── */
.alert-box {
  margin-top: 24px;
  position: relative;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  border-radius: 16px;

  border: 1px solid rgba(248, 113, 113, 0.30);
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  padding: 20px;
  text-align: center;

  box-shadow: 0 0 30px rgba(239, 68, 68, 0.35);

  animation: fadeUp 0.5s 0.5s ease-out both;
}

/* ── Alert Title ──────────────────────────────────────── */
.alert-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.alert-title span {
  font-size: 24px;
}

.attention-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2em;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.35));
}

/* ── Alert Image ──────────────────────────────────────── */
.alert-image-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.alert-image-wrap div,
.alert-image-wrap {
  width: 100%;
}

.alert-image-wrap img {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.20);
  box-shadow: 0 0 20px rgba(255,255,255,0.08);
  object-fit: cover;
  display: block;
}

/* ── Alert Description ────────────────────────────────── */
.alert-desc {
  color: rgba(255,255,255,0.90);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.625;
}

/* ── Animations ───────────────────────────────────────── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 480px) {
  body {
    padding: 40px 16px;
  }

  .bg-glow {
    width: 100%;
    height: 200px;
  }

  .menu-card {
    font-size: 15px;
    padding: 16px 20px;
  }
}
