
    :root {
        --primary: #E10043;
        --secondary: #2a4a96;
        --accent: #ff3838;
        --dark: #111820;
        --light: #ffffff;
        --gray: #343a40;
        --success: #28a745;
        --ungu-color: #29323b;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--dark);
      color: var(--light);
      line-height: 1.6;
    }

    /* Header Styles */
    .modern-header {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        padding: 5px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        border-radius: 20px 20px 0 0;
    }

    .logo img {
        height: 60px;
        transition: transform 0.3s ease;
    }

    .logo img:hover {
        transform: scale(1.05);
    }

    /* Navigation */
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .user-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .user-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1rem;
    }

    .user-name {
        color: white;
        font-weight: 500;
        font-size: 0.9rem;
    }
    
    .user-name:hover {
        color: var(--accent);
    }
    
    .balance {
        background: rgba(0,0,0,0.2);
        color: white;
        padding: 8px 15px;
        border-radius: 20px;
        font-weight: 500;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .balance i {
        color: var(--accent);
    }

    .btn {
        padding: 8px 20px;
        border-radius: 20px;
        font-weight: 500;
        font-size: 0.9rem;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-primary {
        background: white;
        color: var(--primary);
    }

    .btn-primary:hover {
        background: rgba(255,255,255,0.9);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255,255,255,0.2);
        color: var(--accent);
    }

    .btn-secondary {
        background: var(--primary);
        color: white;
        border: 1px solid rgba(255,255,255,0.3);
        animation: pulse 1.5s infinite;
    }

    .btn-secondary:hover {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        transform: translateY(-2px);
    }

    /* Mobile Menu */
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding-left: -280px;
    }

    .sidenav {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 1100;
        top: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        overflow-x: hidden;
        transition: 0.3s;
        padding-top: 10px;
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
        display: flex;
        flex-direction: column;
    }

    .sidenav a {
        padding: 15px 25px;
        text-decoration: none;
        font-size: 1rem;
        color: rgba(255,255,255,0.8);
        display: flex;
        align-items: center;
        gap: 15px;
        transition: 0.3s;
        border-left: 3px solid transparent;
    }

    .sidenav a i {
        width: 20px;
        text-align: center;
    }

    .sidenav a:hover {
        color: white;
        background: rgba(255,255,255,0.05);
        border-left: 3px solid var(--accent);
    }

    .sidenav .closebtn {
        position: absolute;
        top: 10px;
        right: 25px;
        font-size: 1.5rem;
        color: white;
        background: none;
        border: none;
    }

    .sidenav-header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 25px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin-bottom: 15px;
    }

    .sidenav-logo {
        display: block;
        align-items: center;
        line-height: 0;
    }

    .sidenav-logo img {
        max-height: 100%;
        width: auto;
    }
    .h-30px {
        height: 50px !important;
        width: auto;
        max-width: 250px;
    }

    .nav-menu.desktop {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Login Form Styles */
    .login-form {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .form-input {
        padding: 8px 15px;
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.3);
        background: rgba(255,255,255,0.1);
        color: white;
        font-size: 0.9rem;
    }

    .form-input::placeholder {
        color: rgba(255,255,255,0.7);
    }

    .forgot-link {
        color: rgba(255,255,255,0.7);
        font-size: 0.8rem;
        text-decoration: none;
        transition: 0.3s;
    }

    .forgot-link:hover {
        color: white;
        text-decoration: underline;
    }

    /* Language Switcher */
    .language-switcher .dropdown-toggle {
        display: flex;
        align-items: center;
        padding: 8px 12px;
        background-color: var(--accent);
    }

    .language-switcher .dropdown-item {
        display: flex;
        align-items: center;
        padding: 8px 15px;
        font-size: 0.9rem;
        color: white;
    }

    .language-switcher .dropdown-item.active {
        background-color: var(--accent);
        color: white;
    }
    
    .language-switcher .dropdown-item:hover {
        background-color: var(--accent);
        color: white;
    } 

    .language-switcher .dropdown-menu {
        min-width: 180px;
        border: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        border-radius: 8px;
        overflow: hidden;
        background: var(--gray);
    }

    .language-switcher .dropdown-toggle::after {
        margin-left: 8px;
    }

    /* Sidenav Language Switcher */
    .sidenav-content {
        flex: 1;
        overflow-y: auto;
    }

    .sidenav-language-switcher {
        padding: 15px 25px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .sidenav-language-dropdown {
        width: 100%;
    }

    .sidenav-language-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 10px 15px;
        background: rgba(255,255,255,0.1);
        border: none;
        border-radius: 5px;
        color: rgba(255,255,255,0.8);
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .sidenav-language-toggle:hover {
        background: rgba(255,255,255,0.15);
        color: white;
    }

    .sidenav-language-toggle i {
        transition: transform 0.3s ease;
    }

    .sidenav-language-toggle.active i {
        transform: rotate(180deg);
    }

    .sidenav-language-menu {
        display: none;
        margin-top: 5px;
        background: rgba(0,0,0,0.2);
        border-radius: 5px;
        overflow: hidden;
    }

    .sidenav-language-menu.show {
        display: block;
    }

    .sidenav-language-item {
        display: flex;
        align-items: center;
        padding: 10px 15px;
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .sidenav-language-item:hover {
        background: rgba(255,255,255,0.1);
        color: white;
    }

    .sidenav-language-item.active {
        background: var(--accent);
        color: white;
    }

    .flag-icon {
        width: 20px;
        height: 15px;
        border-radius: 2px;
        margin-right: 8px;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .sidenav {
            height: calc(100% - 60px);
        }
        
        .nav-menu.desktop {
            display: none;
        }
        
        .mobile-menu-btn {
            display: block;
        }
        
        .logo img {
            height: 45px;
        }
    }
    
    /* Modern Navigation Menu */
    .modern-nav {
      background: rgba(0,0,0,0.2);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      position: sticky;
      top: 60px; /* Sesuaikan dengan tinggi header */
      z-index: 999;
      border-radius: 0 0 20px 20px;
      margin-bottom: 20px;
    }
    
    .nav-menu-container {
      display: flex;
      justify-content: center;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 10px 0;
      scroll-behavior: smooth;
      width: 100%;
      white-space: nowrap;
    }
    
    .nav-menu-container::-webkit-scrollbar {
      display: none;
    }
    
    .nav-head {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 10px 20px;
      text-decoration: none;
      color: rgba(255,255,255,0.7);
      transition: all 0.3s ease;
      min-width: 80px;
      position: relative;
      white-space: nowrap;
    }
    
    .nav-head i {
      font-size: 1.2rem;
      margin-bottom: 5px;
      transition: transform 0.3s ease;
    }
    
    .nav-head span {
      font-size: 0.8rem;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    
    .nav-head:hover, .nav-head.active {
      color: var(--accent);
      transform: translateY(-2px);
    }
    
    .nav-head:hover i {
      transform: scale(1.2);
      color: var(--accent);
    }
    
    .nav-head.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 30px;
      height: 3px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      border-radius: 3px;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .modern-nav {
        top: 50px;
        border-radius: 0;
        margin-bottom: 10px;
      }
      
      .nav-menu-container {
        justify-content: flex-start;
      }
      
      .nav-head {
        padding: 8px 15px;
        min-width: 70px;
      }
      
      .nav-head i {
        font-size: 1rem;
      }
      
      .nav-head span {
        font-size: 0.7rem;
      }
    }
    
    @media (max-width: 768px) {
      .modern-nav {
        top: 50px;
      }
      
      .nav-head {
        padding: 8px 10px;
        min-width: 80px;
      }
    }
    
    /* Animation for active state */
    @keyframes pulse-glow {
      0% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4); }
      70% { box-shadow: 0 0 0 10px rgba(var(--primary-rgb), 0); }
      100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0); }
    }
    
    .nav-head.active i {
      position: relative;
    }
    
    .nav-head.active i::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      border-radius: 50%;
      animation: pulse-glow 2s infinite;
    }
    
    /* Sidenav Dropdown Styles */
