
    body {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #fff;
      min-height: 100%;
      width: 100%;
      color: #ffffff;
     
    }

    *, *::before, *::after {
      box-sizing: inherit;
    }

    .page-wrapper {
      width: 100%;
      min-height: 100%;
      display: flex;
      flex-direction: column;
      background: #fff;
    }

    header {
      background: #18171d;
      padding: 25px 20px;
      width: 100%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      max-width: 500px;
      margin:0 auto;
    }

    .header-content {
      max-width: 500px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .site-logo {
      font-size: 28px;
      font-weight: 900;
      background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 1px;
    }

    nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      gap: 25px;
    }

    nav a {
      text-decoration: none;
      color: #ffffff;
      font-weight: 600;
      font-size: 15px;
      transition: all 0.3s ease;
      position: relative;
      opacity: 0.8;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #00d4ff, #7b2ff7);
      transition: width 0.3s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    nav a:hover {
      opacity: 1;
      color: #00d4ff;
    }

    main {
      flex: 1;
      width: 100%;
      padding: 12px 20px;
      background: #fff;
      padding-top:0px;
    }

   .main-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

    .category-section {
      margin-bottom: 15px;
      animation: fadeInUp 0.6s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .category-header {
      color: #ffffff;
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 20px;
      letter-spacing: 0.5px;
    }

    .carousel-container {
      position: relative;
      overflow: visible;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 16px;
      padding: 20px 15px;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* HOT GAMES - Featured Large Card */
    .hot-games .carousel-container {
      border: 1px solid #3333331c;
    }

    .hot-games .carousel-track {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 12px;
    }

    .hot-games .game-card:first-child {
      grid-row: 1 / 3;
      grid-column: 1 / 2;
    }

  .hot-games .game-card {
    /* background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%); */
   /* box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
    background: #E3F2FD;*/
}

    .hot-games .game-card:hover {
      transform: translateY(-6px) scale(1.05);
   /*   box-shadow: 0 8px 25px rgba(255, 68, 68, 0.5);*/
    }

    /* CASUAL GAMES - Circular Cards */
    .casual-games .carousel-container {
      border: 1px solid #3333331c;
    }

    .casual-games .carousel-track {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
    }

  /*  .casual-games .game-card {
      border-radius: 50%;
      background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
      box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    }

    .casual-games .game-card:hover {
      transform: translateY(-8px) scale(1.08);
      box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
    }

    
    .puzzle-games .carousel-container {
      border: 1px solid rgba(123, 47, 247, 0.2);
    }
   */
    .puzzle-games .carousel-track {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .puzzle-games .game-card {
      aspect-ratio: 16 / 9;
      border-radius: 14px;
     /* background: linear-gradient(135deg, #7b2ff7 0%, #5516ba 100%);
      box-shadow: 0 4px 15px rgba(123, 47, 247, 0.3);*/
    }

    .puzzle-games .game-card:hover {
      transform: translateY(-6px) scale(1.05);
     /* box-shadow: 0 8px 25px rgba(123, 47, 247, 0.5);*/
    }

    /* ARCADE GAMES - Hexagon */
    .arcade-games .carousel-container {
      border: 1px solid #3333331c;
    }

    .arcade-games .carousel-track {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .arcade-games .game-card {
      clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
      border-radius: 0;
     /* background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
      box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);*/
    }

    .arcade-games .game-card:hover {
      transform: translateY(-6px) scale(1.08);
      /*box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);*/
    }

    @media (max-width: 500px) {
      .carousel-track {
        gap: 10px;
      }
      
      .hot-games .carousel-track {
        gap: 8px;
      }

      .puzzle-games .carousel-track {
        gap: 12px;
      }
    }

    .game-card {
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      overflow: hidden;
      position: relative;
    }

   .game-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    transition: all 0.4s ease;
    object-fit: cover;
}

    .game-title {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
      color: white;
      padding: 10px 8px;
      font-size: 12px;
      font-weight: 700;
      text-align: center;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      letter-spacing: 0.5px;
    }

    .game-card:hover .game-title {
      transform: translateY(0);
    }

    .game-card:hover .game-icon {
      transform: scale(1.15);
    }

   footer {
    background: #18171d;
    color: white;
    padding: 12px;
    width: 100%;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 12px;
}

    .footer-content {
      max-width: 500px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #ffffff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.3s ease;
      opacity: 0.7;
      position: relative;
    }

    .footer-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #00d4ff, #7b2ff7);
      transition: width 0.3s ease;
    }

    .footer-links a:hover::after {
      width: 100%;
    }

    .footer-links a:hover {
      opacity: 1;
      color: #00d4ff;
    }

    .footer-text {
      font-size: 13px;
      opacity: 0.6;
      font-weight: 400;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }

    .social-icon {
      font-size: 24px;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 0.7;
    }

    .social-icon:hover {
      transform: scale(1.2);
      opacity: 1;
    }
 

    /*----- Details page ----------------*/

 .game-details .back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    margin-top: 12px;
}

.game-details .back-button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-4px);
}

