/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f6f8fb;
  color: #222;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar Styles */
header {
  background: #1a2236;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 40px;
  width: 40px;
}
.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}
nav {
  position: relative;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-links li a {
  color: #0e0d0d;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #171716;
}
.mobile-menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(90deg, #1a2236 60%, #ffd700 100%);
  color: #fff;
  padding: 60px 0 40px;
}
.hero-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.hero-text {
  flex: 1 1 360px;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.cta-btn {
  display: inline-block;
  background: #ffd700;
  color: #222;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #ffbf00;
  color: #222;
}
.hero-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  width: 400px;
  max-width: 100vw;
  border-radius: 18px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.13);
}

/* How to Play */
.how-to-play {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}
.how-to-play h2 {
  font-size: 2rem;
  margin-bottom: 35px;
  font-weight: 700;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.step {
  background: #f7f7f7;
  padding: 30px 22px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  width: 220px;
  max-width: 100%;
  text-align: center;
  transition: transform 0.18s;
}
.step:hover {
  transform: translateY(-8px) scale(1.04);
}
.step img {
  width: 60px;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #1a2236;
}
.step p {
  color: #555;
  font-size: 1rem;
}

/* About */
.about {
  padding: 50px 0;
  background: #f6f8fb;
  text-align: center;
}
.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.about p {
  font-size: 1.12rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* Add Cash Promo */
.add-cash {
  background: linear-gradient(90deg, #ffd700 60%, #1a2236 100%);
  color: #222;
  padding: 50px 0;
  text-align: center;
}
.add-cash h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #1a2236;
}
.add-cash .cta-btn {
  margin-top: 18px;
}

/* Contact */
.contact {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}
.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid #cfcfcf;
  font-size: 1rem;
  resize: none;
  outline: none;
  transition: border 0.14s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #ffd700;
}
.contact-form button {
  width: fit-content;
  align-self: center;
  margin-top: 10px;
}

/* Footer */
footer {
  background: #1a2236;
  color: #fff;
  padding: 27px 0 12px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: #ffd700;
  font-size: 1rem;
  transition: text-decoration 0.16s;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-copy {
  font-size: 0.97rem;
  color: #bbb;
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .hero-image img {
    margin-top: 20px;
  }
  .steps {
    flex-direction: column;
    gap: 20px;
  }
  .footer-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    background: #1a2236;
    top: 56px;
    right: 0;
    flex-direction: column;
    width: 180px;
    padding: 18px 0;
    border-radius: 6px 0 8px 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    z-index: 999;
  }
  .nav-links.open {
    display: flex;
  }
  .mobile-menu-icon {
    display: block;
    margin-left: 16px;
  }
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.step h3 {
  text-align: center;
  margin-top: 10px;
}

.step p {
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
}

/* Disclaimer Section */
.disclaimer-section {
  background: #fff9f9;
  padding: 50px 0;
  text-align: center;
}

.disclaimer-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.disclaimer-section p {
  font-size: 16px;
  margin: 8px 0;
}