* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
      background-color: black;
    font-family: Arial, sans-serif;
  }

  /* Header Styles */
  header {
    background: black;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .logo img {
    width: 300px;
    height: 100px;
    object-fit: contain;
  }

  .logo span {
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
    color: #333;
  }

  .get-id-button {
    padding: 10px 20px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
  }

  .get-id-button:hover {
    background: #02f75c;
  }

  /* Text Slider Section */
  .text-slider-container {
    display: flex;
    align-items: center;
    background: #ffe9a3;
    padding: 10px 20px;
    margin-top: 10px;
  }

  .notice-btn {
    background: #ff5722;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    margin-right: 15px;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
    border: none;
  }

  .notice-btn:hover {
    background: #e64a19;
  }

  .text-slider {
    flex: 1;
    overflow: hidden;
    height: 30px;
    line-height: 30px;
    display: flex;
    align-items: center;
    position: relative;
  }

  .text-slider span {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    position: absolute;
    animation: slide 8s linear infinite;
  }

  @keyframes slide {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    header {
      flex-wrap: nowrap;
      justify-content: space-between;
    }

    .logo img {
      width: 180px;
      height: 100px;
    }

    .logo span {
      font-size: 18px;
    }

    .get-id-button {
      font-size: 14px;
      padding: 8px 16px;
    }

    .text-slider-container {
      flex-direction: row;
      align-items: center;
    }

    .notice-btn {
      font-size: 12px;
      padding: 8px 12px;
    }

    .text-slider span {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .logo img {
      width: 120px;
      height: 80px;
    }

    .logo span {
      font-size: 20px;
    }

    .get-id-button {
      font-size: 18px;
      padding: 6px 10px;
    }

    .notice-btn {
      font-size: 20px;
      padding: 6px 10px;
    }
  }


  /* image slider section */


  /* Slider Container */
  .slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
  }

  /* Slider */
  .slider {
    display: flex;
    transition: transform 0.5s ease;
  }

  .slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Image Holder */
  .image-holder {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .image-holder img {
    width: 100%;
    height: 100%;
    object-fit:fill;
  }

  /* Dots Navigation */
  .dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
  }

  .dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }

  .dot.active {
    background-color: #717171;
  }

  /* Media Queries */
  @media (max-width: 768px) {
    .image-holder {
      height: 250px; /* Adjust height for smaller screens */
    }
  }

  @media (max-width: 480px) {
    .image-holder {
      height: 200px; /* Further adjustment for very small screens */
    }
  }
  /* image slider section end */


  
  /* Section Container */
  .statistics-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
  }

  .stat-column {
    background-color: #444;
    padding: 20px;
    width: 30%;
    border-radius: 8px;
    text-align: center;
  }

  .stat-number {
    font-size: 40px;
    font-weight: bold;
    color: yellow;
    font-style: italic;
  }

  .stat-text {
    font-size: 16px;
    color: white;
    font-family: 'Courier New', Courier, monospace;
  }

  /* Media Query for Smaller Screens */
  @media (max-width: 768px) {
    .statistics-section {
      flex-direction: column;
      align-items: center;
    }

    .stat-column {
      width: 80%;
      margin-bottom: 20px;
    }
  }

  /* vericle icons */

/* Vertical Fixed Icon Bar */
.fixed-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Individual Icon Style */
  .fixed-icons a {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: white;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    overflow: hidden;
  }

  /* Hover Effect */
  .fixed-icons a:hover {
    background-color: #0073e6;
  }

  /* WhatsApp Icon */
  .whatsapp-icon img {
    width: 40px; /* Adjust size of the WhatsApp image */
    height: 40px;
  }

  /* Instagram Icon */
  .insta-icon img {
    width: 40px; /* Adjust size of the Instagram image */
    height: 40px;
  }

  /* Telegram Icon */
  .telegram-icon img {
    width: 40px; /* Adjust size of the Telegram image */
    height: 40px;
  }

  /* site available section */