.sidenav-dropdown {
    width: 100%;
    margin-bottom: 5px;
}

.sidenav-dropdown-toggle {
    width: 100%;
    padding: 15px 25px;
    text-align: left;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidenav-dropdown-toggle:hover {
    color: white;
    background: rgba(255,255,255,0.05);
}

.sidenav-dropdown-toggle i:first-child {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.dropdown-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.sidenav-dropdown-toggle.active .dropdown-icon {
    transform: rotate(180deg);
}

.sidenav-dropdown-menu {
    display: none;
    background: rgba(0,0,0,0.2);
    border-left: 3px solid var(--accent);
}

.sidenav-dropdown-menu.show {
    display: block;
}

.sidenav-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 25px 12px 50px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sidenav-dropdown-item:hover, .sidenav-dropdown-item.active {
    color: white;
    background: rgba(255,255,255,0.1);
}

.sidenav-dropdown-item.active {
    color: var(--accent);
}


  /* ===== FOOTER STYLES ===== */
  footer {
    background: var(--dark);
    color: var(--light);
    padding: 40px 0 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
  }

  /* === Main Footer Sections === */
  .footer-title {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
  }

  .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
  }

  .footer-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
  }

  /* Footer Links */
  .footer-nav .nav-link {
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .footer-nav .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
  }

  .footer-nav .nav-link:hover {
    color: var(--accent);
    padding-left: 5px;
  }

  .footer-nav .nav-link:hover::before {
    width: 15px;
  }

  .footer-nav .nav-link i {
    width: 22px;
    text-align: center;
    margin-right: 8px;
    font-size: 0.95rem;
  }

  /* Payment Methods */
  .payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .payment-img {
    height: 25px;
    width: auto;
    filter: grayscale(100%) brightness(120%);
    transition: all 0.3s ease;
    object-fit: contain;
  }

  .payment-img:hover {
    filter: none;
    transform: scale(1.1);
  }
  
  /* Container utama */
    .providers-horizontal-scroll {
      width: 100%;
      overflow-x: auto;
      position: relative;
      white-space: nowrap;
      scrollbar-width: none;
      -ms-overflow-style: none;
      scroll-behavior: smooth;
    }
    
    /* Container animasi */
    .providers-scroll-container {
      display: inline-block;
      white-space: nowrap;
      animation: scroll linear infinite;
      animation-duration: 30s; /* Atur kecepatan di sini */
      animation-timing-function: linear;
      will-change: transform;
      margin-top: 10px;
    }
    
    /* Animasi keyframes */
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%); /* Geser setengah dari total lebar */
      }
    }
    
    /* Item provider */
    .provider-item {
      display: inline-block;
      vertical-align: top;
      width: 100px; /* Sesuaikan dengan lebar yang diinginkan */
      margin-right: 0; /* Tidak ada gap */
      text-align: center;
      transition: transform 0.3s ease;
    }
    
    /* Hover effect */
    .providers-scroll-container:hover {
      animation-play-state: paused;
    }
    
    .provider-item:hover {
      transform: scale(1.1);
    }

  .provider-logo-container {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 15px;
    margin: 0 auto 8px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .provider-logo-container:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent);
  }

  .provider-logo {
    max-width: 100%;
    max-height: 50px;
    filter: grayscale(100%) brightness(120%);
    transition: all 0.3s ease;
  }

  .provider-logo-container:hover .provider-logo {
    filter: none;
    transform: scale(1.1);
  }

  .provider-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* === Mobile Bottom Navigation === */
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 1000;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    padding: 8px 0;
    display: none;
    border-radius: 30px 30px 0px 0px ;
  }

  .mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 0 5px;
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.7rem;
    min-width: 60px;
    padding: 5px 3px;
    transition: all 0.2s ease;
    flex: 1;
    max-width: 80px;
    position: relative;
  }

  .mobile-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 3px;
    transition: transform 0.2s ease;
  }

  .mobile-nav-item span {
    font-weight: 500;
  }

  .mobile-nav-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s ease;
  }

  .mobile-nav-item:hover,
  .mobile-nav-item:focus,
  .mobile-nav-item.active {
    color: white;
  }

  .mobile-nav-item:hover i,
  .mobile-nav-item:focus i {
    transform: translateY(-3px);
  }

  .mobile-nav-item:hover::after,
  .mobile-nav-item:focus::after {
    width: 20px;
  }

  /* === Floating Buttons === */
  .floating-buttons {
    position: fixed;
    bottom: 80px;
    left: 15px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .floating-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .floating-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  }

  .floating-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* === Copyright Section === */
  .copyright-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 30px;
    padding-bottom: 20px;
    text-align: center;
  }

  .certification-logo {
    max-height: 60px;
    width: auto;
    margin: 0 auto 15px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.8;
  }

  /* === Modal Styles === */
  .modal-content {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }

  .modal-header .close {
    opacity: 1;
    text-shadow: none;
  }

  /* ===== RESPONSIVE ADJUSTMENTS ===== */
  @media (max-width: 992px) {
    .mobile-bottom-nav {
      display: block;
    }
    
    footer {
      padding-bottom: 60px;
    }
  }

  @media (max-width: 768px) {
    .footer-title {
      font-size: 1rem;
    }
    
    .footer-nav .nav-link {
      font-size: 0.8rem;
    }
    
    .provider-item {
      width: 85px;
    }
    
    .provider-logo-container {
      width: 65px;
      height: 65px;
      padding: 12px;
    }
    
    .provider-logo {
      max-height: 40px;
    }
    
    .floating-buttons {
      bottom: 70px;
    }
  }

  @media (max-width: 576px) {
    .provider-item {
      width: 75px;
    }
    
    .provider-logo-container {
      width: 55px;
      height: 55px;
      padding: 10px;
    }
    
    .provider-label {
      font-size: 0.7rem;
    }
    
    .mobile-nav-item {
      font-size: 0.65rem;
      min-width: 55px;
    }
    
    .mobile-nav-item i {
      font-size: 1.1rem;
    }
    
    .floating-button {
      width: 45px;
      height: 45px;
    }
  }

  @media (max-width: 400px) {
    .mobile-nav-item {
      font-size: 0.6rem;
      min-width: 50px;
      padding: 5px 2px;
    }
    
    .mobile-nav-item i {
      font-size: 1rem;
    }
    
    .provider-item {
      width: 70px;
    }
    
    .provider-logo-container {
      width: 50px;
      height: 50px;
    }
  }

  /* === Animation Keyframes === */
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
  }

  .floating-button {
    animation: float 3s ease-in-out infinite;
  }

  .floating-button:nth-child(2) {
    animation-delay: 0.5s;
  }
  
  .mobile-nav-item.register-btn {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    margin: -8px 2px;
    padding: 8px 3px 12px !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
    overflow: hidden;
    z-index: 1;
  }
  
  .mobile-nav-item.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
      rgba(255,255,255,0.2) 0%, 
      rgba(255,255,255,0.1) 50%, 
      rgba(255,255,255,0.2) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .mobile-nav-item.register-btn:hover::before {
    opacity: 1;
  }
  
  .mobile-nav-item.register-btn i {
    font-size: 1.3rem !important;
    margin-bottom: 5px !important;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  
  .mobile-nav-item.register-btn span {
    font-weight: 600 !important;
    font-size: 0.75rem !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  }
  
  .pulse-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    animation: pulse 2s infinite;
    z-index: -1;
  }
  
  @keyframes pulse {
    0% {
      width: 0;
      height: 0;
      opacity: 0.8;
    }
    100% {
      width: 100px;
      height: 100px;
      opacity: 0;
    }
  }
  
  .particle-btn {
  position: relative;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  animation: particle-burst 0.8s ease-out forwards;
}