.game-details .details-hero {
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.game-details .details-icon {
  font-size: 60px;
  margin-bottom: 0px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.game-details .details-title {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 10px 0;
  color: #ffffff;
}

.game-details .details-category {
  font-size: 15px;
  color: #00d4ff;
  font-weight: 600;
  margin-bottom: 20px;
  display:none;
}

.game-details .details-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 20px;
  margin-bottom: 25px;
}

.game-details .rating-stars {
  color: #ffd700;
}

.game-details .rating-value {
  opacity: 0.7;
  font-weight: 600;
}

.game-details .details-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 14px;
    animation: fadeInUp 0.7s ease-out;
    background: #fafafa !important;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 12px;
    padding: 20px;
}
.game-details .stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 5px 5px;
  text-align: center;
  transition: all 0.3s ease;
}

.game-details .stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.game-details .stat-card:nth-child(1) {
  border-color: rgba(255, 68, 68, 0.3);
}

.game-details .stat-card:nth-child(2) {
  border-color: rgba(0, 212, 255, 0.3);
}

.game-details .stat-card:nth-child(3) {
  border-color: rgba(0, 255, 136, 0.3);
}

.game-details .stat-value {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}

.game-details .stat-card:nth-child(1) .stat-value {
  color: #ff4444;
}

.game-details .stat-card:nth-child(2) .stat-value {
  color: #00d4ff;
}

.game-details .stat-card:nth-child(3) .stat-value {
  color: #00ff88;
}

.game-details .stat-label {
  font-size: 13px;
  opacity: 0.7;
  font-weight: 600;
}

.game-details .details-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
    padding-top: 10px;
    padding-bottom: 10px;
}
.game-details .details-section h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 15px 0;
  color: #ffffff;
}

.game-details .details-section p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.game-details .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.game-details .features-list li {
  padding: 12px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.game-details .features-list li:last-child {
  border-bottom: none;
}

.game-details .features-list li::before {
  content: '✓';
  color: #00ff88;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

.game-details .details-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  animation: fadeInUp 0.9s ease-out;
}

.game-details .action-button {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
}

.game-details .play-button {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.game-details .play-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.game-details .favorite-button {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-details .favorite-button:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}


    /*---- End -------------------------*/

    /*---- Contct us page */

/* Parent Wrapper */
.contact-page {
  
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  animation: fadeInUp 0.7s ease-out;
  padding: 12px;
}
.contact-page-contact{
  padding: 15px;
}
/* Headings */
.contact-page h1 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
  color: #00d4ff;
}

.contact-page h2 {
  font-size: 24px;
  font-weight: 800;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #00ff88;
}

/* Paragraphs */
.contact-page p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.85);
}

/* Email Link */
.contact-page a {
  color: #00d4ff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.contact-page a:hover {
  color: #00a3cc;
  text-decoration: underline;
}

/* List Styling */
.contact-page ul {
  padding-left: 20px;
  margin-top: 10px;
}

.contact-page ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-left: 20px;
}

.contact-page ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00ff88;
  font-weight: 900;
}

/* Fade Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


    /*slider csss*/

.related-games-slider {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.slider-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
}

.slider-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    text-align: center;
    padding: 20px;
    transition: .3s ease;
    display: block;
    margin-left: 10px;;
}

.slider-item:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.25);
}

.slider-item .icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.slider-item .title {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.slick-dots {
    display: none !important;
}
    /*---- End-------*/
/*-------- Screenshot slider  --------*/
.screenshot-slider {
    margin-top: 30px;
}

.ss-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.ss-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    padding: 15px 0;
}

