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

:root {
  --primary: #6ecff6;
  --primary-light: #c8f0ff;
  --secondary: #004a88;
  --accent: #ffffff;
  --text-dark: #0a1f33;
  --text-muted: rgba(10, 31, 51, 0.6);
  --bg: linear-gradient(180deg, #f8fdff 0%, #e2f4ff 35%, #f8fdff 100%);
  --card-bg: #ffffff;
  --shadow: 0 18px 45px rgba(0, 74, 136, 0.14);
  --radius: 36px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 207, 246, 0.35), transparent 65%);
  z-index: -2;
  filter: blur(2px);
}

body::before {
  top: -120px;
  right: -60px;
}

body::after {
  bottom: -150px;
  left: -50px;
}

img {
  max-width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 12px);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 59, 115, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary);
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0, 59, 115, 0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
  transform: translateY(-3px) scale(1.02);
  filter: drop-shadow(0 14px 28px rgba(0, 74, 136, 0.35));
}

.logo .text-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 16, 32, 0.82);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  padding: 2rem;
}

.image-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.image-lightbox__content {
  position: relative;
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-lightbox__content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 35px 80px rgba(0, 8, 20, 0.5);
  background: rgba(4, 16, 32, 0.9);
}

.image-lightbox__caption {
  margin-top: 1rem;
  color: #f5fbff;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
}

.image-lightbox__close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(4, 16, 32, 0.85);
  color: #ffffff;
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.image-lightbox__close:hover {
  transform: translateY(-1px);
  background: rgba(4, 24, 44, 0.95);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav .btn-primary {
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 59, 115, 0.15);
  background: var(--accent);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: url('../lanal/BG-Website.jpg') center/cover no-repeat;
  background-color: #041020;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 16, 32, 0.75), rgba(4, 16, 32, 0.6));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: center;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.accent-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 18px solid rgba(110, 207, 246, 0.25);
  top: 60px;
  right: -40px;
  animation: float 6s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.accent-ring.secondary {
  width: 220px;
  height: 220px;
  border-color: rgba(110, 207, 246, 0.15);
  bottom: -80px;
  left: -60px;
  top: auto;
}

.hero-content {
  animation: fadeIn 1s ease forwards;
  color: #f4fbff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  width: 100%;
}

.hero-content .countdown-card,
.hero-content .hero-prize-card,
.hero-content .cta-group {
  max-width: 460px;
}

.hero-info-pills {
  display: flex;
  gap: 1rem;
  margin: 1.2rem 0;
  flex-wrap: wrap;
}

.hero-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.15) !important; /* Fallback */
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(18px); /* Safari support */
  backdrop-filter: blur(18px);
}

.hero-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.hero-visual {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(110, 207, 246, 0.15), rgba(0, 59, 115, 0.2));
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.hero-visual:hover {
  transform: translateY(-6px) scale(1.01);
}