@keyframes particle-burst {
  0% { transform: translate(0, 0); opacity: 1; }
  100% { transform: translate(var(--x, 0), var(--y, -50px)); opacity: 0; }
}


    /* Custom CSS index.php */
  
    /* Banner Modern */
    .hero-banner {
      position: relative;
      overflow: hidden;
      border-radius: 0 0 20px 20px;
      margin-bottom: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .hero-banner img {
      width: 100%;
      height: auto;
      transition: transform 0.5s ease;
    }
    
    .hero-banner:hover img {
      transform: scale(1.02);
    }
    
    .banner-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
      padding: 30px;
      color: white;
    }
    
    .minimal-ticker {
        background: var(--gray);
        border-radius: 8px;
        padding: 12px 20px;
        margin: 20px auto;
        max-width: 1200px;
        overflow: hidden;
        position: relative;
      }
      
      .minimal-ticker::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 60px;
        background: linear-gradient(90deg, rgba(40,40,60,1) 0%, rgba(40,40,60,0) 100%);
        z-index: 2;
      }
      
      .minimal-ticker::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 60px;
        background: linear-gradient(270deg, rgba(40,40,60,1) 0%, rgba(40,40,60,0) 100%);
        z-index: 2;
      }
      
      .ticker-icon {
        background: var(--gray);
        position: absolute;
        left: 15px;
        color: var(--accent);
        font-size: 1.2rem;
        z-index: 3;
        animation: chew 0.8s infinite alternate;
        animation-timing-function: ease-in-out;
      }
      
      @keyframes chew {
          0% { transform: scale(1) rotate(0deg); }
          30% { transform: scale(1.1) rotate(-5deg); }
          60% { transform: scale(1.15) rotate(5deg); }
          100% { transform: scale(1) rotate(0deg); }
        }
      
      .ticker-track {
        background: var(--gray);
        display: flex;
        align-items: center;
        width: 100%;
        overflow: hidden;
        color: var(--accent);
        z-index: 3;
      }
      
      .ticker-text {
        white-space: nowrap;
        color: rgba(255,255,255,0.9);
        font-size: 0.9rem;
        padding-left: 100%;
        animation: ticker-scroll 20s linear infinite;
      }
      
      @keyframes ticker-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
      }
      
      /* Responsive */
      @media (max-width: 768px) {
        .minimal-ticker {
          padding: 10px 15px;
        }
        
        .ticker-text {
          font-size: 0.8rem;
          animation-duration: 15s;
        }
      }
    
    /* Game Section Modern */
    .game-section {
      padding: 30px 0;
    }
    
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .section-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: white;
      position: relative;
      display: inline-block;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -11px;
      left: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      border-radius: 3px;
    }
    
    .view-all {
      color: var(--accent);
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
    }
    
    .view-all:hover {
      color: white;
      transform: translateX(5px);
    }
    
    .view-all i {
      margin-left: 5px;
    }
    
    /* Game Grid Modern */
    .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 15px;
    }
    
    /* Game Card Modern with Centered Play Button (Fixed Version) */
    .game-card {
      background: var(--gray);
      border-radius: 12px;
      overflow: hidden;
      transform: translateY(0);
      transition: all 0.3s ease;
      position: relative;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      cursor: pointer;
    }
    
    .game-card:hover {
      transform: translateY(-10px) !important;
      box-shadow: 0 15px 30px rgba(0,0,0,0.3) !important;
    }
    
    .game-thumbnail {
      width: 100%;
      height: 250px;
      background-size: cover;
      background-position: center;
      position: relative;
      transition: all 0.3s ease;
    }
    
    .game-card:hover .game-thumbnail {
      filter: brightness(0.5);
    }
    
    .game-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0,0,0,0.6);
      color: white;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.7rem;
      display: flex;
      align-items: center;
      z-index: 2;
    }
    
    .game-info {
      padding: 15px;
      position: relative;
      z-index: 1;
    }
    
    .game-name {
      font-size: 0.8rem;
      font-weight: 500;
      color: white;
      margin-bottom: 5px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: all 0.3s ease;
    }
    
    /* Modern Centered Play Button - Fixed */
    .play-btn-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 2;
    }
    
    .game-card:hover .play-btn-container {
      opacity: 1;
    }
    
    .play-btn {
      padding: 12px 24px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
      transform: scale(0.9);
      transition: all 0.3s ease;
      min-width: 60%;
    }
    
    .game-card:hover .play-btn {
      transform: scale(1);
    }
    
    .play-btn i {
      font-size: 1.2rem;
    }
    
    .play-btn:hover {
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      box-shadow: 0 15px 30px rgba(106, 17, 203, 0.6);
      transform: scale(1.05) !important;
      color: var(--accent);
    }
    
    /* Pulse Animation on Hover */
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
      70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
    }
    
    .play-btn:hover::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      border-radius: 50px;
      animation: pulse 1.5s infinite;
    }
    
    /* Provider Filter Modern */
    .provider-filter {
      display: flex;
      overflow-x: auto;
      gap: 15px;
      padding: 15px 0;
      margin-bottom: 8px;
      scrollbar-width: none;
    }
    
    .provider-filter::-webkit-scrollbar {
      display: none;
    }
    
    .provider-item {
      flex: 0 0 auto;
      text-align: center;
      cursor: pointer;
    }
    
    .provider-icon {
      width: 95px;
      height: 95px;
      background: rgba(0, 0, 0, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0px 8px 0px;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    
    .provider-icon:hover {
        border-color: var(--accent);
    }
    
    .provider-icon i {
      font-size: 1.5rem;
      color: var(--light);
    }
    
    .provider-icon.active {
      border-color: var(--accent);
      transform: scale(1.1);
      box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
    }
    
    .provider-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.8);
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .game-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
      }
      
      .game-thumbnail {
        height: 150px;
      }
      
      .play-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 70%;
      }
      
      .provider-icon {
        width: 70px;
        height: 70px;
      }
      
      .provider-icon:hover {
        border-color: var(--accent);
      }
      
      .provider-icon i {
        font-size: 1.2rem;
      }
      
      .section-title {
        font-size: 1.3rem;
      }
    }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    /* .fade-in {
      animation: fadeIn 0.6s ease forwards;
    }
    /* Modern Pagination Styles */
      .pagination-container {
        margin-top: 2rem;
      }
      
      .pagination {
        gap: 8px;
      }
      
      .page-item {
        margin: 0 2px;
      }
      
      .page-link {
        background-color: var(--gray);
        border: 1px solid rgba(255,255,255,0.1);
        color: white;
        min-width: 40px;
        text-align: center;
        border-radius: 8px !important;
        transition: all 0.3s ease;
        padding: 8px 12px;
      }
      
      .page-link:hover {
        background-color: var(--primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(106, 17, 203, 0.3);
      }
      
      .page-item.active .page-link {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        border-color: transparent;
        color: white;
        font-weight: 600;
      }
      
      .page-item.disabled .page-link {
        background-color: #3a3a3a;
        color: #6c757d;
        pointer-events: none;
      }
      
      @media (max-width: 768px) {
        .page-link {
          min-width: 36px;
          padding: 6px 10px;
          font-size: 0.85rem;
        }
      }