.ss-slides {
    display: flex;
    transition: transform 0.4s ease;
}

.ss-slide {
    
    display: flex;
    justify-content: center;
}

.ss-slide img {
    width: 90%;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Buttons */
/* Slider Container */
.screenshot-slider {
    margin-top: 22px;
    margin-bottom: 20px;
}

/* Wrapper */
.ss-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: auto;
}

/* Slides Container */
.ss-slides {
    display: flex;
    overflow: hidden;
}

/* Slide */
.ss-slide img {
    width: 100%;
    border-radius: 10px;
}

/* ⬅➡ Buttons */
.ss-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;      /* smaller size */
    height: 32px;     /* smaller size */
    font-size: 16px;  /* smaller arrow */
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

/* Left Button → Left:0 */
.ss-prev {
    left: 0;
}

/* Right Button → Right:0 */
.ss-next {
    right: 0;
}

.ss-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Slick arrows base styles */
.screenshot-slider .slick-prev, .screenshot-slider .slick-next {
    width: 32px !important;
    height: 32px !important;
    z-index: 10 !important;
}

.screenshot-slider .slick-prev:before, .screenshot-slider .slick-next:before {
    font-size: 26px !important;
    opacity: 1 !important;
    color: #fff !important;
}

/* Desktop arrows: keep at edges */
.screenshot-slider .slick-prev {
    left: -5px !important;
}
.screenshot-slider .slick-next {
    right: 0px !important;
}

/* ⭐ Mobile FIX: bring arrows inside */
@media(max-width: 600px) {
    .screenshot-slider .slick-prev {
        left: 5px !important;
    }
    .screenshot-slider .slick-next {
        right: 5px !important;
    }

    .screenshot-slider .slick-prev:before,
    .screenshot-slider .slick-next:before {
        font-size: 22px !important; /* smaller icon */
    }

    .screenshot-slider .slick-prev,.screenshot-slider .slick-next {
        width: 26px !important;
        height: 26px !important;
    }
}
/* ===============================
   Screenshot Slider (Details Page)
   =============================== */

.game-details .screenshot-slider {
  margin-top: 30px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.game-details .ss-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
}

/* Wrapper around slider + arrows */
.game-details .ss-wrapper {
  position: relative;
  width: 100%;
}

/* Slick track container */

/* Each slide */
.game-details .ss-slide {
  padding: 6px;           /* space between items */
  box-sizing: border-box;
}

.game-details .ss-slide img {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Arrows */
.game-details .ss-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s ease, transform 0.2s ease;
}

.game-details .ss-prev {
  left: 6px;
}

.game-details .ss-next {
  right: 6px;
}

.game-details .ss-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: translateY(-50%) scale(1.05);
}

/* Remove default Slick dots if you ever enable them */
.game-details .slick-dots {
  display: none !important;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .game-details .screenshot-slider {
    padding: 16px;
  }

  .game-details .ss-btn {
    width: 26px;
    height: 26px;
    font-size: 14px;
    top: 50%;
  }

  .game-details .ss-prev {
    left: 2px;
  }

  .game-details .ss-next {
    right: 2px;
  }
}

/*----------- End --------------*/

/* Ads Container ----------------*/
.ads-label {
    font-size: 12px;
    color: #f0e7e7;
    margin-top: 5px;
    text-transform: uppercase;
}
.ads-label {
    margin-top: 5px;
    text-align: center;
    margin-bottom: 10px;
}
.ads-container {
    width: 100%;
    max-width: 100%;
    margin: 2px auto;
    margin-top: 0px;
    padding-top: 0px;
    text-align: center;
    position: relative;
    display: block;
   
    margin-bottom: 18px;
}

.ads-label {
    font-size: 12px;
    color: #f0e7e7;
    margin-top: 5px;
    text-transform: uppercase;
}
.ads-label {
    margin-top: 5px;
    text-align: center;
    margin-bottom: 10px;
}
.related-games-slider .slick-list.draggable {
  padding-top: 12px;
}
/*--------- ENd ------------------*/

