/* Global */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background:url(/assets/images/background-black.webp);
    color: #f8fafc;
    box-sizing: border-box;
  }
  
  /* Header */
  .header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 0.5rem 1.1rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo img {
    height: 65px;
    width: auto;
    display: block;
  }
  
  /* Desktop Nav */
  .nav-desktop {
    display: flex;
    font-size: 0.9rem;
    align-items: center;
  }
  
  .nav-desktop a {
    color: #f8fafc;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-desktop a:hover {
    color: #facc15;
  }
  
  .nav-desktop .btn-desktop-signup {
    background: linear-gradient(to right, #eab308, #facc15); /* gold mewah */
    color: #1a1a2e;
    padding: 0.45rem 1.2rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.3);
    transition: all 0.3s ease;
    margin-left: 1rem;
  }
  
  .nav-desktop .btn-desktop-signup:hover {
    background: linear-gradient(to right, #fef08a, #facc15);
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 0 18px rgba(250, 204, 21, 0.5);
  }
  
  .nav-desktop .btn-desktop-login {
    background: transparent;
    border: 2px solid #facc15;
    color: #facc15;
    padding: 0.45rem 1.2rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
  }
  
  .nav-desktop .btn-desktop-login:hover {
    background: rgba(250, 204, 21, 0.1);
    color: #fff;
    transform: translateY(-1px) scale(1.03);
    border-color: #fde68a;
  }
  
  .mobile-tools {
    display: none;
    align-items: center;
    gap: 0.5rem;
  }

  .mobile-auth {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .mobile-auth a {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    font-size: 0.85rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-sizing: border-box;
  }
  
  .btn-mobile-signup {
    background: linear-gradient(to bottom, #facc15, #d1a115);
    color: white;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .btn-mobile-signup::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.4) 0%, transparent 80%);
    animation: pulse-glow 2s infinite ease-out;
    z-index: 0;
  }
  
  .btn-mobile-signup span {
    position: relative;
    z-index: 1;
  }
  
  @keyframes pulse-glow {
    0% {
      transform: scale(0.8);
      opacity: 0.7;
    }
    50% {
      transform: scale(1);
      opacity: 0.3;
    }
    100% {
      transform: scale(0.8);
      opacity: 0.7;
    }
  }
  
  .btn-mobile-login {
    background: transparent;
    border: 1.5px solid #facc15;
    color: #facc15;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s ease;
  }
  
  .btn-mobile-login:hover {
    background: rgba(250, 204, 21, 0.1);
    transform: translateY(-2px) scale(1.05);
  }
  
  .burger {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 9999;
    display: none;
  }
  
  .line {
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #FFD700; /* gold */
    transition: all 0.4s ease;
    border-radius: 2px;
  }
  
  .top {
    top: 0;
  }
  .middle {
    top: 10px;
  }
  .bottom {
    bottom: 0;
  }
  
  .burger.active .top {
    transform: rotate(45deg);
    top: 10px;
  }
  .burger.active .middle {
    opacity: 0;
  }
  .burger.active .bottom {
    transform: rotate(-45deg);
    bottom: 10px;
  }
  
  .hidden {
    display: none;
  }
  
  .nav-mobile {
    position: fixed;
    top: 0;
    left: -300px;
    width: 260px;
    height: 100vh;
    background: #0b121b;
    color: #facc15;
    z-index: 9999;
    padding: 1rem;
    box-shadow: 4px 0 20px rgba(0,0,0,0.4);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .nav-mobile.active {
    left: 0;
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  
  .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .close-btn {
    background: none;
    border: 2px solid #facc15;
    color: #facc15;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
  }
  
  .auth-buttons {
    display: flex;
    gap: 0.5rem;
  }
  
  .btn-login,
  .btn-signup {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .btn-login {
    background: white;
    color: #111827;
  }
  
  .btn-signup {
    background: linear-gradient(to bottom, #facc15, #d1a115);
    color: white;
    box-shadow: 0 2px 6px rgba(255, 193, 7, 0.4);
  }
  
  .btn-signup:hover {
    transform: scale(1.05);
  }
  
  .sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .sidebar-menu li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.2s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .sidebar-menu li:hover {
    background-color: #121c2a;
    padding-left: 0.5rem;
  }
  
  .sidebar-menu img {
    width: 20px;
    height: 20px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-desktop {
      display: none;
    }
  
    .mobile-tools {
      display: flex;
    }
  
    .burger {
      display: block;
    }
  }
  
  .container-about {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;

  }

  @media (max-width: 767px) {
    .container-about {
      padding: 0;
      gap: 0.5rem;
      border-radius: 0;
    }
  }
  
  
/* === SLIDER === */
#banner-slider {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .slider-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .slide.active {
    opacity: 1;
    position: relative;
    z-index: 1;
  }
  
  .slide img {
    width: 100%;

    height: 450px;
    display: block;
    object-fit: contain;

  }
  
  @media (max-width: 768px) {
    .slider-wrapper {
      width: 100%;
    }
    .slide img {
        height:auto;
        padding: 0%;
    }
  }
  
#index-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
  }
  
  .about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-text h2 {
    color: #facc15;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .typing-text {
    font-size: 1.8rem;
    color: #c084fc;
  }
  
  .cursor {
    color: white;
    animation: blink 1s step-start infinite;
  }
  
  @keyframes blink {
    50% { opacity: 0; }
  }
  
  .about-text p {
    color: #e5e7eb;
    font-size: 1.0rem;
    margin-top: 1rem;
  }
  
  .about-img img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .register-btn {
    display: inline-block;
    margin-top: 1.5rem;
    background: linear-gradient(to right, #facc15, #fcd34d);
    color: #1f2937;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.25);
    text-decoration: none;
  }
  
  .register-btn:hover {
    background: linear-gradient(to right, #fde68a, #facc15);
    transform: scale(1.06);
    box-shadow: 0 0 25px rgba(250, 204, 21, 0.4);
  }
  
  @media(min-width: 768px) {
    .about-container {
      flex-direction: row;
      align-items: center;
    }
    .about-text, .about-img {
      flex: 1;
    }
    .about-img {
        display: flex;
        justify-content: flex-end;
      }
  }

  .provider-section {
    position: relative;
    padding: 2rem 1rem;
    text-align: center;
    background-color: rgba(15, 23, 42, 0.85);
    overflow: hidden;
    z-index: 1;
  }
  
  .provider-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(/assets/providers/provider-bgblack.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5; 
    z-index: 0;
  }
  
  .provider-section > * {
    position: relative;
    z-index: 2;
  }


  .provider-title {
    color: #facc15;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    background: linear-gradient(to right, #facc15, #fde68a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse-title 2s infinite ease-in-out;
  }
  
  @keyframes pulse-title {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.05);
      opacity: 0.9;
    }
  }
  
  
  .provider-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
  }
  
  .provider-item img {
    width: 350px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .provider-item img:hover {
    transform: scale(1.1);
  }
  

  @media (max-width: 1024px) {
    .provider-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    .provider-item img {
      width: 280px;
    }
  }
  
  @media (max-width: 768px) {
    .provider-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
    }
  
    .provider-item img {
      width: 280px;
    }
  }
  
  @media (max-width: 480px) {
    .provider-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .provider-item img {
      width: 250px;
    }
  }
  /* */
  .game-category-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .game-category-title {
    font-size: 1.7rem;
    color: #facc15;
    margin-bottom: 1.5rem;
    font-weight: bold;
  }
  
  .games-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  
  .tab-btn {
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    border: 2px solid #facc15;
    background: transparent;
    color: #facc15;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .tab-btn.active,
  .tab-btn:hover {
    background: #facc15;
    color: #1f2937;
    transform: scale(1.05);
  }
  
  .games-tab-content .tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
  }
  
  .tab-panel.active {
    display: block;
  }
  

/* === GAME CATEGORY BLOCK === */
.games-block-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .games-block-title {
    font-size: 1.7rem;
    color: #facc15;
    margin-bottom: 1.5rem;
    font-weight: bold;
  }
  
  .highlighted {
    color: #ef4444;
  }
  
  /* Tabs */
  .games-block-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  
  .games-block-tabs .tab-btn {
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    border: 2px solid #facc15;
    background: transparent;
    color: #facc15;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .games-block-tabs .tab-btn.active,
  .games-block-tabs .tab-btn:hover {
    background: #facc15;
    color: #1f2937;
    transform: scale(1.05);
  }
  
  .games-tab-content .tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
  }
  .tab-panel.active {
    display: block;
  }
  
  .games-block-section .game-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 1.5rem;
    justify-items: center;
  }
  
  .game-card {
    position: relative;
    background: #111827;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  }
  
  .game-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .game-card:hover .overlay {
    opacity: 1;
  }
  
  .play-button {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .play-button:hover {
    transform: scale(1.1);
  }
  
  @media (max-width: 768px) {
    .games-block-section .game-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
  
    .play-button svg {
      width: 28px;
      height: 28px;
    }
  }
  
  @media (max-width: 1024px) {
    .games-block-section .game-grid {
      grid-template-columns: repeat(5, 1fr);
    }
  }

  @media (max-width: 480px) {
    .games-block-section .game-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  .register-steps-section {
    padding: 2rem 1rem;
    text-align: center;
    color: #ffffff;
    margin: 0 auto;
    max-width: 1200px;
  }
  
  .register-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
  
  .register-title img {
    width: 28px;
    height: auto;
  }
  
  .register-subtext {
    font-size: 1rem;
    color: #f1f5f9;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-inline: auto;
  }
  
  .register-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .step-item {
    background: transparent;
    text-align: center;
    max-width: 260px;
    flex: 1 1 220px;
  }
  
  .step-item img {
    width: 80px;
    margin-bottom: 1rem;
  }
  
  .step-item h3 {
    color: #facc15;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .step-item p {
    color: #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.6;
    word-wrap: break-word;
  }
  
  .artikel-container {
    margin: 0 auto;
    color: #e5e7eb;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.8;
  }
  

  .artikel-container h1,
  .artikel-container h2,
  .artikel-container h3,
  .artikel-container h4,
  .artikel-container h5,
  .artikel-container h6 {
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #facc15;
    line-height: 1.3;
  }
  .artikel-container h1 { font-size: 2rem; }
  .artikel-container h2 { font-size: 1.75rem; }
  .artikel-container h3 { font-size: 1.5rem; }
  .artikel-container h4 { font-size: 1.25rem; }
  .artikel-container h5 { font-size: 1.125rem; }
  .artikel-container h6 { font-size: 1rem; }
  
  /* === PARAGRAPH === */
  .artikel-container p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #d1d5db;
  }
  
  /* === LINK === */
  .artikel-container a {
    color: #facc15;
    text-decoration: underline;
    transition: 0.3s ease;
    font-weight: 500;
  }
  .artikel-container a:hover {
    color: #fde68a;
    text-decoration: none;
  }
  
  /* === LIST === */
  .artikel-container ul,
  .artikel-container ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .artikel-container ul li,
  .artikel-container ol li {
    margin-bottom: 0.5rem;
  }
  
  /* === BLOCKQUOTE === */
  .artikel-container blockquote {
    border-left: 4px solid #facc15;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #f3f4f6;
    font-style: italic;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
  }
  
  /* === IMAGE === */
  .artikel-container img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* === RESPONSIVE === */
  @media (max-width: 600px) {
    .artikel-container {
      padding: 1.5rem 1rem;
    }
  
    .artikel-container h1 { font-size: 1.6rem; }
    .artikel-container h2 { font-size: 1.4rem; }
    .artikel-container h3 { font-size: 1.2rem; }
    .artikel-container h4,
    .artikel-container h5,
    .artikel-container h6 { font-size: 1rem; }
  
    .artikel-container p,
    .artikel-container ul,
    .artikel-container ol {
      font-size: 0.95rem;
    }
  }
  
  .site-footer {
    background-color: #0f172a;
    color: #f1f5f9;
    font-size: 0.9rem;
    padding: 2rem 1rem;
  }
  
  .footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .footer-brand img {
    max-width: 140px;
    height: auto;
    margin-bottom: 0.8rem;
  }
  
  .footer-column h4 {
    font-size: 1rem;
    color: #facc15;
    margin-bottom: 0.5rem;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-column ul li a {
    color: #f1f5f9;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-column ul li a:hover {
    color: #facc15;
  }
  
  .payment-methods {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
  }
  
  .payment-methods img {
    width:65px;
    height: auto;
    object-fit: contain;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #94a3b8;
    border-top: 1px solid #1e293b;
    padding-top: 1rem;
  }
  
  @media (max-width: 1024px) {
    .footer-top {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .footer-top {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .footer-brand img {
      max-width: 120px;
    }
  
    .payment-methods img {
      width: 42px;
    }
  }
  
  @media (max-width: 480px) {
    .footer-top {
      grid-template-columns: 1fr;
    }
  
    .footer-column {
      align-items: center;
      text-align: center;
    }
  
    .payment-methods {
      justify-content: center;
    }
  
    .payment-methods img {
      width: 38px;
    }
  }
  