body {
  font-family: "Poppins", sans-serif;
  background-color: #000;
  padding: 1rem;
  margin: 0px;
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.01),
    rgba(255, 255, 255, 0.01) 1px,
    transparent 1px,
    transparent 15px
  );
  z-index: -1;
}

/* ========================== This Header Css Ends ========================== */
header {
  background-color: #000;
  box-shadow: none;
  padding: 0px;
  display: flex;
  justify-content: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.logo {
  flex: 0 1 auto;
  text-align: center;
}

.logo img {
  height: 65px;
  width: 100%;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #4a90e2;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
  }
}

/* ========================== This Header Css Ends ========================== */


/* ========================== This Image slider and Text Section One Starts ========================== */


.mobile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6% 1%;
}

.slider {
  width: 100%;
  /* max-width: 100%; */
  height: 360px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0rem;
  position: relative;
}

.slide-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide-img.active {
  opacity: 1;
  z-index: 1;
}

.text-content {
  text-align: center;
  width: 100%;
}

.text-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #F5C022;
}

.text-content p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
  padding: 0 5%;
}

.Registration-Btn-Space{
  margin-top: 30px;
}

.Registration-Wdth{
  width: 88%;
}

.cta-button {
  padding: 0.9rem 2rem;
  background-color: #f5c120;
  color: #000;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  animation: float 2.5s ease-in-out infinite;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  background-color: #f1b700;
  transform: scale(1.07);
  box-shadow: 0 6px 20px rgba(245, 193, 32, 0.5);
}

@keyframes float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}
/* ========================== This Image slider and Text Section One Ends ========================== */


/* ========================== Thiscss is Registration Form  Starts ========================== */

.form-container {
  width: auto;
  /* max-width: 420px; */
  background-color: #111;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(245, 193, 32, 0.1);
}

h2 {
  text-align: center;
  color: #f5c120;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input {
  width: 90%;
  padding: 1rem 0.5rem 0.5rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid #444;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-color: #f5c120;
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 0.5rem;
  color: #aaa;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.2s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 0.3rem;
  font-size: 0.75rem;
  color: #f5c120;
  background-color: #111;
  padding: 0 0.25rem;
}

.error {
  color: #ff4d4d;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.cta-button {
  width: 100%;
  padding: 1rem;
  background-color: #f5c120;
  color: #000;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  animation: float 2.5s ease-in-out infinite;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  background-color: #f1b700;
  transform: scale(1.07);
  box-shadow: 0 6px 20px rgba(245, 193, 32, 0.5);
}

@keyframes float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

#successMessage {
  text-align: center;
  margin-top: 1rem;
  color: #f5c120;
  font-weight: 600;
  display: none;
}

@media (max-width: 480px) {
  .form-container {
    padding: 1rem;
    padding-bottom: 2rem;
  }
}

/* ========================== This css is Registration Form Ends ========================== */

/* ========================== ThisRegister on Turbobetx Starts ========================== */

.card-section {
  padding: 2rem 1rem;
  background-color: #000;
}

.section-title {
  text-align: center;
  color: #f5c120;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.info-card {
  background-color: #111;
  color: #fff;
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid #222;
}

.info-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(245, 193, 32, 0.3);
  background-color: #1a1a1a;
}

.info-card i {
  font-size: 1.5rem;
  color: #f5c120;
  margin-bottom: 0.5rem;
}

.info-card h3 {
  font-size: 1rem;
  color: #fff;
  margin: 0;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.Register-Img-Class {
  width: 100%;
  height: 300px;
  margin-top: 35px;
  border-radius: 10px;
}

/* ========================== This Register on Turbobetx Ends ========================== */


/* ========================== Thiscss is How to Deposit on TURBOBETX Starts ========================== */


.how-deposit-section {
  padding: 2rem 1rem;
  background-color: #000;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.step-card {
  background-color: #111;
  color: #fff;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #222;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-card i {
  color: #f5c120;
  font-size: 1.2rem;
  min-width: 20px;
}

.step-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(245, 193, 32, 0.2);
  background-color: #1a1a1a;
}

.video-wrapper {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.yt-video {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  border: none;
  box-shadow: 0 6px 20px rgba(245, 193, 32, 0.2);
}

/* ========================== This css is How to Deposit on TURBOBETX Ends ========================== */

/* ========================== This css Footer Section Starts ========================== */

.footer {
  background-color: #0a0a0a;
  padding: 1.5rem 1rem;
  text-align: center;
  border-top: 1px solid #1a1a1a;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: 4rem;
}

.disclaimer {
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
  max-width: 600px;
  margin: 0 auto;
}
/* ========================== This css Footer Section Ends ========================== */


/* ========================== This css fixed-footer Section Starts ========================== */

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 92%;
  background-color: #0a0a0a;
  padding: 0.8rem 1rem;
  border-top: 1px solid #1a1a1a;
  z-index: 1000;
  display: flex;
  justify-content: center;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.4);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 600px;
}

.footer-text {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
}

/* Button Animation */
.animated-btn {
  background-color: #f5c120;
  color: #000;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.75rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  animation: floatBtn 2s ease-in-out infinite;
}

.animated-btn:hover {
  background-color: #ffdd57;
  box-shadow: 0 4px 12px rgba(245, 193, 32, 0.5);
  transform: scale(1.05);
}

@keyframes floatBtn {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Hide on tablets/desktops */
@media (min-width: 768px) {
  .fixed-footer {
    display: none;
  }
}
/* ========================== This css fixed-footer Section ends ========================== */


/* ========================== This css Registration Modal Section starts ========================== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

/* Modal Content Box */
.modal-content {
  background-color: transparent;
  margin: auto;
  padding: 0px;
  border: none;
  border-radius: 12px;
  max-width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 90%;
  border: 1px solid #dadada2e;
}

/* Close Button */
.close {
  color: #fff;
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/* ========================== This css Registration Modal Section starts ========================== */