/* Section container */
.available-sites-section {
    background-color: #000000;
    text-align: center;
    margin: 40px 10px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  /* Heading styling */
  .available-sites-section h2 {
    font-size: 36px;
    color: #FFEB3B; /* Yellow color */
    font-weight: bold;
    font-style: italic;
    margin-bottom: 20px;
  }

  /* Image container */
  .image-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap; /* Ensures images wrap on smaller screens */
    margin-top: 20px;
  }

  .image-container img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
  }

  .image-container img:hover {
    transform: scale(1.1);
  }

  /* Responsive styling for smaller screens */
  @media (max-width: 768px) {
    .image-container img {
      width: 200px;
      height: 150px;
    }
  }


  /* WhatsApp Button Section */
  .whatsapp-btn-section {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
  }

  /* Blow-up Animation */
  @keyframes blowup {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2); /* Blow-up effect */
    }
    100% {
      transform: scale(1);
    }
  }

  /* WhatsApp Button Styling */
  .whatsapp-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #25d366; /* WhatsApp Green */
    color: white;
    font-size: 20px;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    animation: blowup 2s infinite; /* Applying the blow-up animation */
  }

  .whatsapp-btn:hover {
    background-color: #05fd60; /* Darker Green */
  }



  /* Games Section */
  .games-section {
    background-color: #000000;
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 10px;
  }

  /* Heading Styling for Games Section */
  .games-section h2 {
    font-size: 36px;
    color: #FFEB3B; /* Yellow color */
    font-weight: bold;
    font-style: italic;
    margin-bottom: 20px;
  }

  /* Image Container for Games */
  .games-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 images per row */
    gap: 10px;
    padding-top: 20px;
  }

  .games-container img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
  }

  /* Hover effect on images */
  .games-container img:hover {
    transform: scale(1.1);
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .games-container {
      grid-template-columns: repeat(4, 1fr); /* 4 images per row on tablets */
    }
  }

  @media (max-width: 768px) {
    .games-container {
      grid-template-columns: repeat(3, 1fr); /* 3 images per row on mobile */
    }
  }

  @media (max-width: 480px) {
    .games-container {
      grid-template-columns: repeat(2, 1fr); /* 2 images per row on very small screens */
    }
  }


  
  
  /* Footer Styling */
  .footer {
    background-color: #000000;
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
  }

  /* Centering the Logo */
  .footer .logo {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer .logo img {
    width: 300px;
    height: 100px;
  }

  .footer h3 {
    color: #FFEB3B; /* Yellow color */
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .footer .contact-section {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
  }

  .footer .contact-section div {
    text-align: left;
  }

  .footer .contact-section div p {
    margin: 5px 0;
  }

  /* Mobile Responsive Design */
  @media (max-width: 768px) {
    .footer .contact-section {
      flex-direction: column;
      align-items: center;
    }

    .footer .contact-section div {
      text-align: center;
      margin-bottom: 20px;
    }
  }

  .footer .rights {
    color: #FFEB3B; /* Yellow color */
    font-size: 12px;
    margin-top: 20px;
  }

  /* avwerenaess */
  .awareness-section {
          max-width: 800px;
          margin: 40px auto;
          padding: 20px;
          background: #fff;
          border-radius: 10px;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          text-align: center;
      }
      .awareness-section h2 {
          color: #d9534f;
      }
      .awareness-section p {
          color: #333;
          line-height: 1.6;
      }
      .points {
          text-align: left;
          margin-top: 15px;
      }
      .points li {
          margin-bottom: 10px;
      }
      .cta {
          margin-top: 20px;
          display: inline-block;
          padding: 10px 20px;
          background: #d9534f;
          color: white;
          text-decoration: none;
          border-radius: 5px;
          font-weight: bold;
      }
      .cta:hover {
          background: #c9302c;
      }



      /* Section styling */
#welcome {
    display: flex;
    flex-direction: column; /* This makes the content stack vertically */
    justify-content: center; /* Center items vertically */
    align-items: center; /* Center items horizontally */
    height: 100vh; /* Take full height of the viewport */
    text-align: center; /* Center the text */
    padding: 20px;
    color: white;
  }
  
  .welcometextbox {
    max-width: 800px; /* Limit the width of the text box */
    margin-bottom: 20px;
  }
  
  .welcomeimg {
    max-width: 100%; /* Ensure image is responsive */
    display: flex;
    justify-content: center; /* Center the image */
  }
  
  .welcomeimg img {
    width: 100%;
    max-width: 400px; /* Limit max width of image */
    height: auto; /* Maintain aspect ratio */
  }
    h1 {
    font-size: 45px;
    margin-top: 20px;
}
  
  /* For screens smaller than 768px (Tablet view and smaller) */
  @media screen and (max-width: 768px) {
    #welcome {
      padding: 20px;
      color: white;
    }
  
    .welcometextbox {
      padding: 15px;
      color: white;
    }
  
    .welcomeimg img {
      max-width: 100%;
    }
    #welcome h1 {
        font-size: 25px;
        margin-top: 20px;
    }
  }
  
  /* For screens smaller than 480px (Mobile view) */
  @media screen and (max-width: 480px) {
    #welcome {
      padding: 10px;
    }
    #welcome h1 {
        font-size: 25px;
        margin-top: 20px;
    }
  
    .welcometextbox p {
      font-size: 14px; /* Make text smaller on mobile */
      word-break: break-all;
    }
  
    .welcomeimg img {
      max-width: 100%;
    }
  }