.hero-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 35px rgba(0, 74, 136, 0.35));
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  border: none;
  border-radius: calc(var(--radius) - 12px);
  padding: 0.95rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-primary {
  background: linear-gradient(135deg, #0368c9, #0b4ea8);
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(3, 54, 129, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(3, 54, 129, 0.4);
}

.btn-outline {
  border: 1px solid rgba(0, 59, 115, 0.25);
  color: var(--secondary);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section.soft {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  margin: 3rem auto;
  width: min(1100px, 92%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(110, 207, 246, 0.25);
  padding: 4rem 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--secondary);
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

.text-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 700;
  color: var(--secondary);
}

.text-logo img {
  height: clamp(48px, 8vw, 78px);
  filter: drop-shadow(0 8px 20px rgba(0, 74, 136, 0.35));
}

.hero .text-logo {
  color: #ffffff;
}

.hero .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.hero .text-logo {
  color: #ffffff;
}

.hero-logo-only {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.hero-logo-only img {
  width: clamp(200px, 40vw, 320px);
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.35));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero-feature-card {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: calc(var(--radius) - 16px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  color: #fff;
}

.hero-feature-card .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.hero-feature-card .metric {
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.hero-feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.navy-crests {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.navy-crest {
  width: clamp(100px, 20vw, 140px);
  height: clamp(100px, 20vw, 140px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 35px rgba(0, 59, 115, 0.18);
  border: 2px solid rgba(0, 74, 136, 0.12);
  animation: crestFloat 7s ease-in-out infinite;
}

.navy-crest img {
  max-width: 70%;
  height: auto;
}

.navy-crest:nth-child(2) {
  animation-delay: 1.2s;
}

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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(110, 207, 246, 0.2);
}

.promo-section {
  padding: 4rem 0;
  background: #ffffff;
}

.promo-section:nth-of-type(even) {
  background: #f2f8ff;
}

.promo-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.promo-text h3 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--secondary);
  margin-bottom: 1rem;
}

.promo-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.promo-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.promo-text ul li {
  margin-bottom: 0.35rem;
  color: var(--text-muted);
  font-weight: 500;
}

.promo-visual {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(110, 207, 246, 0.3);
}

.promo-visual img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 480px;
  margin: 0 auto;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(110, 207, 246, 0.15), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 74, 136, 0.18);
}

.card:hover::after {
  opacity: 1;
}

.card h3 {
  margin-top: 0;
  color: var(--secondary);
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.countdown-card {
  background: rgba(4, 16, 32, 0.85) !important; /* Fallback for browsers without backdrop-filter */
  background: rgba(4, 16, 32, 0.65);
  border-radius: calc(var(--radius) - 12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
  margin: 1.5rem 0;
  -webkit-backdrop-filter: blur(16px); /* Safari support */
  backdrop-filter: blur(16px);
  color: #f5fbff;
}

.countdown-label {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-align: center;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.75rem;
}

.countdown-grid .time {
  background: rgba(255, 255, 255, 0.5) !important; /* Fallback */
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(110, 207, 246, 0.2));
  border-radius: calc(var(--radius) - 18px);
  padding: 1rem;
  text-align: center;
  box-shadow: 0 18px 45px rgba(1, 10, 26, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(18px); /* Safari support */
  backdrop-filter: blur(18px);
  animation: pulseShadow 3.5s ease-in-out infinite;
  color: #0a1f33;
}

.countdown-grid .time strong {
  display: block;
  font-size: 1.8rem;
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.countdown-grid .time span {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hero-prize-card {
  background: rgba(0, 59, 115, 0.6) !important; /* Fallback */
  background: linear-gradient(135deg, rgba(110, 207, 246, 0.25), rgba(0, 59, 115, 0.5));
  border-radius: calc(var(--radius) - 18px);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.5rem;
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  backdrop-filter: blur(12px);
}

.hero-prize-card span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-prize-card strong {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 0.5rem;
}

.hero-prize-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.sponsor-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.sponsor-logos div {
  background: rgba(255, 255, 255, 0.9);
  border-radius: calc(var(--radius) - 20px);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--secondary);
  border: 1px solid rgba(110, 207, 246, 0.3);
  transition: transform 0.4s ease;
}

.sponsor-logos div:hover {
  transform: translateY(-8px);
}

form {
  display: grid;
  gap: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border-radius: calc(var(--radius) - 16px);
  border: 1px solid rgba(0, 59, 115, 0.1);
  padding: 0.95rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--accent);
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 10px 20px rgba(110, 207, 246, 0.25);
}

.payment-type-section {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(110, 207, 246, 0.08);
  border-radius: calc(var(--radius) - 12px);
  border: 1px solid rgba(110, 207, 246, 0.2);
}

.payment-type-label {
  display: block;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.payment-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.payment-type-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--accent);
  border: 2px solid rgba(0, 59, 115, 0.15);
  border-radius: calc(var(--radius) - 16px);
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-type-option:hover {
  border-color: var(--primary);
  background: rgba(110, 207, 246, 0.1);
}

.payment-type-option input[type="radio"] {
  width: auto;
  margin: 0;
  cursor: pointer;
}

.payment-type-option input[type="radio"]:checked + span {
  font-weight: 600;
  color: var(--secondary);
}

.payment-type-option:has(input[type="radio"]:checked) {
  border-color: var(--primary);
  background: rgba(110, 207, 246, 0.15);
  box-shadow: 0 8px 16px rgba(110, 207, 246, 0.2);
}

.payment-instruction {
  font-size: 0.9rem;
  margin: 0.5rem 0;
  color: var(--text-muted);
}

.checkbox-wrapper {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(110, 207, 246, 0.05);
  border-radius: calc(var(--radius) - 16px);
  border: 1px solid rgba(110, 207, 246, 0.2);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  margin-top: 0.25rem;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label span {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.size-chart-card {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: calc(var(--radius) - 18px);
  border: 1px solid rgba(0, 59, 115, 0.15);
  background: rgba(110, 207, 246, 0.08);
  text-align: center;
}

.size-chart-card h4 {
  margin-top: 0;
  color: var(--secondary);
}

.size-chart-card img {
  margin: 0.75rem auto;
  border-radius: calc(var(--radius) - 20px);
  border: 1px solid rgba(0, 74, 136, 0.15);
  box-shadow: 0 18px 35px rgba(0, 59, 115, 0.15);
}

.faq-item {
  border-radius: calc(var(--radius) - 10px);
  border: 1px solid rgba(0, 59, 115, 0.12);
  background: var(--accent);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1rem;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.coming-card {
  border-radius: var(--radius);
  border: 1px solid rgba(110, 207, 246, 0.2);
  padding: 1.5rem;
  background: #ffffff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.coming-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(3, 104, 201, 0.12);
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.coming-card h3 {
  margin: 0.2rem 0 0.5rem;
  color: var(--secondary);
}

.coming-card p {
  color: var(--text-muted);
  margin: 0;
}

.coming-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(110, 207, 246, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.coming-card:hover::after {
  opacity: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.gallery-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05) translateY(-4px);
}

.contact-info {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.toast-container {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 9999;
}

.toast {
  padding: 0.85rem 1.2rem;
  border-radius: calc(var(--radius) - 20px);
  background: rgba(4, 16, 32, 0.9);
  color: #fff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-weight: 600;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: linear-gradient(135deg, #2ecc71, #0f9b4e);
}

.toast.error {
  background: linear-gradient(135deg, #ff6b6b, #d63031);
}

.toast.info {
  background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.map-placeholder {
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(110, 207, 246, 0.4), rgba(0, 59, 115, 0.6));
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 600;
}

footer {
  padding: 2rem 0;
  text-align: center;
  color: var(--text-muted);
}

.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulseShadow {
  0%,
  100% {
    box-shadow: 0 10px 25px rgba(110, 207, 246, 0.3);
  }
  50% {
    box-shadow: 0 20px 35px rgba(110, 207, 246, 0.45);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 10px 30px rgba(0, 59, 115, 0.15);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 998;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    border-radius: calc(var(--radius) - 16px);
    transition: background 0.3s ease;
  }

  .nav-links a:hover {
    background: rgba(110, 207, 246, 0.1);
  }

  .mobile-toggle {
    display: inline-flex;
    z-index: 999;
  }

  .mobile-toggle span {
    font-size: 1.5rem;
    color: var(--secondary);
  }

  .countdown {
    flex-wrap: wrap;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-logo-only {
    justify-content: center;
  }

  .countdown-card {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-info-pills {
    justify-content: center;
  }

  .countdown-label {
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .hero-prize-card {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual img {
    max-width: 260px;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
    max-width: 460px;
    margin: 0 auto;
  }

  .promo-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .promo-visual {
    width: 85%;
    margin: 0 auto;
  }

  .promo-text {
    text-align: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .section.soft {
    padding: 2.5rem 1.25rem;
  }

  .size-chart-card {
    margin-top: 1rem;
  }

  .coming-soon-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .card,
  .size-chart-card,
  .coming-card {
    padding: 1.15rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .btn {
    width: 100%;
  }
}

/* Podium Prize Cards Styling */
.podium-prizes {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.podium-card {
  display: flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.podium-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.podium-banner {
  background: #FFD700; /* Fallback for browsers without gradient support */
  background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.25rem;
  min-width: 22px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  /* Vertical text using transform for better compatibility */
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  text-orientation: mixed;
  -webkit-text-orientation: mixed;
  /* Fallback: if writing-mode not supported, use transform */
}

/* Fallback for browsers that don't support writing-mode */
@supports not (writing-mode: vertical-rl) {
  .podium-banner {
    writing-mode: initial;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    white-space: nowrap;
    width: auto;
    height: 22px;
    min-width: 22px;
    padding: 0.25rem 0.4rem;
  }
}

.podium-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.6rem;
  gap: 0.5rem;
}

.podium-rank {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.podium-amount {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

/* Gradient backgrounds for each rank with fallbacks */
.podium-1 {
  background: #FFF8E1; /* Fallback */
  background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
}

.podium-2 {
  background: #F5F5DC; /* Fallback */
  background: linear-gradient(135deg, #F5F5DC 0%, #E6E6D4 100%);
}

.podium-3 {
  background: #D2B48C; /* Fallback */
  background: linear-gradient(135deg, #D2B48C 0%, #C19A6B 100%);
}

.podium-4 {
  background: #E0E0E0; /* Fallback */
  background: linear-gradient(135deg, #E0E0E0 0%, #BDBDBD 100%);
}

.podium-5 {
  background: #D3D3D3; /* Fallback */
  background: linear-gradient(135deg, #D3D3D3 0%, #A9A9A9 100%);
}

@media (max-width: 768px) {
  .podium-content {
    padding: 0.4rem 0.55rem;
    gap: 0.5rem;
  }

  .podium-rank {
    font-size: 0.7rem;
  }

  .podium-amount {
    font-size: 0.8rem;
  }

  .podium-banner {
    min-width: 20px;
    padding: 0.4rem 0.22rem;
    font-size: 0.48rem;
  }
}

@media (max-width: 480px) {
  .podium-content {
    padding: 0.35rem 0.5rem;
    gap: 0.4rem;
  }

  .podium-rank {
    font-size: 0.65rem;
  }

  .podium-amount {
    font-size: 0.75rem;
  }

  .podium-banner {
    min-width: 18px;
    padding: 0.35rem 0.2rem;
    font-size: 0.45rem;
  }
}

