
html {
    box-sizing: border-box;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: local('Montserrat'),
      url('Montserrat-Regular.ttf') format('truetype');
    font-display: swap;
    font-weight: 400;
    font-style: normal;
  }
  
  body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
  }
  
  /* glob */
  
  .list-reset {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .btn-reset {
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
  }
  
  .flex {
    display: flex;
  }
  
  .container {
    max-width: 1240px;
    padding: 0 15px;
    margin: 0 auto;
  }

  /* Header Styles */
.header {

  background-color: #333;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  color: white;
  position: relative;
}

.logo h1 {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.nav-links ul {
  display: flex;
  list-style: none;
}

.nav-links ul li {
  margin: 0 20px;
}

.nav-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links ul li a:hover {
  color: #f1c40f;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  z-index: 111111111111;
  cursor: pointer;
}

.burger {
  height: 4px;
  width: 100%;
  background-color: white;
  transition: all 0.3s ease-in-out;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: #333;
  z-index: 1111111111;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: left 0.3s ease;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li {
  margin: 20px 0;
}

.mobile-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  text-transform: uppercase;
}

.mobile-nav ul li a:hover {
  color: #f1c40f;
}

/* Media Queries */
@media screen and (max-width: 1028px) {
  .nav-links {
      display: none;
  }

  .burger-menu {
      display: flex;
  }
}

.burger.rotate-top {
  transform: rotate(45deg) translateY(10px);
}

.burger.rotate-bottom {
  transform: rotate(-45deg) translateY(-10px);
}

.burger.fade {
  opacity: 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  background-image: url('img/hero.jpg'); /* Replace with your luxury background image */
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 1;
}

/* Hero Content */
.overlay {
  text-align: center;
  color: #fff;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 5px;
  animation: fadeIn 1s ease-out;
  color: #FFD700; /* Gold color */
}

.hero-subtitle {
  font-size: 1.5rem;
  margin: 20px 0;
  color: #e0e0e0;
  font-style: italic;
  animation: fadeIn 1.5s ease-out;
  animation-delay: 0.5s;
}

.cta-button {
  font-size: 1.2rem;
  background: linear-gradient(135deg, #ff7b00, #ffd700); /* Luxury gradient */
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  box-shadow: 0px 5px 20px rgba(255, 123, 0, 0.3);
  animation: buttonHover 2s infinite;
}

.cta-button:hover {
  transform: scale(1.1);
  transition: 0.3s ease;
}

.cta-button:active {
  transform: scale(1);
}

/* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes buttonHover {
  0% {
      box-shadow: 0 0 10px rgba(255, 123, 0, 0.5);
  }
  50% {
      box-shadow: 0 0 30px rgba(255, 123, 0, 0.7);
  }
  100% {
      box-shadow: 0 0 10px rgba(255, 123, 0, 0.5);
  }
}

/* Media Queries for Smaller Devices */
@media (max-width: 768px) {
  .hero-title {
      font-size: 3rem;
  }

  .hero-subtitle {
      font-size: 1.2rem;
  }

  .cta-button {
      padding: 10px 25px;
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
      font-size: 2.5rem;
  }

  .cta-button {
      padding: 8px 20px;
      font-size: 0.9rem;
  }
}

/* About Us Section */
.about-us-section {
  background-color: #1e1e1e;
  padding: 60px 0;
  color: #fff;
  line-height: 1.6;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading Styles */
.about-heading {
  text-align: center;
  margin-bottom: 40px;
}

.about-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #FFD700;
  letter-spacing: 3px;
  animation: fadeInUp 1s ease-in-out;
}

.about-subheading {
  font-size: 1.5rem;
  font-style: italic;
  color: #ccc;
  animation: fadeInUp 1.5s ease-in-out;
}

/* Content Styles */
.about-content {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.text-content {
  width: 60%;
  padding-right: 30px;
}

.text-content h3 {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 15px;
  animation: fadeInUp 2s ease-in-out;
}

.text-content p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 20px;
  animation: fadeInUp 2s ease-in-out;
}

.values-list {
  list-style-type: none;
  padding-left: 0;
}

.values-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #bbb;
  animation: fadeInUp 2.5s ease-in-out;
}

/* Image Content Styles */
.image-content {
  width: 35%;
  text-align: center;
}

.about-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  animation: zoomIn 1s ease-out;
}

.cta-wrapper {
  margin-top: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #FFD700;
  color: #1e1e1e;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.2rem;
  border-radius: 50px;
  box-shadow: 0px 5px 15px rgba(255, 215, 0, 0.3);
  animation: buttonHover 1.5s infinite;
}

.cta-button:hover {
  transform: scale(1.1);
  transition: 0.3s ease;
}

.cta-button:active {
  transform: scale(1);
}

/* Fun Facts Section */
.fun-facts {
  text-align: center;
  margin-top: 60px;
}

.fun-facts h3 {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 30px;
}

.facts-container {
  display: flex;
  justify-content: space-around;
}

.fact-box {
  background-color: #333;
  padding: 30px;
  width: 25%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.fact-box:hover {
  transform: translateY(-10px);
}

.fact-box h4 {
  font-size: 3rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.fact-box p {
  font-size: 1.2rem;
  color: #fff;
}

/* Animations */
@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
      transform: scale(0.8);
      opacity: 0;
  }
  100% {
      transform: scale(1);
      opacity: 1;
  }
}

@keyframes buttonHover {
  0% {
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  }
  50% {
      box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
  }
  100% {
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .about-content {
      flex-direction: column;
      align-items: center;
  }

  .text-content {
      width: 100%;
      padding-right: 0;
  }

  .image-content {
      width: 100%;
      margin-top: 20px;
  }

  .about-image {
      max-width: 400px;
  }

  .cta-button {
      padding: 10px 25px;
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-title {
      font-size: 2rem;
  }

  .about-subheading {
      font-size: 1.2rem;
  }

  .text-content h3 {
      font-size: 1.8rem;
  }

  .cta-button {
      padding: 8px 20px;
      font-size: 0.9rem;
  }
}

.game-features-section {
  background-color: #1e1e1e;
  padding: 80px 20px;
  color: #fff;
  line-height: 1.6;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading Styling */
.heading-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #FFD700;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-in-out;
}

.section-description {
  font-size: 1.2rem;
  font-style: italic;
  color: #ccc;
  margin-top: 10px;
  animation: fadeInUp 1.5s ease-in-out;
}

/* Features List Styling */
.features-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.feature-box {
  background-color: #333;
  width: 30%;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  opacity: 0;
  animation: fadeInUp 2s ease-in-out forwards;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-title {
  font-size: 1.6rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.feature-text {
  font-size: 1rem;
  color: #bbb;
}

/* Feature Image Styling */
.feature-image {
  margin-bottom: 20px;
  text-align: center;
}

.feature-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Call to Action Section */
.cta-section {
  text-align: center;
  margin-top: 60px;
}

.cta-title {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #FFD700;
  color: #1e1e1e;
  text-decoration: none;
  font-size: 1.3rem;
  letter-spacing: 2px;
  border-radius: 50px;
  box-shadow: 0px 10px 30px rgba(255, 215, 0, 0.5);
  transition: transform 0.3s ease;
  animation: buttonHover 2s infinite;
}

.cta-button:hover {
  transform: scale(1.1);
  transition: 0.3s ease;
}

.cta-button:active {
  transform: scale(1);
}

/* Animations */
@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes buttonHover {
  0% {
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  }
  50% {
      box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
  }
  100% {
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-list {
      flex-direction: column;
      gap: 40px;
  }

  .feature-box {
      width: 100%;
      padding: 20px;
  }
}

@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }

  .cta-title {
      font-size: 2rem;
  }

  .cta-button {
      padding: 12px 30px;
      font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .section-description {
      font-size: 1rem;
  }

  .cta-button {
      padding: 10px 25px;
      font-size: 1rem;
  }
}

/* Ultimate Experience Section */
.ultimate-experience {
  background-color: #222;
  padding: 80px 20px;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Intro Text */
.intro-text {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FFD700;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease-in-out;
}

.section-subheading {
  font-size: 1.2rem;
  color: #ddd;
  margin-top: 15px;
  font-style: italic;
  animation: fadeInUp 1.5s ease-in-out;
}

/* Game Benefits Section */
.game-benefits {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.benefit-box {
  width: 30%;
  background-color: #333;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
  opacity: 0;
  animation: fadeInUp 2s ease-in-out forwards;
}

.benefit-box:hover {
  transform: translateY(-10px);
}

.benefit-title {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.benefit-text {
  font-size: 1rem;
  color: #ccc;
}

.benefit-image {
  text-align: center;
  margin-bottom: 20px;
}

.benefit-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Call to Action Section */
.cta-section {
  text-align: center;
  margin-top: 60px;
}

.cta-heading {
  font-size: 2.6rem;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 30px;
}

.cta-button {
  padding: 15px 40px;
  background-color: #FFD700;
  color: #222;
  text-decoration: none;
  font-size: 1.4rem;
  border-radius: 50px;
  box-shadow: 0px 10px 20px rgba(255, 215, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.1);
  box-shadow: 0px 20px 30px rgba(255, 215, 0, 0.7);
}

.cta-button:active {
  transform: scale(1);
}

/* Animations */
@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .game-benefits {
      flex-direction: column;
      gap: 40px;
  }

  .benefit-box {
      width: 100%;
      padding: 20px;
  }
}

@media (max-width: 768px) {
  .section-heading {
      font-size: 2.2rem;
  }

  .cta-heading {
      font-size: 2.2rem;
  }

  .cta-button {
      padding: 12px 30px;
      font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .section-subheading {
      font-size: 1rem;
  }

  .cta-button {
      padding: 10px 25px;
      font-size: 1.1rem;
  }
}

.how-to-play-section {
  background-color: #101820;
  padding: 60px 20px;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #FFD700;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease-out;
}

.subtitle {
  font-size: 1.1rem;
  color: #ddd;
  margin-top: 15px;
  font-style: italic;
  animation: fadeIn 1.2s ease-out;
}

/* Steps Container */
.steps-container {
  display: grid;
  width: 100%;
  gap: 20px;
  margin-top: 40px;
}

.step {
  background-color: #1c1c1c;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
  opacity: 0;
  animation: slideIn 2s ease-out forwards;
}

.step:hover {
  transform: translateY(-10px);
}

.step-number {
  font-size: 2.5rem;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.step-description {
  font-size: 1rem;
  color: #ddd;
}

/* Call to Action Section */
.cta-section {
  text-align: center;
  margin-top: 60px;
}

.cta-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 30px;
}

.cta-button {
  padding: 15px 40px;
  background-color: #FFD700;
  color: #222;
  text-decoration: none;
  font-size: 1.4rem;
  border-radius: 50px;
  box-shadow: 0px 10px 20px rgba(255, 215, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.1);
  box-shadow: 0px 20px 30px rgba(255, 215, 0, 0.7);
}

.cta-button:active {
  transform: scale(1);
}

/* Animations */
@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@keyframes slideIn {
  0% {
      opacity: 0;
      transform: translateY(50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .steps-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .steps-container {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .title {
      font-size: 2.2rem;
  }

  .cta-title {
      font-size: 2rem;
  }

  .cta-button {
      padding: 12px 30px;
      font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .title {
      font-size: 1.8rem;
  }

  .cta-button {
      padding: 10px 25px;
      font-size: 1.1rem;
  }
}

/* Timeline Section */
.timeline-section {
  padding: 80px 20px;
  background-color: #121212;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.8rem;
  color: #FFD700;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeIn 1s ease-out;
}

.section-description {
  font-size: 1.2rem;
  color: #ccc;
  margin-top: 20px;
  font-style: italic;
  animation: fadeIn 1.2s ease-out;
}

/* Timeline Styling */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 30px;
  background-color: #1c1c1c;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeInLeft 2s ease-out forwards;
}

.timeline-date {
  font-size: 2rem;
  font-weight: bold;
  color: #FFD700;
  position: absolute;
  top: 10px;
  left: 10px;
}

.timeline-content {
  display: flex;
  gap: 30px;
}

.timeline-image img {
  display: none;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}



.timeline-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.timeline-description {
  font-size: 1.1rem;
  color: #ddd;
}

/* Call to Action Section */
.cta-section {
  text-align: center;
  margin-top: 60px;
}

.cta-text {
  font-size: 1.4rem;
  color: #FFD700;
  margin-bottom: 20px;
}

.cta-button {
  padding: 15px 40px;
  background-color: #FFD700;
  color: #101820;
  text-decoration: none;
  font-size: 1.4rem;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 30px rgba(255, 215, 0, 0.7);
}

.cta-button:active {
  transform: scale(1);
}

/* Animations */
@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@keyframes fadeInLeft {
  0% {
      opacity: 0;
      transform: translateX(-50px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .timeline-item {
      flex-direction: column;
  }

  .timeline-content {
      flex-direction: column;
      align-items: center;
  }

  .timeline-date {
      position: relative;
      margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .section-title {
      font-size: 2.4rem;
  }

  .cta-text {
      font-size: 1.2rem;
  }

  .cta-button {
      padding: 12px 30px;
      font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .section-title {
      font-size: 1.8rem;
  }

  .cta-button {
      padding: 10px 25px;
      font-size: 1.1rem;
  }
}



/* Exclusive Features Section */
.exclusive-features-section {
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 50px 20px;
}

.exclusive-container {
  max-width: 1200px;
  margin: 0 auto;
}

.exclusive-header {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700;
  animation: slideIn 1s ease-out;
}

.exclusive-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #CCCCCC;
  margin-bottom: 40px;
  animation: fadeIn 1.2s ease-out;
}

/* Content Layout */
.exclusive-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Left Content */
.exclusive-left {
  flex: 1 1 45%;
  position: relative;
}

.exclusive-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  animation: fadeInOverlay 1.5s ease-out;
}

.image-text {
  font-weight: bold;
}

.exclusive-img:hover {
  transform: scale(1.05);
}

/* Right Content */
.exclusive-right {
  flex: 1 1 50%;
  padding-left: 20px;
}

.exclusive-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #FFD700;
  animation: fadeInUp 1s ease-out;
}

.exclusive-description {
  font-size: 1rem;
  color: #CCCCCC;
  margin-bottom: 20px;
  animation: fadeInUp 1.2s ease-out;
}

.exclusive-inline-img {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.inline-text {
  font-size: 1rem;
  color: #CCCCCC;
  text-align: center;
}

/* CTA Button */
.cta-button {
  padding: 15px 30px;
  background-color: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  font-size: 1.3rem;
  margin-top: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInFromBottom 1.5s ease-out;
}

.cta-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.5);
}

/* Animations */
@keyframes slideIn {
  0% {
      opacity: 0;
      transform: translateX(-50px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(30px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInOverlay {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInFromBottom {
  0% {
      opacity: 0;
      transform: translateY(50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .exclusive-content {
      flex-direction: column;
  }

  .exclusive-right {
      padding-left: 0;
  }
}

.strategy-masterclass {
  background-color: #1A1A2E;
  color: #FFF;
  padding: 60px 20px;
}

.strategy-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header and Subheader */
.strategy-header {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  color: #FFD700;
  animation: slideInFromLeft 1s ease-out;
}

.strategy-subheader {
  text-align: center;
  font-size: 1.2rem;
  color: #CCCCCC;
  margin-bottom: 40px;
  animation: fadeIn 1.2s ease-out;
}

/* Grid Layout */
.strategy-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Left Section */
.strategy-left {
  flex: 1 1 45%;
  position: relative;
}

.strategy-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: zoomIn 1.5s ease-out;
}

.quote-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
  border-radius: 8px;
  animation: fadeInUp 1.5s ease-out;
}

.quote {
  font-size: 1rem;
  color: #FFD700;
  margin-bottom: 5px;
}

.quote-author {
  font-size: 0.9rem;
  color: #CCCCCC;
}

/* Right Section */
.strategy-right {
  flex: 1 1 50%;
  padding-left: 20px;
}

.strategy-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #FFD700;
  animation: slideInFromRight 1s ease-out;
}

.strategy-text {
  font-size: 1rem;
  color: #CCCCCC;
  margin-bottom: 20px;
  animation: fadeIn 1.2s ease-out;
}

.strategy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.strategy-list li {
  font-size: 1rem;
  color: #CCCCCC;
  margin-bottom: 10px;
  animation: fadeIn 1.5s ease-out;
}

.highlight {
  color: #FFD700;
  font-weight: bold;
}

/* CTA Button */
.cta-button {
  padding: 15px 30px;
  background-color: #FFD700;
  color: #1A1A2E;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  font-size: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1.5s ease-out;
}

.cta-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.5);
}

/* Animations */
@keyframes slideInFromLeft {
  0% {
      opacity: 0;
      transform: translateX(-50px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
      opacity: 0;
      transform: translateX(50px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }

}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
      transform: scale(0.8);
      opacity: 0;
  }
  100% {
      transform: scale(1);
      opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .strategy-grid {
      flex-direction: column;
  }

  .strategy-right {
      padding-left: 0;
  }
}

/* Champions Journey Section */
.champions-journey {
  background: linear-gradient(to bottom, #0D0D0D, #1C1C1C);
  padding: 60px 20px;
  color: #FFF;
}

.journey-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Header */
.journey-header {
  margin-bottom: 40px;
}

.journey-title {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 10px;
  animation: slideIn 1s ease-out;
}

.journey-description {
  font-size: 1.2rem;
  color: #BBB;
  animation: fadeIn 1.2s ease-out;
}

/* Steps */
.journey-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  background: #222;
  border: 2px solid #FFD700;
  border-radius: 10px;
  padding: 20px;
  width: calc(33.333% - 20px);
  text-align: left;
  position: relative;
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.step-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD700;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step-icon img {
  width: 50%;
  height: 50%;
}

.step-title {
  font-size: 1.5rem;
  margin-top: 50px;
  color: #FFD700;
  margin-bottom: 10px;
}

.step-text {
  font-size: 1rem;
  color: #CCC;
}

/* Footer */
.journey-footer {
  margin-top: 40px;
}

.start-now-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700;
  color: #1C1C1C;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: bounce 2s infinite;
}

.start-now-btn:hover {
  background-color: #FFA500;
  transform: scale(1.1);
}

/* Animations */
@keyframes slideIn {
  0% {
      transform: translateX(-50px);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
      transform: scale(0.8);
      opacity: 0;
  }
  100% {
      transform: scale(1);
      opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .journey-steps {
      flex-direction: column;
  }

  .step {
      width: 100%;
  }
}


/* Section Styling */
.triple-view-section {
  background: linear-gradient(to right, #e3f2fd, #fce4ec);
  padding: 60px 20px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Content Wrapper */
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  align-items: center;
}

/* Left Image */
.left-img img,
.right-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.left-img img:hover,
.right-img img:hover {
  transform: scale(1);
}

/* Center Content */
.center-content {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #1E88E5;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
}

.section-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.highlights-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  animation: fadeInLeft 1s ease;
}

.highlights-list li {
  margin: 10px 0;
  color: #333;
  font-size: 1rem;
  position: relative;
  padding-left: 30px;
}


/* Button */
.explore-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FF4081;
  color: #FFF;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, background-color 0.3s ease;
  animation: bounce 2s infinite;
}

.explore-btn:hover {
  background-color: #F50057;
  transform: scale(1.1);
}

/* Right Image */
.right-img {
  text-align: right;
}

/* Animations */
@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
      opacity: 0;
      transform: translateX(-20px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .content-wrapper {
      grid-template-columns: 1fr;
  }

  .left-img, .right-img {
      display: none;
  }

  .center-content {
      text-align: center;
  }
}

/* Download Section */
.download-section {
  background: linear-gradient(to right, #f5f7fa, #c3cfe2);
  padding: 60px 20px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.download-content {
  animation: fadeInLeft 1s ease-in-out;
}

.download-title {
  font-size: 2.8rem;
  color: #0D47A1;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.download-description {
  font-size: 1.2rem;
  
  line-height: 1.6;
  margin-bottom: 25px;
  animation: fadeInUp 1s ease;
}

.download-features {
  list-style: none;
  margin-bottom: 30px;
  animation: fadeInRight 1s ease;
}

.download-features li {
  font-size: 1.1rem;
  color: #333;
  margin: 10px 0;
  position: relative;
  padding-left: 30px;
}

.download-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0D47A1;
  font-size: 1.4rem;
}

.download-buttons {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1s ease-in-out;
}

.btn-download {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1rem;
  color: #FFF;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.appstore {
  background-color: #1E88E5;
}

.playstore {
  background-color: #43A047;
}

.btn-download:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Download Images */
.download-images {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow-x: auto;
  gap: 20px;
}

.left-image,
.right-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transform: scale(0.9);
  transition: transform 0.5s ease-in-out;
}

.left-image:hover,
.right-image:hover {
  transform: scale(1);
}

/* Animations */
@keyframes fadeInLeft {
  from {
      opacity: 0;
      transform: translateX(-30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
      opacity: 0;
      transform: translateX(30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .content-grid {
      grid-template-columns: 1fr;
  }

  .download-images {
      justify-content: center;
      gap: 40px;
  }
}
.download-app-section {
  background: linear-gradient(120deg, #0d47a1, #42a5f5);
  color: #ffffff;
  padding: 60px 20px;
}

.containerq {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.download-app-content {
  flex: 1;
  
  max-width: 600px;
  animation: fadeInLeft 1s ease-in-out;
}

.download-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.download-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.download-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-label {
  font-size: 1rem;
  margin-bottom: 5px;
}

.phone-input {
  padding: 10px 15px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  outline: none;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.policy-check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-check input {
  width: 16px;
  height: 16px;
}

.privacy-link {
  color: #ffca28;
  text-decoration: none;
  font-weight: bold;
}

.privacy-link:hover {
  text-decoration: underline;
}

.download-button {
  padding: 12px 20px;
  background-color: #ffca28;
  color: #0d47a1;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-button:hover {
  background-color: #ffd740;
  box-shadow: 0 5px 15px rgba(255, 202, 40, 0.3);
  transform: translateY(-2px);
}

/* App Preview Images */
.app-preview-images {
  flex: 1;
  text-align: center;
  animation: fadeInRight 1s ease-in-out;
}

.phone-image {
  max-width: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInLeft {
  from {
      opacity: 0;
      transform: translateX(-30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
      opacity: 0;
      transform: translateX(30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .containerq {
      flex-direction: column;
      text-align: center;
  }

  .download-app-content {
      margin-bottom: 30px;
  }
}

.app-preview-section {
  background: #ff6f00;
  padding: 80px 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.containerz {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Preview Text Styling */
.preview-text {
  flex: 1;
  animation: fadeInLeft 1s ease-in-out;
}

.preview-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fffde7;
  text-align: left;
}

.preview-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.cta-btn, .secondary-btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-btn {
  background-color: #ffffff;
  color: #ff6f00;
  border: 3px solid #ffffff;
}

.cta-btn:hover {
  background-color: #ffcc80;
  color: #ffffff;
  transform: translateY(-5px);
}

.secondary-btn {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.secondary-btn:hover {
  background-color: #ffffff;
  color: #ff6f00;
  transform: translateY(-5px);
}

/* Preview Image Styling */
.preview-images {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  animation: fadeInRight 1s ease-in-out;
}

.image-box {
  width: 48%;
  position: relative;
}

.preview-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease-in-out;
}

.preview-img:hover {
  transform: scale(1.05);
}

/* Keyframes for Animations */
@keyframes fadeInLeft {
  0% {
      opacity: 0;
      transform: translateX(-30px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
      opacity: 0;
      transform: translateX(30px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .containerz {
      flex-direction: column;
      text-align: center;
  }

  .preview-text {
      margin-bottom: 40px;
  }

  .preview-title {
      font-size: 2rem;
  }

  .preview-description {
      font-size: 1.1rem;
  }

  .preview-images {
      flex-direction: column;
      gap: 30px;
  }

  .image-box {
      width: 100%;
  }

  .cta-btn, .secondary-btn {
      font-size: 1rem;
      padding: 12px 25px;
  }
}

.blog-section {
  background-color: #e3f2fd;
  padding: 60px 20px;
  color: #333;
}

.containerg {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00796b;
  margin-bottom: 10px;
}

.section-subheading {
  font-size: 1.2rem;
  color: #555;
  font-weight: 400;
}

/* Blog Post Cards */
.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.post-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.post-img {
  width: 100%;
  
  object-fit: cover;
}

.post-content {
  padding: 20px;
}

.post-title {
  font-size: 1.8rem;
  color: #00796b;
  margin-bottom: 15px;
}

.post-summary {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 24px;
  background-color: #00796b;
  color: #fff;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: #004d40;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .containerg {
      padding: 0 10px;
  }

  .blog-posts {
      flex-direction: column;
  }

  .post-card {
      flex-direction: column;
  }

  .post-img {
      height: 180px;
  }

  .post-title {
      font-size: 1.5rem;
  }

  .section-heading {
      font-size: 2rem;
  }
}

.betinexchange-blog-section {
  background-color: #e0f7fa;
  padding: 60px 20px;
}

.betinexchange-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.betinexchange-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.betinexchange-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00796b;
  margin-bottom: 10px;
}

.betinexchange-subheading {
  font-size: 1.1rem;
  color: #555;
  font-weight: 300;
}

/* Blog Post */
.betinexchange-blog-post {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.betinexchange-blog-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.betinexchange-post-img img {
  width: 100%;
  
  object-fit: cover;
}

.betinexchange-post-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.betinexchange-post-title {
  font-size: 2rem;
  color: #00796b;
  margin-bottom: 15px;
  font-weight: bold;
}

.betinexchange-post-summary {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

.betinexchange-read-more-btn {
  padding: 12px 24px;
  background-color: #00796b;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.betinexchange-read-more-btn:hover {
  background-color: #004d40;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .betinexchange-container {
      padding: 0 20px;
  }

  .betinexchange-post-img img {
      height: 250px;
  }

  .betinexchange-post-title {
      font-size: 1.5rem;
  }

  .betinexchange-section-header {
      margin-bottom: 30px;
  }

  .betinexchange-heading {
      font-size: 2rem;
  }

  .betinexchange-subheading {
      font-size: 1rem;
  }
}

/* Footer Section Styling */
.betinexchange-footer {
  background-color: #00796b;
  color: white;
  padding: 30px 0;
  font-family: 'Arial', sans-serif;
}

.betinexchange-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.betinexchange-footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.betinexchange-footer-text {
  font-size: 1rem;
  color: #ffffff;
}

.betinexchange-footer-links {
  display: flex;
  gap: 20px;
}

.betinexchange-footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.betinexchange-footer-link:hover {
  color: #004d40;
}

/* Responsive Design */
@media (max-width: 768px) {
  .betinexchange-footer-container {
      padding: 0 20px;
  }

  .betinexchange-footer-links {
      flex-direction: column;
      gap: 10px;
  }

  .betinexchange-footer-link {
      font-size: 1rem;
  }
}

.contact-section {
  background-color: #f9f9f9;
  padding: 50px 0;
  color: #444;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-title {
  text-align: center;
  font-size: 2.5rem;
  color: #004d40;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Footer Text Styling */
.footer-text {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
}

.footer-text a {
  text-decoration: none;
  color: #004d40;
  transition: color 0.3s ease;
}

.footer-text a:hover {
  color: #00796b;
}

/* Contact Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #333;
}

.form-input,
.form-textarea {
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  background-color: #f7f7f7;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #00796b;
}

.form-textarea {
  resize: vertical;
}

/* Checkbox Styling */
input[type="checkbox"] {
  margin-right: 10px;
}

.form-button {
  padding: 15px 25px;
  background-color: #00796b;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: center;
}

.form-button:hover {
  background-color: #004d40;
}

.form-button:active {
  transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-title {
      font-size: 2rem;
  }

  .footer-text {
      font-size: 1rem;
  }

  .form-group {
      flex-direction: column;
  }

  .form-input,
  .form-textarea {
      font-size: 1rem;
  }

  .form-button {
      width: 100%;
      font-size: 1rem;
  }
}

/* Additional Styles for Links and Hover Effects */



.tactics-section {
  background-color: #ffffff;
  padding: 40px 20px;
}

.tactics-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.tactics-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1e90ff;
}

.tactics-text {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}

.tactics-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.tactics-list-item {
  margin-bottom: 15px;
  font-size: 1rem;
  position: relative;
  padding-left: 25px;
}

.tactics-list-item::before {
  content: "✔";
  color: #1e90ff;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .tactics-title {
      font-size: 1.8rem;
  }

  .tactics-text {
      font-size: 0.95rem;
  }

  .tactics-list-item {
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .tactics-title {
      font-size: 1.6rem;
  }

  .tactics-text {
      font-size: 0.85rem;
  }

  .tactics-list-item {
      font-size: 0.85rem;
  }
}











@media (max-width: 1144px) {

  
  
}

@media (max-width: 768px) {

  .event-content,.facts-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .fact-box {
    width: 100%;
    margin-bottom: 10px;
  }
  
}



@media (max-width: 425px) {
 
  .fun-facts h3, .exclusive-header, .download-title {
    font-size: 2em;
  }

  .section-title {
    font-size: 24px;
  }

  .title {
    font-size: 22px;
  }
}



/* Testimonials Section */
.testimonial-section {
  background-color: #2E2E2E;
  padding: 60px 20px;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.testimonial-header {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FFD700;
  text-transform: uppercase;
  margin-bottom: 15px;
  animation: slideInFromLeft 1s ease-out;
}

.testimonial-intro {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease-out;
}

/* Testimonial Cards */
.testimonial-cards {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: #3C3C3C;
  width: 30%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.testimonial-img-container {
  margin-bottom: 20px;
  text-align: center;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-img:hover {
  transform: scale(1.1);
}

.testimonial-player-name {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 10px;
}

.testimonial-description {
  font-size: 1rem;
  color: #ddd;
}

/* CTA Button */
.cta-section {
  margin-top: 40px;
}

.cta-button {
  padding: 15px 40px;
  background-color: #FFD700;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1.3rem;
  border-radius: 50px;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInFromBottom 1.5s ease-out;
}

.cta-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.5);
}

/* Animations */
@keyframes slideInFromLeft {
  0% {
      opacity: 0;
      transform: translateX(-50px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(30px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInFromBottom {
  0% {
      opacity: 0;
      transform: translateY(50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-cards {
      flex-direction: column;
      align-items: center;
  }

  .testimonial-card {
      width: 80%;
  }

  .testimonial-img {
      width: 80px;
      height: 80px;
  }
}