body {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }

        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes sonar-ping {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
            70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }
        @keyframes sonar-ping-red {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
            70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
        }
        @keyframes text-gradient-animation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

body {

   margin: 0;
  padding: 0;
  height: 70vh;
  font-family: 'Inter', sans-serif;
  color: #e5e7eb;
  overflow-x: hidden;

  background:
    linear-gradient(to bottom, rgba(7,7,7,0.4), rgba(0,0,0,0.9), #000000),
    url("https://storexzone.x10.mx/images/jspa.jpg");

background-position: center 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000000;

  

  user-select: none;
}

            #scrollProgress {
        position: fixed;
        top: 0; left: 0; width: 0%; height: 3px;
        background: linear-gradient(to right, var(--primary), var(--accent));
        z-index: 99999;
    }
        
        #tsparticles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        
        
        .btn {
            transition: all 0.3s ease;
        }
        .btn:hover {
            transform: scale(1.05);
        }
        
        .modal-backdrop {
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
        }
        .modal-content {
            transform: translateY(-30px) scale(0.98);
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
        }
        .modal-backdrop.active .modal-content {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .status-online { background-color: #22c55e; animation: sonar-ping 2s infinite ease-out; }
        .status-offline { background-color: #ef4444; animation: sonar-ping-red 2.5s infinite ease-out; }

        .text-gradient {
            background: linear-gradient(90deg, #3b82f6, #a855f7, #ec4899, #3b82f6);
            background-size: 200% 200%;
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text; text-fill-color: transparent;
            animation: text-gradient-animation 5s ease infinite;
        }
        .header-glow { text-shadow: 0 0 15px rgba(59, 130, 246, 0.5); }
        
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .version-toggle button {
            transition: all 0.3s ease;
            border: 2px solid #374151;
        }
        .version-toggle button.active {
            background-image: linear-gradient(to right, #3b82f6, #60a5fa);
            border-color: #3b82f6;
            color: white;
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
        }
        .game-grid-bg {
            background-image: linear-gradient(rgba(59,130,246,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(59,130,246,0.1) 1px, transparent 1px);
            background-size: 3rem 3rem;
        }
        .game-item {
            transition: transform 0.2s ease-in-out;
        }
        .game-item:hover {
            transform: scale(1.05);
        }
        .game-item-img.grayscale {
            filter: grayscale(100%) brightness(0.7);
        }

        /* Nav Tab Styling */
        .nav-tab {
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
            padding-bottom: 0.5rem;
        }
        .nav-tab.active {
            color: #3b82f6;
            border-bottom-color: #3b82f6;
        }
        .nav-tab:not(.active):hover {
            color: #60a5fa;
            border-bottom-color: #60a5fa;
        }
    
.price-selected {
  border: 2px solid #3b82f6 !important;
  background-color: rgba(59, 130, 246, 0.1);
}

/* Price grid visual lines */
#garena-price-grid > div, #global-price-grid > div {
  border: 1px solid rgba(107,114,128,0.4); /* gray-600 */
}

    .hackStyle-section {
      background: var(--card-bg);
      backdrop-filter: blur(15px);
      border: 1px solid rgb(83, 0, 0);
      border-radius: 16px;
      padding: 30px;
      margin-bottom: 25px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.8);
    }
    .hackStyle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

.hackStyle-card {
  background: rgba(0, 0, 0, 0.30);
  padding: 25px;
  border-radius: 12px;
  text-align: center;

  /* same as border border-gray-800 */
  border: 1px solid rgba(31, 41, 55, 1);

  /* same as shadow-2xl */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);

  transition: 0.3s ease;
}

    .hack-btn {
      display: inline-block; background: rgb(0, 91, 209);; color:     #ffffff; padding: 12px 0;
      border-radius: 8px; text-decoration: none; font-weight: 700; font-family: 'Orbitron';
      font-size: 0.8rem; transition: 0.3s; width: 100%; text-align: center;
    }

    

