* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Montserrat, sans-serif;
  color: #ffffff;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  direction: ltr;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  align-items: center;
  background-color: #255a9f;
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.lang-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
}

.logo-container {
  width: 5.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Hero Section */
.hero {
  align-items: center;
  background-image: url('bg-desktop.jpg');
  background-position: right bottom !important;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  position: relative;
  padding-bottom: 1.5rem;
}

/* Mobile background */
@media (max-width: 1024px) {
  .hero {
    background-image: url('bg-mobile.jpg');
    background-position: center top;
    background-size: cover;
  }
}

.hero-text {
  padding: 1.5rem 1.5rem 1rem;
  text-align: center;
  color: #255a9f;
}

.hero-text h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #255a9f;
}

.hero-text .plus {
  color: #f6821f;
}

.hero-text p {
  font-size: 1rem;
  margin-top: 0.75rem;
  color: #255a9f;
}

.hero-text strong {
  font-weight: 700;
}

.prize-list {
  list-style: none;
  margin-top: 0.75rem;
  display: inline-block;
  text-align: left;
}

.prize-list li {
  color: #255a9f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.prize-list li::before {
  content: "- ";
  color: #f6821f;
}

.prize-list .prize-normal {
  font-weight: 400;
}

.dial-card-wrap {
  position: relative;
  max-width: 20rem;
  width: calc(100% - 3rem);
  margin: 1rem auto;
  padding-bottom: 10px;
}

.dial-card-wrap::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 0;
  border-radius: 20px;
  background-image: linear-gradient(232deg, #fff 0%, #eb9d47 100%);
  z-index: 0;
}

.dial-card {
  position: relative;
  z-index: 1;
  background-image: linear-gradient(to bottom, #1a447c, #397fd2 100%);
  border-radius: 20px;
  padding: 1.25rem 2rem;
  text-align: center;
}

.dial-label {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.accent-text {
  color: #f6821f;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  direction: ltr;
}

.accent-text .to-word {
  color: #ffffff;
  font-weight: 400;
}

.cta-text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.25rem;
}

.prizes-img {
  display: block;
  width: 100%;
  max-width: 28rem;
  height: auto;
  margin-top: auto;
  object-fit: contain;
}

/* Responsive */
@media (min-width: 640px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p,
  .prize-list li {
    font-size: 1.125rem;
    margin-right: 1rem;
  }
}
