/* Reset & Base */
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: Arial, sans-serif;
  background:#060d1a;
  color:#fff;
  line-height:1.5;
}
.container { max-width:1200px; margin:0 auto; padding:0 20px; }

/* Basic styling */
.top-header {
  background-color: #111;
  padding: 10px 0;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.action-buttons button {
  margin-left: 10px;
  padding: 8px 16px;
  border: none;
  background-color: #00b300;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.btn-login {
  background-color: #333;
}

/* Hamburger menu hidden by default */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* Responsive for mobile screens */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #111;
    width: 100%;
    padding: 10px 0;
  }

  .nav-links a {
    padding: 10px 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .action-buttons {
    display: none;
  }
}

/* Main Section */
.main-section { display:flex; gap:40px; padding:40px 0; flex-wrap:wrap; }
.content-left { flex:1 1 400px; }
.content-left h1 { font-size:2.2rem; margin-bottom:20px; }
.content-left p { margin-bottom:16px; color:#ccc; }
.content-left strong { color:#fff; }

/* Promo Line */
.promo-line { margin:20px 0; display:flex; align-items:center; flex-wrap:wrap; }
.promo-line span { font-size:1.1rem; }
.promo-box {
  display:flex; margin-left:10px;
  background:#fff; border-radius:5px; overflow:hidden;
}
.promo-box input {
  padding:10px 14px; font-size:1rem; color:#000; border:none; width:120px;
}
.promo-box button {
  background:#28a745; color:#fff; border:none; padding:10px 14px;
  cursor:pointer; transition: background .2s;
}
.promo-box button:hover { background:#1e7e34; }

/* CTA Buttons */
.action-ctas button {
  padding:18px 40px; margin-right:20px; font-size:1.1rem; border:none;
  border-radius:6px; cursor:pointer; transition: all .3s;
}
.btn-download { background:#007bff; color:#fff; }
.btn-register-large { background:#00aaff; color:#fff; }
.action-ctas button:hover {
  transform: translateY(-3px);
  box-shadow:0 6px 15px rgba(0,0,0,0.25);
}

/* Right content */
.content-right { flex:1 1 350px; display:flex; justify-content:center; }
.image-wrapper { position:relative; }
.image-wrapper img { width:100%; border-radius:10px; }
.badge {
  position:absolute; bottom:12px; left:50%; transform:translateX(-50%);
  background:#00aaff; padding:14px 20px; border-radius:10px; text-align:center;
}
.badge img { width:60px; }
.badge p { margin-top:6px; font-size:14px; color:#fff; }
.badge span { font-size:24px; display:block; margin-top:4px; }

/* Footer */
.footer { text-align:center; padding:20px 0; font-size:14px; color:#aaa; background:#02060f; }

/* Responsive */
@media(max-width:768px) {
  .nav-links { order:3; width:100%; text-align:center; margin-top:10px; }
  .action-buttons { order:2; }
  .main-section { flex-direction:column; }
  .action-ctas { display:flex; flex-direction:column; }
  .action-ctas button { width:100%; margin-bottom:15px; margin-right:0; }
}
/* Game Sections */
.game-section {
  background-color: #050b18;
  padding: 60px 20px;
  color: #fff;
}

.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.game-column {
  flex: 1 1 45%;
  min-width: 300px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.section-header span {
  font-size: 0.95rem;
  color: #ccc;
}

.game-column hr {
  border: none;
  border-top: 2px solid #00aaff;
  margin-bottom: 16px;
}

.game-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.game-icons img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.3s;
}
.game-icons img:hover {
  transform: scale(1.1);
}

.dev-icons img {
  background: #0e1428;
  padding: 10px;
  border-radius: 16px;
  height: 64px;
  width: 64px;
  object-fit: contain;
}

/* More Button */
.more-btn-wrapper {
  text-align: center;
  margin-top: 40px;
}
.btn-more {
  background: #d83826;
  color: #fff;
  font-size: 1.1rem;
  padding: 16px 40px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-more:hover {
  background: #ff4a36;
  transform: scale(1.05);
}
.wins-section {
  background-color: #0a0f1c;
  padding: 50px 20px;
  text-align: center;
  color: #fff;
}

.wins-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.wins-table table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px;
  border-collapse: collapse;
  background-color: #0f1424;
  border: 1px solid #444;
  border-radius: 12px;
  overflow: hidden;
}

.wins-table th,
.wins-table td {
  padding: 16px 12px;
  font-size: 1rem;
  border-bottom: 1px solid #333;
}

.wins-table th {
  background-color: #111827;
  font-weight: bold;
}

.win-amount {
  color: #00e38c;
  font-weight: bold;
}

.join-btn {
  margin: 30px 0;
}

.join-btn a {
  background-color: #00aaff;
  color: #fff;
  padding: 16px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
  transition: background 0.3s ease;
}

.join-btn a:hover {
  background-color: #0090d0;
}

.note {
  color: #aaa;
  font-size: 0.85rem;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .games-grid {
    flex-direction: column;
  }

  .game-column {
    flex: 1 1 100%;
  }

  .game-icons {
    justify-content: flex-start;
  }

  .dev-icons img {
    margin-bottom: 8px;
  }
}
.bonus-section {
  background: #050b18;
  padding: 60px 20px;
  color: #fff;
}

.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.bonus-box {
  background: #0c1220;
  padding: 30px;
  border-radius: 20px;
  flex: 1 1 48%;
  min-width: 320px;
}

.bonus-box h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.bonus-box table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.bonus-box th, .bonus-box td {
  padding: 12px;
  text-align: left;
  font-size: 0.95rem;
}

.bonus-box th {
  border-bottom: 2px solid #fff;
  font-weight: bold;
}

.bonus-box tbody tr {
  border-bottom: 1px solid #222;
}

.total-row {
  font-weight: bold;
  color: #00f7ff;
}

.bonus-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 10px;
}

.bonus-info img {
  height: 40px;
}

.bonus-code {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #000;
}

.bonus-code span {
  margin-right: 20px;
}

.bonus-code button {
  background: #00c16c;
  border: none;
  padding: 8px 20px;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.bonus-code button:hover {
  background: #00a95a;
}

.bonus-box a {
  color: #00baff;
  text-decoration: underline;
}

.note {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .bonus-grid {
    flex-direction: column;
  }

  .bonus-code {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    text-align: center;
  }
}
.legal-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #0a0f1c;
  padding: 50px 20px;
  color: #fff;
  gap: 30px;
}

.legal-content {
  flex: 1 1 480px;
  max-width: 600px;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.legal-content a {
  color: #3bb8ff;
  text-decoration: underline;
}

.legal-image {
  flex: 1 1 300px;
  max-width: 500px;
  text-align: center;
}

.legal-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .legal-info {
    flex-direction: column;
    padding: 40px 15px;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .legal-content p {
    font-size: 0.95rem;
  }
}
/* Promo Section Container */
.promo-guide {
  background-color: #00061b;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: white;
}

/* Grid Layout */
.promo-guide .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* Left Text Area */
.promo-left {
  flex: 1 1 60%;
}

.promo-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ffffff;
}

.promo-left p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: white;
}

.promo-left ol,
.promo-left ul {
  margin-left: 20px;
  margin-bottom: 25px;
  color: white;
}

.promo-left ol li,
.promo-left ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: white;
}

/* Right Side Image */
.promo-right {
  flex: 1 1 35%;
  text-align: center;
  color: white;
}

.promo-right img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  
}

.promo-right p {
  margin-top: 10px;
  font-size: 14px;
  
}

/* Links */
.promo-guide a {
  color: #007bff;
  text-decoration: none;
}

.promo-guide a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-guide .container {
    flex-direction: column;
  }

  .promo-left,
  .promo-right {
    flex: 1 1 100%;
  }

  .promo-left h2 {
    font-size: 24px;
  }

  .promo-left p,
  .promo-left li {
    font-size: 14px;
  }
}
/* Container */
.register-guide {
  background-color: #0a0f1c;
  padding: 60px 20px;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.register-guide .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  color: white;
}

/* Left side content */
.register-left {
  flex: 1 1 60%;
}

.register-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: white
}

.register-left h3 {
  margin-top: 30px;
  font-size: 20px;
  color: white
}

.register-left p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: white;
}

.register-left ol,
.register-left ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.register-left ol li,
.register-left ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* Button */
.btn-register {
  display: inline-block;
  background-color: #00b0ff;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.btn-register:hover {
  background-color: #0088cc;
}

/* Right side image */
.register-right {
  flex: 1 1 35%;
  text-align: center;
}

.register-right img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .register-guide .container {
    flex-direction: column;
  }

  .register-left,
  .register-right {
    flex: 1 1 100%;
  }

  .register-left h2 {
    font-size: 24px;
  }

  .register-left p,
  .register-left li {
    font-size: 14px;
  }
}
.footer {
  background-color: #0b0f1a;
  color: #ffffff;
  padding: 50px 20px 20px;
  font-family: 'Poppins', sans-serif;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 300px;
  margin: 20px;
}

.footer-column h2,
.footer-column h3 {
  color: #00ff99;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #00ff99;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 14px;
  color: #999;
}
