/* ==========================
   Global Styles
========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #0f172a;
  color: #f1f5f9;
  line-height: 1.6;
  text-align: center;
}

/* ==========================
   Header
========================== */
header {
  padding: 1rem;
  background: #111827;
  top: 0;
  z-index: 10;
}

.site-logo {
  width: 250px;
  height: auto;
  border-radius: 8px;
}

/* ==========================
   Hero Section
========================== */
.hero {
  padding: 1.5rem;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.hero-text {
  margin-top: 1rem;
}

.hero-text h1 {
  font-size: 1.8rem;
  color: #38bdf8;
  margin-bottom: 0.5rem;
}

.hero-text p {
  color: #94a3b8;
}

/* ==========================
   Logo Section
========================== */
.logo-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.logo {
  width: 90px;
  height: auto;
  border-radius: 10px;
  background: #1e293b;
  padding: 6px;
}

/* ==========================
   Withdraw / Payment Section
========================== */
.withdraw-section {
  margin: 2rem 0;
}

.withdraw-section h2 {
  font-size: 1.5rem;
  color: #22d3ee;
  margin-bottom: 1rem;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.payment-methods img {
  width: 100px;
  height: auto;
  border-radius: 6px;
}

/* ==========================
   Features Section
========================== */
.features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem;
}

.features img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* ==========================
   Footer
========================== */
.footer {
  margin-bottom: 80px;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* ==========================
   Bottom Fixed Download Button
========================== */
.bottom-spacer {
  height: 120px; /* Space above fixed button */
}

.bottom-button {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(27, 0, 41, 0) 0%, #1b0029 30.73%);
  padding-top: 30px;
  z-index: 999;
  display: flex;
  justify-content: center;
}

.cta-container {
  margin: 0 20px 20px;
  width: 100%;
  max-width: 500px;
}

.cta-container button {
  width: 100%;
  height: 50px;
  border-radius: 6px;
  cursor: pointer;
  background: linear-gradient(180deg, #00d047 0%, #00a040 100%);
  box-shadow: 0 4px 12px -5px rgba(40, 153, 83, 0.12);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  border: none;
  transition: all 0.2s ease;
}

.cta-container button:hover {
  transform: scale(1.05);
}

/* ==========================
   Responsive Styles
========================== */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.4rem;
  }
  .logo {
    width: 70px;
  }
  .payment-methods img {
    width: 80px;
  }
}
