/* Reset and Global */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #250808;
  color: #f1f1f1;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
}

/* Header */
.mobile-header {
  background-color: #1a1a1a;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  font-size: 14px;
}

.mobile-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo img {
  width: 133px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  display: block;
}
.mobile-logo img {
  max-height: 44px;
  width: auto;
}


.mobile-actions {
  display: flex;
  gap: 8px;
}

.mobile-login,
.mobile-register {
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #feca1b;
}

.mobile-login {
 background-color: #7e30bd;
 color: #ffffff;
}

.mobile-register {
  background-color: #fe1b48;
  color: #ffffff;
}

/* Section */
main section {
  margin-bottom: 40px;
  padding: 16px;
  background-color: #1b1b1b;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Headings */
main h1,
main h2 {
  margin-bottom: 12px;
  line-height: 1.4;
}

main h1 {
  font-size: 28px;
  font-weight: 700;
  color: #feca1b;
  text-align: center;
}
/* Hero Section */
.hero-section {
  background-color: #000;
  padding: 40px 0 20px;
  border-bottom: 1px solid #333;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-text h1 {
  font-size: 30px;
      color: #ffc500;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #ccc;
}

.hero-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .hero-text {
    flex: 1;
    padding-right: 20px;
  }

  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-download-button {
    width: 100%;
    text-align: center;
  }
}


.download-button,
.download-button:visited,
.download-button:focus,
.download-button:active,
.download-button:hover,
form .download-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff5e00, #a10000);
  color: #fff8f1;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.download-button:hover {
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: #000;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .download-button {
    width: 100%;
  }
}

.hero-download-button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff4e00, #ec9f05);
  border: 2px solid #ffae00;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255, 94, 0, 0.6),
              0 0 20px rgba(255, 94, 0, 0.4),
              inset 0 0 8px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  animation: pulse-glow 2s infinite;
}

.hero-download-button:hover {
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(255, 193, 7, 0.8),
              inset 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Optional animation reused from conclusion button */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px rgba(255, 94, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 94, 0, 0.4);
  }
}



.scroll-button {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff5e00, #a10000);
  color: #fff8f1;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.scroll-button:hover {
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: #000;
  transform: scale(1.05);
}


/* Unique OkWin Card Section */
.okwin-card {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 0 16px;
  display: flex;
  justify-content: center;
}

.okwin-card-inner {
  background: linear-gradient(145deg, #1c1c1c, #141414);
  border: 1px solid #292929;
  padding: 24px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.6);
  text-align: center;
}

.okwin-card-inner h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffcb3c;
  margin-bottom: 16px;
  border-left: 4px solid #ff5e00;
  padding-left: 12px;
  text-align: left;
}

.okwin-card-inner p {
  font-size: 15px;
  line-height: 1.8;
  color: #ddd;
  background-color: #1f1f1f;
  padding: 14px;
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.03);
  margin-top: 12px;
}

/* Image Styling */
.okwin-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 16px 0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* Link Styling inside Cards */
.okwin-card-inner a {
  color: #feca1b;
  font-weight: 600;
  transition: color 0.3s ease;
}

.okwin-card-inner a:hover {
  color: #ffd94d;
}


.okwin-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
  color: #d5d5d5;
  font-size: 15px;
  margin-top: 16px;
}

.okwin-list li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.okwin-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #ff5e00;
  font-size: 14px;
}

/* Special Styling for Conclusion Section */
.okwin-card:last-of-type .okwin-card-inner {
  background: linear-gradient(145deg, #2a2a2a, #1b1b1b);
  border: 1px solid #333;
  box-shadow: 0 0 16px rgba(255, 94, 0, 0.15);
}

/* Animate Final CTA Button */
.okwin-card:last-of-type .download-button {
  animation: pulse-glow 2s infinite;
}

/* Pulse Animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px rgba(255, 94, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 94, 0, 0.4);
  }
}



/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.4);
}