/* Styling for the #mdtxt section */
#mdtxt {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Center items vertically */
    align-items: center; /* Center items horizontally */
    height: 100vh; /* Full viewport height */
    text-align: center; /* Center the text */
    padding: 20px;
  /* Lighter background for contrast */
  }
  
  #mdtxt h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white; /* Dark text for better readability */
  }
  
  #mdtxt p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: white; /* Slightly lighter text for paragraph */
    line-height: 1.6;
    max-width: 800px; /* Limit text width for readability */
  }
  
  #mdtxt button {
    background-color: #25d366; /* WhatsApp green */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 20px;
  }
  
  /* Button hover effect */
  #mdtxt button:hover {
    background-color: #128c7e; /* Darker green on hover */
  }
  
  /* Media Queries for smaller screens */
  @media screen and (max-width: 768px) {
    #mdtxt {
      padding: 15px;
    }
  
    #mdtxt h1 {
      font-size: 1.8rem; /* Smaller header size for tablet */
    }
  
    #mdtxt p {
      font-size: 1rem; /* Adjust text size for readability */
    }
  
    #mdtxt button {
      padding: 12px 25px; /* Adjust button padding for smaller screens */
    }
  }
  
  @media screen and (max-width: 480px) {
    #mdtxt {
      padding: 10px;
    }
  
    #mdtxt h1 {
      font-size: 1.6rem; /* Smaller header for mobile */
    }
  
    #mdtxt p {
      font-size: 0.9rem; /* Adjust text size further */
    }
  
    #mdtxt button {
      padding: 10px 20px; /* Further reduced padding for mobile */
    }
  }

  

/* Styling for the section */
section {
    padding: 20px;
   /* Light background */
    align-items: center;
    text-align: center;
  }
  
  .mainbx {
    display: flex;
    flex-direction: column; /* Stack all items vertically (column direction) */
    gap: 30px; /* Add space between image-text blocks */
    margin: 0 auto;
    max-width: 1000px; /* Maximum width of content */
  }
  
  .imgbx {
    flex: 1;
    max-width: 100%;
  }
  
  .imgbx img {
    width: 100%; /* Make images responsive */
    height: auto;
    border-radius: 10px; /* Optional: rounded corners for images */
    max-width: 800px; /* Default max-width for larger screens */
  }
  
  .txtbx {
    flex: 1;
    padding: 20px;
  }
  
  .txtbx h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: white; /* Dark text for headings */
  }
  
  .txtbx p {
    font-size: 1.1rem;
    color: white; /* Lighter text color for paragraphs */
    line-height: 1.6;
  }
  
  /* Media Queries for tablets (medium-sized screens) */
  @media screen and (max-width: 1024px) {
    .mainbx {
      gap: 20px; /* Slightly reduced gap for tablet view */
    }
  
    .imgbx img {
      max-width: 600px; /* Reduce image size on medium screens */
    }
  
    .txtbx h3 {
      font-size: 1.4rem; /* Smaller heading font size */
    }
  
    .txtbx p {
      font-size: 1rem; /* Adjust paragraph font size */
    }
  }
  
  /* Media Queries for mobile screens */
  @media screen and (max-width: 480px) {
    .mainbx {
      gap: 15px; /* Reduced gap for mobile screens */
    }
  
    .txtbx h3 {
      font-size: 1.2rem; /* Further reduced heading size */
    }
  
    .txtbx p {
      font-size: 0.9rem; /* Further reduced paragraph font size */
    }
  
    .imgbx img {
      max-width: 100%; /* Ensure image takes full width on mobile */
    }
  }