 * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #0f172a, #1e293b);
      color: #e2e8f0;
      padding: 20px;
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
    }
    
        #logo {
      display: block;
      margin: 0 auto 0px;
      width: 150px;
      opacity: 0.9;
      transition: transform 0.3s ease;
    }
    
    #logo:hover {
      transform: scale(1.05);
    }

    
    .container {
      max-width: 800px;
      margin: 35px auto;
      padding: 20px;
    }
    
    
    h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: 32px;
      text-align: center;
      color: #10b981;
      margin-bottom: 10px;
      text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }
    
        /* ======================================================
   NAVBAR
====================================================== */
.navbar {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    flex-wrap: wrap;
}
.nav-title { font-size: 1.5rem; font-weight: 800; }
.nav-links { display: flex; gap: 12px; }
.nav-item {
    padding: 10px 16px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}
.nav-item:hover { background: rgba(255,255,255,0.25); }

/* Hamburger Menu for Mobile */
.navbar .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.navbar .hamburger div {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}
@media(max-width:768px){
    .nav-links{
        display:none;
        width:100%;
        flex-direction: column;
        margin-top:10px;
        gap:5px;
    }
    .nav-links.show{ display:flex; }
    .navbar .hamburger{ display:flex; width: 49px; }
}

a {
    text-decoration: none;
    color: #ffffff;
}
    
    .subtitle {
      text-align: center;
      color: #94a3b8;
      margin-bottom: 30px;
      font-size: 16px;
    }
    
    .cheat-container {
      background: rgba(30, 41, 59, 0.7);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 30px;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: #cbd5e0;
    }
    
    .form-group input, .form-group select {
      width: 100%;
      padding: 12px 15px;
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(100, 116, 139, 0.5);
      border-radius: 8px;
      color: #e2e8f0;
      font-size: 16px;
      transition: all 0.3s ease;
    }
    
    .form-group input:focus, .form-group select:focus {
      outline: none;
      border-color: #10b981;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    }
    
    .activate-btn {
      display: block;
      width: 100%;
      padding: 16px;
      font-size: 18px;
      border: none;
      border-radius: 8px;
      background: linear-gradient(135deg, #10b981, #059669);
      color: white;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      margin-top: 10px;
    }
    
    .activate-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    }
    
    .activate-btn:disabled {
      background: linear-gradient(135deg, #4b5563, #374151);
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }
    
    .activate-btn i {
      margin-right: 8px;
    }
    
    .progress-container {
      margin-top: 20px;
      display: none;
    }
    
    .progress-bar {
      height: 10px;
      background: rgba(15, 23, 42, 0.7);
      border-radius: 5px;
      overflow: hidden;
      margin-bottom: 10px;
    }
    
    .progress {
      height: 100%;
      background: linear-gradient(90deg, #10b981, #34d399);
      width: 0%;
      transition: width 0.3s ease;
    }
    
    .progress-text {
      text-align: center;
      color: #94a3b8;
      font-size: 14px;
    }
    
    .result-container {
      margin-top: 30px;
      display: none;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.3);
      border-radius: 12px;
      padding: 20px;
      animation: fadeIn 0.5s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .result-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .result-header i {
      font-size: 24px;
      color: #10b981;
      margin-right: 10px;
    }
    
    .result-header h3 {
      margin: 0;
      color: #10b981;
      font-size: 20px;
    }
    
    .result-details {
      background: rgba(15, 23, 42, 0.7);
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 15px;
    }
    
    .result-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(100, 116, 139, 0.2);
    }
    
    .result-row:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
    
    .result-label {
      color: #94a3b8;
    }
    
    .result-value {
      color: #e2e8f0;
      font-weight: 500;
    }
    
    .success-message {
      text-align: center;
      color: #10b981;
      font-weight: 500;
      margin-top: 15px;
    }
    
    .redirect-message {
      text-align: center;
      margin-top: 20px;
      padding: 15px;
      background: rgba(59, 130, 246, 0.1);
      border-radius: 8px;
      border: 1px solid rgba(59, 130, 246, 0.3);
    }
    
    .redirect-message h4 {
      color: #3b82f6;
      margin-top: 0;
      margin-bottom: 10px;
    }
    
    .redirect-message p {
      color: #93c5fd;
      margin: 0;
    }
    
    .countdown {
      font-size: 24px;
      font-weight: 700;
      color: #3b82f6;
      margin: 10px 0;
    }
    
    .warning-box {
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid rgba(239, 68, 68, 0.3);
      border-radius: 8px;
      padding: 15px;
      margin-top: 20px;
    }
    
    .warning-box h4 {
      color: #ef4444;
      margin-top: 0;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }
    
    .warning-box h4 i {
      margin-right: 8px;
    }
    
    .warning-box p {
      color: #f87171;
      margin: 0;
      font-size: 14px;
    }
    
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
      margin: 30px 0;
    }
    
    .feature {
      background: rgba(30, 41, 59, 0.5);
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .feature:hover {
      transform: translateY(-5px);
      background: rgba(30, 41, 59, 0.7);
    }
    
    .feature i {
      font-size: 30px;
      color: #10b981;
      margin-bottom: 10px;
    }
    
    .feature h3 {
      margin: 0 0 10px;
      color: #e2e8f0;
      font-size: 16px;
    }
    
    .feature p {
      margin: 0;
      color: #94a3b8;
      font-size: 14px;
    }
    
    .footer {
      text-align: center;
      margin-top: 40px;
      padding: 20px;
      color: #64748b;
      font-size: 14px;
    }
    
    @media (max-width: 768px) {
      h1 {
        font-size: 26px;
      }
      
      .cheat-container {
        padding: 20px;
      }
      
      .features {
        grid-template-columns: 1fr;
      }
    }