/* Hero Section - Premium Black Theme */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 100px 20px;
  background-color: var(--bg);
  color: var(--text);
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding-right: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 25px;
  color: var(--primary);
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-primary {
  padding: 15px 35px;
  background-color: var(--primary);
  color: var(--dark);
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  padding: 15px 35px;
  background-color: var(--secondary);
  color: var(--dark);
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  opacity: 0.9;
}

.hero-footer-text {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--text-muted);
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
/* Verified Betting Section */
.verified-betting-section {
  background-color: var(--card-bg);
  color: var(--text);
  padding: 80px 20px;
}

.verified-betting-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.verified-betting-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--primary);
  text-align: center;
}

.verified-betting-section h2 span {
  color: var(--secondary);
}

.verified-betting-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.feature-card {
  background-color: var(--bg);
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

.verified-betting-section .btn-primary {
  display: block;
  margin: 0 auto;
  padding: 15px 40px;
  background-color: var(--primary);
  color: var(--dark);
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: var(--shadow);
}

.verified-betting-section .btn-primary:hover {
  opacity: 0.9;
}
/* Mahadev Book App & Software Section */
.app-software-section {
  background-color: var(--card-bg);
  color: var(--text);
  padding: 80px 20px;
}

.app-software-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.app-software-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--primary);
  text-align: center;
}

.app-software-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.feature-card {
  background-color: var(--bg);
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

.app-software-section .btn-primary {
  display: block;
  margin: 0 auto;
  padding: 15px 40px;
  background-color: var(--primary);
  color: var(--dark);
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: var(--shadow);
}

.app-software-section .btn-primary:hover {
  opacity: 0.9;
}
/* Registration Section - Alternative Layout */
.registration-section {
  background-color: var(--bg);
  color: var(--text);
  padding: 80px 20px;
}

.registration-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.registration-section h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--primary);
  text-align: center;
}

.registration-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 25px;
  text-align: center;
}

.registration-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}

.step-card {
  display: flex;
  align-items: flex-start;
  background-color: var(--card-bg);
  padding: 20px 25px;
  border-left: 6px solid var(--primary);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.step-card::before {
  content: "➤";
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 15px;
  flex-shrink: 0;
}

.step-card h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

/* Centered CTA */
.registration-section .btn-primary {
  display: block;
  margin: 30px auto 0 auto;
  padding: 15px 40px;
  background-color: var(--primary);
  color: var(--dark);
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: var(--shadow);
}

.registration-section .btn-primary:hover {
  opacity: 0.9;
}
/* Security Section */
.security-section {
  background-color: var(--bg);
  color: var(--text);
  padding: 80px 20px;
}

.security-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.security-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--primary);
  text-align: center;
}

.security-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 30px;
  text-align: center;
}

.security-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.security-left {
  flex: 1 1 400px;
}

.security-left ul {
  list-style: none;
  padding: 0;
}

.security-left li {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
  color: var(--text-muted);
}

.security-left li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.security-right {
  flex: 1 1 400px;
  text-align: center;
}

.security-right img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
}
/* Online Betting Section */
#online-betting {
  background-color: var(--card-bg);
  color: var(--text);
  padding: 100px 20px;
}

#online-betting .container {
  max-width: 1100px;
  margin: 0 auto;
}

#online-betting h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--primary);
  margin-bottom: 25px;
}

#online-betting p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-align: center;
}

/* Feature cards wrapper */
#online-betting .betting-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Individual feature cards */
#online-betting .feature-card {
  background-color: var(--bg);
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
  border-left: 5px solid var(--secondary);
}

#online-betting .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}

#online-betting .feature-card h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

#online-betting .feature-card p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

/* Add optional icon before each card */
#online-betting .feature-card::before {
  content: "🎮";
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* CTA Button */
#online-betting .btn-primary {
  display: inline-block;
  margin: 35px auto 0 auto;
  padding: 15px 50px;
  background: var(--primary);
  color: var(--dark);
  font-weight: bold;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

#online-betting .btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #online-betting h2 {
    font-size: 2rem;
  }
  #online-betting p {
    font-size: 1rem;
  }
}
