
:root {
    --primary-color: #9b59b6;
    --secondary-color: #8e44ad;
    --accent-color: #FF6B6B;
    --background-color: #F8F9FA;
    --card-background: #FFFFFF;
    --text-primary: #2D3436;
    --text-secondary: #636E72;
  }
  
  body {
    padding-top: 70px;
    padding-bottom: 140px;
    background-color: var(--background-color);
    margin: 0;
    font-family: 'Poppins', sans-serif;
  }
  
  .navbar-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 0;
    padding: 0;
  }
  
  .wallet-pill {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.2);
    transition: all 0.3s ease;
  }
  
  .wallet-pill:hover {
    transform: translateY(-2px);
    color: white;
    opacity: 0.95;
  }
  
  .wallet-pill i {
    font-size: 1.1rem;
  }
  
  /* Video Banner Styles */
  .video-banner {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  
  .video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Swiper Styles */
  .swiper {
    width: 100%;
    height: 200px;
    margin-bottom: 2rem;
  }
  
  .swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Category Styles */
  .category-title {
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
  }
  
  .category-title i {
    color: var(--primary-color);
  }
  
  /* Benefits Section Styles */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .benefit-item {
    background: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
  }
  
  /* Updated Game Grid Styles */
  .game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
    padding: 0.5rem;
    justify-content: center;
  }
  
  .game-item {
    width: 150px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    cursor: pointer;
    margin: 0 auto;
  }
  
  .game-item:hover {
    transform: translateY(-2px);
  }
  
  .game-item img {
    width: 150px;
    height: 200px;
    object-fit: cover;
  }
  
  .game-item .game-info {
    padding: 0.8rem;
    text-align: center;
    background: white;
  }
  
  .game-item .game-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-primary);
  }
  
  .likes-packages {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    margin-top: 0.4rem;
    flex-wrap: wrap;
  }
  
  .likes-packages .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-weight: 500;
  }
  
  .navbar-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.05);
    z-index: 999;
    padding: 0.5rem 0;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.05);
  }
  
  .navbar-bottom .nav-link {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .navbar-bottom .nav-link i {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.2rem;
  }
  
  .navbar-bottom .nav-link.active {
    color: var(--primary-color);
  }
  
  /* Updated Swiper Styles */
  .swiper {
    height: 250px;
    margin-bottom: 2rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.2rem;
  }
  
  /* Responsive Grid Adjustments */
  @media (max-width: 400px) {
    .game-grid {
      grid-template-columns: repeat(2, minmax(140px, 1fr));
      gap: 0.5rem;
    }
  
    .game-item {
      width: 100%;
    }
  
    .game-item img {
      width: 100%;
      height: 180px;
    }
  
    .game-item .game-name {
      font-size: 0.85rem;
    }
  
    .likes-packages .badge {
      font-size: 0.65rem;
      padding: 0.2rem 0.4rem;
    }
  }
  
  @media (min-width: 768px) {
    .game-grid {
      grid-template-columns: repeat(4, minmax(150px, 1fr));
      gap: 1rem;
    }
  }
  
  /* Notification Styles */
  .notification-container {
    position: fixed;
    top: 85px;
    right: 20px;
    z-index: 1000;
    max-width: 350px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  
  .notification-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: slideIn 0.3s ease;
    border-left: 4px solid var(--primary-color);
  }
  
  .notification-item.error {
    border-left-color: #dc3545;
  }
  
  .notification-item.warning {
    border-left-color: #ffc107;
  }
  
  .notification-item .notification-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .notification-item .notification-message {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
  }
  
  .notification-item .notification-time {
    font-size: 0.8rem;
    color: #999;
  }
  
  .notification-close {
    cursor: pointer;
    padding: 5px;
    color: #999;
  }
  
  .notification-close:hover {
    color: #666;
  }
  
  @keyframes slideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  /* Video Slide Styles */
  .video-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    text-align: left;
  }
  
  .slide-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .slide-overlay p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
  }
  
  /* Info Modal Styles */
  .info-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-width: 90%;
    width: 400px;
  }
  
  .info-modal.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
  }
  
  .info-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .info-modal-overlay.show {
    opacity: 1;
    visibility: visible;
  }
  
  .info-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .info-modal-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-primary);
  }
  
  .info-modal-close {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0.2rem;
  }
  
  .info-modal-body {
    color: var(--text-secondary);
    margin-bottom: 1rem;
  }
  
  .info-modal-footer {
    display: flex;
    justify-content: flex-end;
  }
  
  .info-modal-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .info-modal-button:hover {
    transform: translateY(-2px);
  }
  
  /* Product Info Styles */
  .product-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
  }
  
  .show-more-btn {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
  }
  
  .show-more-btn:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .card-img-top {
    height: 180px;
    object-fit: cover;
  }
  
  /* Testimonial Styles */
  .testimonial-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
  }
  
  .testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .testimonial-item {
    min-width: 100%;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-right: 20px;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
  }
  
  .testimonial-message {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 10px;
  }
  
  .testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .testimonial-author::before {
    content: "— ";
    margin-right: 5px;
  }
  
  .testimonial-date {
    font-size: 0.8rem;
    color: #999;
    text-align: right;
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
  }
  
  .testimonial-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .testimonial-control-btn:hover {
    background: var(--primary-color);
    color: white;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .card-img-top {
    height: 180px;
    object-fit: cover;
  }
  
  .info-modal-button:hover {
    transform: translateY(-2px);
  }
  
  /* Bootstrap Button Overrides */
  .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-focus-shadow-rgb: 155, 89, 182;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
  }
    /* Custom Button Styles for Group Links, Social Links, etc. */
    .group-links-container,
    .social-links-container {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center; /* Center the buttons */
    }
    
    @media (max-width: 768px) {
      .group-links-container a,
      .social-links-container a {
        flex: 1 1 calc(33.333% - 1rem); /* Three buttons per row */
        max-width: calc(33.333% - 1rem);
        box-sizing: border-box;
      }
    }
    .categories-container button {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      color: white;
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(155, 89, 182, 0.2);
    }
    
    .group-links-container a:hover,
    .social-links-container a:hover,
    .open-ticket-container a:hover,
    .categories-container button:hover {
      background-color: var(--secondary-color);
      border-color: var(--secondary-color);
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(155, 89, 182, 0.3);
    }
    
    /* Override Bootstrap's default blue focus styles */
    .btn:focus, 
    .btn.focus {
      box-shadow: 0 0 0 0.25rem rgba(155, 89, 182, 0.25) !important;
    }
    
    /* Fix for Bootstrap pagination and other components */
    .page-item.active .page-link {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }
    
    .page-link {
      color: var(--primary-color);
    }
    
    .page-link:hover {
      color: var(--secondary-color);
    }
    
    /* Override any remaining Bootstrap blue colors */
    .bg-primary {
      background-color: var(--primary-color) !important;
    }
    
    .border-primary {
      border-color: var(--primary-color) !important;
    }
    
    /* Fix for testimonial control buttons */
    .testimonial-control-btn {
      background-color: var(--primary-color);
      color: white;
      border: none;
    }
    
    .testimonial-control-btn:hover {
      background-color: var(--secondary-color);
    }
  
  .info-modal-button:hover {
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .card-img-top {
    height: 180px;
    object-fit: cover;
  }
  
  .info-modal-button:hover {
    transform: translateY(-2px);
  }
  
  /* General Button Styles */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
  }
  
  /* Trusted By Section Styles */
  .trusted-by-container {
    overflow: hidden;
    white-space: nowrap;
  }
  
  .trusted-by-row {
    display: flex;
    animation: scroll-left 10s linear infinite;
  }
  
  .trusted-by-row:nth-child(2) {
    animation: scroll-right 10s linear infinite;
  }
  
  .trusted-by-text {
    font-size: 1.5rem;
    font-family: 'Roboto', sans-serif; /* Use Roboto font */
    font-weight: bold; /* Set text to bold */
    margin: 0 2rem;
  }
  
  .trusted-by-row:nth-child(1) .trusted-by-text,
  .trusted-by-row:nth-child(3) .trusted-by-text {
    color: #808080; /* Set text color to grey for the first and third rows */
  }
  
  .trusted-by-row:nth-child(2) .trusted-by-text {
    color: #000; /* Set text color to black for the second row */
  }
  
  @keyframes scroll-left {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  @keyframes scroll-right {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(100%);
    }
  }
  