/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000000;
  font-family: 'Inter', sans-serif;
  color: #eeeeee;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* yellow / black theme */
:root {
  --yellow: #FFD700;
  --yellow-dark: #E5BE01;
  --black-soft: #0A0A0A;
  --gray-card: #111111;
}

/* Brand */
.brand {
  text-align: center;
  margin-bottom: 3rem;
}
.logo {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo i {
  color: var(--yellow);
  margin-right: 6px;
}
.logo span {
  color: var(--yellow);
}
.tagline {
  color: var(--yellow);
  background: rgba(255, 215, 0, 0.12);
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 10px;
  backdrop-filter: blur(2px);
}

/* HERO (flex, responsive) */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin: 2rem 0 4rem;
}
.hero-text {
  flex: 1.2;
  min-width: 260px;
}
.hero-mock {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-text h1 span {
  color: var(--yellow);
  border-bottom: 3px solid var(--yellow);
  display: inline-block;
}
.hero-text p {
  font-size: 1rem;
  color: #c0c0c0;
  max-width: 90%;
  margin: 1rem 0;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}
.badge {
  background: var(--gray-card);
  padding: 0.4rem 1rem;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 500;
  border-left: 3px solid var(--yellow);
}
.badge i {
  color: var(--yellow);
  margin-right: 8px;
}

/* APK main button */
.download-area {
  margin: 1.5rem 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.btn-apk-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow);
  color: #000;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 0.9rem 2.2rem;
  border-radius: 60px;
  text-decoration: none;
  transition: 0.2s ease;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
}
.btn-apk-main i {
  font-size: 1.4rem;
  color: #000;
}
.btn-apk-main:hover {
  background: #FFE55C;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(255, 215, 0, 0.4);
}
.info-text {
  font-size: 0.75rem;
  margin-top: 12px;
  color: #aaa;
  width: 100%;
}
.info-text i {
  color: var(--yellow);
}
.qr-hint {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 0.8rem;
}
.qr-hint i {
  color: var(--yellow);
}

/* Indus Store Button */
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a2e;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1.8rem;
  border-radius: 60px;
  text-decoration: none;
  border: 2px solid #3a3a5a;
  transition: 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-store strong {
  font-weight: 700;
  color: #FF6B35;
}
.store-icon {
  border-radius: 6px;
  vertical-align: middle;
  background: #ffffff;
  padding: 3px;
  object-fit: contain;
  height: 22px;
  width: auto;
}
.btn-store:hover {
  background: #2a2a4a;
  transform: translateY(-2px);
  border-color: #FF6B35;
  box-shadow: 0 8px 18px rgba(255, 107, 53, 0.15);
}

/* phone mock */
.phone-card {
  background: #0f0f12;
  border-radius: 48px;
  padding: 1.2rem 1rem 1.5rem;
  width: 250px;
  text-align: center;
  box-shadow: 0 30px 40px -12px rgba(0,0,0,0.6), 0 0 0 2px rgba(255,215,0,0.2);
}
.phone-card i {
  font-size: 2.8rem;
  color: var(--yellow);
  margin-bottom: 0.8rem;
}
.phone-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.tourney-chip {
  background: rgba(255, 215, 0, 0.15);
  padding: 6px 10px;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-block;
  margin: 8px 0;
  color: var(--yellow);
}
.mini-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.7rem;
  background: #1A1A1A;
  padding: 6px 10px;
  border-radius: 30px;
}

/* bottom CTA */
.bottom-cta {
  text-align: center;
  background: #0C0C0E;
  padding: 2rem;
  border-radius: 48px;
  margin: 2rem 0 2rem;
  border: 1px solid #232323;
}
.bottom-cta h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.bottom-cta h2 i {
  color: var(--yellow);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--yellow);
  padding: 0.8rem 2rem;
  border-radius: 60px;
  font-weight: bold;
  color: var(--yellow);
  cursor: pointer;
  margin-top: 1rem;
  font-size: 1rem;
  transition: 0.2s;
}
.btn-outline i {
  margin-right: 8px;
}
.btn-outline:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.02);
}

footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1F1F1F;
  font-size: 0.75rem;
  color: #777;
}
.tiny {
  font-size: 0.7rem;
  margin-top: 6px;
}
.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}
.footer-legal-links a {
  color: #aaa;
  text-decoration: none;
  border-bottom: 1px dotted #444;
}
.footer-legal-links a:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

/* toast message (JS) */
.toast-message {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1e1e1e;
  backdrop-filter: blur(10px);
  color: var(--yellow);
  padding: 12px 24px;
  border-radius: 60px;
  font-weight: 500;
  font-size: 0.9rem;
  z-index: 1000;
  transition: transform 0.3s ease;
  border-left: 4px solid var(--yellow);
  box-shadow: 0 6px 18px black;
  pointer-events: none;
  white-space: nowrap;
}
.toast-message.show {
  transform: translateX(-50%) translateY(0);
}

/* responsive */
@media (max-width: 820px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2.4rem;
  }
  .hero-text p {
    max-width: 100%;
  }
  .badges {
    justify-content: center;
  }
  .download-area {
    justify-content: center;
  }
  .phone-card {
    margin-bottom: 1rem;
  }
  .bottom-cta h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 1.5rem 1rem;
  }
  .btn-apk-main {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }
  .logo {
    font-size: 2.2rem;
  }
  .toast-message {
    font-size: 0.75rem;
    white-space: normal;
    text-align: center;
    width: 80%;
  }
  .download-area {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn-store {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}
