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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  color: #111;
}

/* iOS spacer */
.status-bar {
  height: 28px;
  background: #000;
}

/* NAVBAR */
.navbar {
  height: 64px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(#2a2a2a, #1a1a1a);
}


/* NAV LEFT */
.nav-left {
  display: flex;
  align-items: center;
}

/* LOGO CONTAINER */
.logo-icon {
  display: flex;
  align-items: center;
}

/* LOGO IMAGE */
.logo-icon img {
  width: 120px;           /* Default desktop size */
  max-width: 100%;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect (optional but professional) */
.logo-icon img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* TABLET */
@media (max-width: 1024px) {
  .logo-icon img {
    width: 100px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .logo-icon img {
    width: 85px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .logo-icon img {
    width: 70px;
  }
}


.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.signin {
  font-size: 15px;
  font-weight: 600;
  color: #f5c400;
}

.menu {
  font-size: 26px;
  color: #f5c400;
}

/* MOBILE MENU */
.mobile-menu {
  position: relative;          /* so it stays in normal flow */
  top: 0;
  width: 100%;
  height: 0;                   /* collapsed by default */
  overflow: hidden;            /* hide content when collapsed */
  background: #f0f0f0;
  transition: height 0.4s ease;
  z-index: 10;
}

.mobile-menu ul {
  list-style: none;
  width: 90%;
  max-width: 320px;
  margin: 0 auto;
  padding: 0;
}

.mobile-menu li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  padding: 18px 16px;
  color: black;
  border-bottom: 1px solid rgba(0, 0, 0, 0.726);
  cursor: pointer;
  transition: background 0.3s;
}

.mobile-menu li:hover {
  background: rgba(245,196,0,0.1);
}

.submenu-icon {
  font-size: 24px;
  font-weight: 800;
  color: black;
}

/* Submenu hidden by default */
.submenu-block {
  display: none;
  padding-left: 16px;
  background: #fffafa;  /* slightly darker for submenu */
  margin-top: 8px;
  border-left: 3px solid #f5c400; /* golden accent */
}

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

.submenu-block li {
  padding: 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: black;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* ACTIVE STATE: expand menu height to show content */
.mobile-menu.active {
  height: auto; /* let it expand to fit content */
}


/* HERO */
.hero {
  height: 260px;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("/static/images/header.png");
  background-size: cover;
  background-position: center;
  padding: 26px 18px;
}

.hero-content {
  max-width: 280px;
}

.hero h1 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.hero h1 span {
  color: #f5c400;
}

.hero ul {
  list-style: none;
}

.hero li {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.hero li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f5c400;
  font-size: 22px;
  line-height: 1;
}

/* CTA */
.cta {
  background: #f5c400;
  padding: 24px 18px 28px;
  text-align: center;
}

.cta p {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 18px;
}

.cta strong {
  font-weight: 800;
}

.cta button {
  background: #1976d2;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 14px 42px;
  border: none;
  border-radius: 30px;
}

/* AD */
.ad-label {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin: 10px 0;
}

.ad-box {
  margin: 0 14px 20px;
  border: 1px solid #ddd;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.highlight {
  background: rgba(255, 0, 0, 0.15);
  padding: 2px 4px;
  margin-bottom: 4px;
  display: inline-block;
}

.uba {
  font-size: 12px;
  color: #888;
}

.open {
  background: #ef2b1c;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 22px;
  font-weight: 700;
}

/* PRIZE */
.prize {
  padding: 26px 18px 40px;
}

.prize .light {
  font-size: 36px;
  font-weight: 300;
}

.prize .bold {
  font-size: 36px;
  font-weight: 900;
}

.pch-stats {
  background: #f5c400;
  padding: 40px 18px 48px;
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* Header */
.pch-stats-header h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 36px;
}

/* Grid */
.pch-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 24px;
}

/* Item */
.stat-item {
  text-align: center;
}

.stat-icon {
  margin-bottom: 16px;
  color: #111;
}

.stat-icon svg {
  width: 72px;
  height: auto;
}

/* Text */
.stat-item p {
  font-size: 22px;
  line-height: 1.25;
}

.stat-item strong {
  font-weight: 900;
}

.pch-footer {
  background: linear-gradient(180deg, #1c1c1c, #121212);
  color: #fff;
  padding: 28px 18px 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* Logo */
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-logo {
  width: 38px;
  height: 38px;
  background: #f5c400;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo svg {
  width: 22px;
  color: #111;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #f5c400;
}

/* Title */
.footer-title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 26px;
}

/* Socials */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 28px;
}

.footer-icon {
  width: 56px;
  height: 56px;
  background: #f7d46b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-icon i {
  font-size: 22px;
  color: #111;
}

/* Divider */
.footer-divider {
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin: 0 4px 30px;
}

/* Links */
.footer-links {
  display: flex;
  gap: 36px;
}

.footer-col {
  flex: 1;
}

.footer-col h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: 0.6px;
}

.footer-subhead {
  margin-top: 28px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  font-size: 16px;
  line-height: 1.9;
  color: #f0f0f0;
}

/* AUTH MODAL */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.auth-overlay.active {
  display: flex;
}

.auth-modal {
  background: #121622;
  width: 360px;
  border-radius: 18px;
  padding: 28px;
  position: relative;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.auth-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

.auth-tabs {
  display: flex;
  margin-bottom: 20px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  color: #aaa;
  font-weight: bold;
  cursor: pointer;
}

.auth-tab.active {
  color: #f6c453;
  border-bottom: 2px solid #f6c453;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: none;
  background: #0e1220;
  color: #fff;
}

.auth-form button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg,#f6c453,#e0a93b);
  border: none;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
}

.bonus {
  text-align: center;
  font-size: 13px;
  color: #f6c453;
  margin-top: 10px;
}