.slider-item .icon img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}
.details-icon img,.icon img{
  margin: 0 auto;
}
.details-icon img {
    margin: 0 auto;
    max-height: 200px;
    border-radius: 12px;
}
.related-games-slider .title {
    white-space: nowrap;        /* keep title in one line */
    overflow: hidden;           /* hide extra text */
    text-overflow: ellipsis;    /* add ... */
    max-width: 160px;           /* adjust width as needed */
}
.game-details .ss-slide img {
    /* width: 100%; */
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-height: 250px;
    object-fit: contain;
}
.game-details .ss-slide img {
    /* width: 100%; */
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-height: 250px;
    object-fit: contain;
    background: #ffd700;
}

header,.carousel-container,footer,.game-details .details-hero,
.game-details .details-section,.related-games-slider{
      background: #fafafa !important;
}
nav a,.ads-label,.category-header,.footer-links a,.game-details .details-hero,
.game-details .details-stats,.game-details .details-section,
.game-details .details-section p,.slider-title,.slider-title,.slider-title,body
 .slider-item .title,.game-details .details-title,.ads-container
{
  color:#333 !important;
}
.slick-prev:before, .slick-next:before {
    color: #333 !important;
}
/* -------------- Free coin position ------------------------------------------*/

.resp_free_coin{
    display: flex;
    justify-content: center;
}
.free_coin {
    margin: 12px 16px 0 16px;
    background: #fafafa !important;
    padding: 16px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #3333331c;
    /* box-shadow: var(--div-boxShadow); */
    margin-bottom: 15px;
}
.earn-coin-btn button {
    cursor: pointer;
    background: #ffe900 !important;
    color: #fff;
    border: none;
    height: 42px;
    padding: 10px 0px;
    width: 95%;
    border-radius: 12px;
    border-color: #3333331c;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.redeem-coin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.earn-coin-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
}
.ad-tag-earn {
    position: absolute;
    top: 0;
    right: -10px;
    color: #8a8e91;
    font-size: 10px;
    letter-spacing: 0px;
    text-transform: capitalize;
}
.earn-coin-btn button img {
    width: 24px;
    height: 24px;
}
#coin {
    font-weight: 600;
}

.earn-coin-section * {
  color:#333 !important;
}
.title-entry{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.title-entry img{
  width: 15px;
} 
.title-users {
    padding-top: 5px;
    padding-bottom: 5px;
}
/*------------------------ End ---------------------------------------------*/
.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-data {
    background: #fff;
    padding: 20px 20px 20px;
    border-radius: 15px;
    text-align: center;
    max-width: 370px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.popup-data .oops-img {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: auto;
}

.popup-data .main-text {

    font-size: 14px;
    color: #555;
    margin: 40px 0 10px;
}

.popup-data .sub-text {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}

.watch-btn-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}


.watch-btn {
    background: #ffe900 !important;
    color: #333;
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    width: 100%;
    font-size: 14px;
    cursor: pointer;
    height: 42px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.popup-data .skip-btn {
    margin-top: 8px;
    background: none;
    border: none;
    color: #666;
    width: fit-content;
    margin: 8px auto 0px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}
#coinRainContainer{
        position: fixed;
        top:0;
        left:0;
        width:100%;
        height:100%;
        pointer-events:none;
        overflow:hidden;
        z-index:9999;
    }

    /* Coin style */
    .rain-coin{
        position:absolute;
        width:30px;
        height:30px;
        background:url('https://cdn-icons-png.flaticon.com/512/138/138292.png') no-repeat center/contain;
        animation: coinFall linear forwards;
    }

    @keyframes coinFall{
        0%{
            transform: translateY(-60px) rotate(0deg);
            opacity:1;
        }
        100%{
            transform: translateY(110vh) rotate(720deg);
            opacity:0.9;
        }
    }

#toastBox{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}
.toast{
    min-width: 250px;
    margin-bottom: 10px;
    padding: 14px 18px;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: slideIn 0.4s ease, fadeOut 0.4s ease 3.6s forwards;
}
.toast.success{ background: #28a745; }
.toast.error{ background: #dc3545; }
.toast.info{ background: #007bff; }

@keyframes slideIn{
    from{ transform: translateX(100%); opacity: 0; }
    to{ transform: translateX(0); opacity: 1; }
}
@keyframes fadeOut{
    to{ opacity: 0; transform: translateX(100%); }
}