  body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    color: white;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    /* background: #000 !important; REMOVED to allow global styles.css background */
  }



  .left-side {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo {
    height: 40px;
  }

  .title {
    font-weight: bold;
  }

  .official {
    color: #0099ff;
    font-size: 12px;
  }

  .tagline {
    flex: 1 1 auto;
    text-align: center;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 16px;
    color: transparent;
    background: linear-gradient(90deg, #93c5fd, #e879f9, #34d399, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 300% 100%;
    animation: shimmer 6s linear infinite;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0 12px;
  }

  @keyframes shimmer {
    0% {
      background-position: 0% 50%;
    }

    100% {
      background-position: 100% 50%;
    }
  }

  .login-btn {
    background: #0099ff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
  }

  /* Online Support Button Styles */
  .support-btn {
    background: linear-gradient(135deg, #00c853, #0099ff, #ff6b35);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
    position: relative;
    overflow: hidden;
  }

  .support-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
  }

  .support-btn:hover::before {
    left: 100%;
  }

  .support-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #0099ff, #00c853);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.6);
  }

  .support-btn:active {
    transform: translateY(-1px) scale(1.02);
  }

  .support-btn:active {
    transform: translateY(0);
  }



  /* ------- UPDATED TAB STYLING ------- */

  .tab-bar {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
    background: #23232b;
    z-index: 10;
  }


  .tab {
    background-color: #2a2935;
    border: none;
    color: #8e8e93;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .tab .icon {
    font-size: 18px;
    color: #8e8e93;
    transition: color 0.3s ease;
  }

  .tab.active {
    background-color: #38384a;
    color: #0099ff;
  }

  .tab.active .icon {
    color: #0099ff;
  }

  .tab:hover {
    background-color: #3a3a44;
    color: #ffffff;
  }

  .tab:hover .icon {
    color: #ffffff;
  }

  /* ----------------------------------- */

  .sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    height: 100vh;
    width: 250px;
    background: #1e1d26;
    color: white;
    transition: left 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1000;
  }

  .sidebar.active {
    left: 0;
  }

  .sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .sidebar-title {
    font-size: 18px;
    color: #aaa;
  }

  .sidebar-item {
    margin: 10px 0;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
  }

  .sidebar-item:hover,
  .sidebar-item.active {
    background: #2c2b3a;
    color: #0099ff;
  }

  .sidebar-buttons {
    margin-top: 20px;
  }

  .sidebar-btn {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #aaa;
    background: transparent;
    color: #aaa;
    border-radius: 4px;
    cursor: pointer;
  }

  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
  }

  .popup.show {
    display: flex;
  }

  /* Online Support Popup - Smaller Size with Fixed Input */
  .popup-content {
    background: #2c2b3a;
    padding: 30px 30px 30px 30px;
    border-radius: 16px;
    text-align: center;
    color: white;
    width: 350px;
    max-width: 85vw;
    max-height: 70vh;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow-y: auto;
  }

  /* Better Input Row - Fixed Size */
  .input-row {
    display: flex;
    margin-top: 20px;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    height: 44px;
    /* Fixed height */
  }

  .input-row input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    background: #23222e;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    height: 44px;
    /* Fixed height */
    box-sizing: border-box;
    resize: none;
    overflow: hidden;
  }

  .input-row input::placeholder {
    color: #888;
  }

  .input-row input:focus {
    background: #2a2935;
    box-shadow: inset 0 0 0 2px #0099ff;
  }

  .input-row button {
    padding: 12px 20px;
    border: none;
    background: #0099ff;
    color: white;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
    height: 44px;
    /* Fixed height */
    box-sizing: border-box;
    white-space: nowrap;
  }

  .input-row button:hover {
    background: #0077cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 153, 255, 0.4);
  }

  .input-row button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 153, 255, 0.4);
  }

  /* Popup Content Styling */
  .popup-content h2 {
    margin-bottom: 12px;
    font-size: 1.8em;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
  }

  .popup-content p {
    margin-bottom: 6px;
    font-size: 1em;
    color: #ccc;
    line-height: 1.4;
  }

  /* Close Button */
  .popup-content .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #aaa;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }

  .popup-content .close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .popup-content {
      width: 90vw;
      padding: 25px 20px 25px 20px;
      max-height: 75vh;
    }

    .popup-content h2 {
      font-size: 1.6em;
    }

    .input-row {
      height: 40px;
    }

    .input-row input {
      padding: 10px 14px;
      font-size: 16px;
      height: 40px;
    }

    .input-row button {
      padding: 10px 16px;
      font-size: 16px;
      height: 40px;
    }
  }

  @media (max-width: 480px) {
    .popup-content {
      width: 95vw;
      padding: 20px 15px 20px 15px;
    }

    .popup-content h2 {
      font-size: 1.4em;
    }

    .input-row {
      flex-direction: column;
      gap: 8px;
      height: auto;
    }

    .input-row input,
    .input-row button {
      border-radius: 8px;
      width: 100%;
      height: 40px;
    }
  }











/* --- Optimized: Legacy product cards removed --- */

        /* Footer Styles */
        .site-footer {
          border-top: 1px solid rgba(255, 255, 255, 0.1);
          color: var(--muted);
          background: #050816;
          /* Deep navy background */
          position: relative;
          overflow: hidden;
          margin-top: auto;
          box-shadow: inset 0 1px 0 rgba(25, 212, 202, 0.1);
          font-family: 'Poppins', 'Inter', sans-serif;
          min-height: 220px;
        }

        .site-footer::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 1px;
          background: linear-gradient(90deg, transparent, #8b5cf6, #06b6d4);
          /* Purple to cyan gradient */
        }

        .footer-container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
        }

        .footer-main {
          padding: 20px 0 15px;
          position: relative;
        }

        .footer-column:first-child {
          grid-column: 1;
          order: 3;
          /* Move brand section to the bottom */
          text-align: center;
        }

        .footer-column:nth-child(2) {
          order: 1;
        }

        .footer-column:nth-child(3) {
          order: 2;
        }

        .footer-column:nth-child(4) {
          order: 4;
        }

        .footer-content {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 15px;
          align-items: start;
        }

        /* Brand & CTA Column */

        .footer-column:nth-child(3) {
          order: 2;
        }

        .footer-column:nth-child(4) {
          order: 4;
          grid-column: 1;
        }

        .footer-brand {
          max-width: 100%;
        }

        .footer-logo {
          display: flex;
          align-items: center;
          gap: 10px;
          font-size: 28px;
          font-weight: 800;
          margin: 0 0 15px;
          letter-spacing: -0.5px;
        }

        .logo-icon {
          font-size: 32px;
        }

        .logo-text {
          background: linear-gradient(135deg, #8b5cf6, #06b6d4);
          /* Purple to cyan gradient */
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .footer-tagline {
          font-size: 16px;
          color: #94a3b8;
          margin: 0 0 25px;
          line-height: 1.6;
        }

        .subscribe-btn {
          background: linear-gradient(90deg, #8b5cf6, #06b6d4);
          /* Purple to cyan gradient */
          color: white;
          border: none;
          border-radius: 24px;
          padding: 10px 20px;
          font-size: 14px;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
          box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }

        .subscribe-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
        }

        .footer-socials {
          display: flex;
          gap: 15px;
          margin-top: 25px;
        }

        .social-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.05);
          border: 1px solid rgba(255, 255, 255, 0.1);
          color: #94a3b8;
          text-decoration: none;
          transition: all 0.3s ease;
        }

        .social-icon:hover {
          transform: scale(1.1);
        }

        .social-icon.arrow::before {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%) rotate(-45deg);
          width: 12px;
          height: 12px;
          border-top: 2px solid white;
          border-left: 2px solid white;
        }

        .social-icon.double-arrow::before {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%) rotate(-45deg);
          width: 12px;
          height: 12px;
          border-top: 2px solid white;
          border-left: 2px solid white;
        }

        .social-icon.double-arrow::after {
          content: "";
          position: absolute;
          width: 12px;
          height: 12px;
          border-left: 2px solid white;
          border-bottom: 2px solid white;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -70%) rotate(-45deg);
        }

        .social-icon.telegram:hover {
          transform: translateY(-3px);
          border-color: #8b5cf6;
          background: rgba(139, 92, 246, 0.1);
          color: #8b5cf6;
          box-shadow: 0 6px 15px rgba(139, 92, 246, 0.3);
        }

        .social-icon.discord:hover {
          border-color: #5865F2;
          background: rgba(88, 101, 242, 0.1);
          color: #5865F2;
          box-shadow: 0 6px 15px rgba(88, 101, 242, 0.3);
        }

        .social-icon.twitter:hover {
          border-color: #1DA1F2;
          background: rgba(29, 161, 242, 0.1);
          color: #1DA1F2;
          box-shadow: 0 6px 15px rgba(29, 161, 242, 0.3);
        }

        .social-icon.facebook:hover {
          border-color: #1877F2;
          background: rgba(24, 119, 242, 0.1);
          color: #1877F2;
          box-shadow: 0 6px 15px rgba(24, 119, 242, 0.3);
        }

        .social-icon.youtube:hover {
          border-color: #FF0000;
          background: rgba(255, 0, 0, 0.1);
          color: #FF0000;
          box-shadow: 0 6px 15px rgba(255, 0, 0, 0.3);
        }

        .social-icon.instagram:hover {
          border-color: #E1306C;
          background: rgba(225, 48, 108, 0.1);
          color: #E1306C;
          box-shadow: 0 6px 15px rgba(225, 48, 108, 0.3);
        }

        /* Footer Columns */
        .footer-column {
          display: flex;
          flex-direction: column;
        }

        .footer-heading {
          font-size: 16px;
          font-weight: 700;
          color: white;
          margin: 0 0 20px;
          letter-spacing: 0.5px;
          position: relative;
          text-transform: uppercase;
        }

        .footer-heading::after {
          content: '';
          position: absolute;
          bottom: -8px;
          left: 0;
          width: 30px;
          height: 2px;
          background: linear-gradient(90deg, #8b5cf6, transparent);
          border-radius: 1px;
        }

        .footer-links {
          list-style: none;
          margin: 0;
          padding: 0;
          display: flex;
          flex-direction: column;
          gap: 12px;
        }

        .footer-links li {
          margin: 0;
        }

        .footer-links a {
          color: #94a3b8;
          text-decoration: none;
          font-size: 9px;
          transition: all 0.3s ease;
          display: inline-block;
          position: relative;
          padding: 4px 0;
          line-height: 1.6;
        }

        .footer-links a::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 0;
          height: 2px;
          background: linear-gradient(90deg, #8b5cf6, #06b6d4);
          transition: width 0.3s ease;
          border-radius: 1px;
        }

        .footer-links a:hover {
          color: #8b5cf6;
          transform: translateX(4px);
        }

        .footer-links a:hover::after {
          width: 100%;
        }

        /* Subscribe & Payment Column */
        .subscribe-section {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }

        .email-input {
          padding: 12px 15px;
          border-radius: 8px;
          border: 1px solid rgba(255, 255, 255, 0.1);
          background: rgba(255, 255, 255, 0.05);
          color: white;
          font-size: 14px;
          outline: none;
          transition: all 0.3s ease;
        }

        .email-input:focus {
          border-color: #8b5cf6;
          box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
        }

        .subscribe-button {
          background: linear-gradient(90deg, #8b5cf6, #06b6d4);
          color: white;
          border: none;
          border-radius: 8px;
          padding: 12px 20px;
          font-size: 14px;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
        }

        .subscribe-button:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 15px rgba(139, 92, 246, 0.3);
        }

        .payment-icons {
          display: flex;
          gap: 15px;
          margin-top: 10px;
        }

        .payment-icon {
          font-size: 24px;
          color: #94a3b8;
          transition: all 0.3s ease;
        }

        .payment-icon:hover {
          color: white;
          transform: translateY(-2px);
        }

        .trust-text {
          font-size: 12px;
          color: #64748b;
          margin-top: 15px;
        }

        .online-indicator {
          display: inline-block;
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background-color: #10b981;
          margin-left: 5px;
          vertical-align: middle;
          box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
          animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
          0% {
            box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
          }

          70% {
            box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
          }

          100% {
            box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
          }
        }

        /* Bottom bar */
        .footer-bottom {
          border-top: 1px solid rgba(255, 255, 255, 0.1);
          background: rgba(11, 15, 25, 0.8);
          padding: 12px 0;
          position: relative;
        }

        .footer-bottom::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 1px;
          background: linear-gradient(90deg, transparent, #8b5cf6, #06b6d4);
        }

        .footer-bottom-content {
          display: flex;
          align-items: center;
          justify-content: space-between;
          flex-direction: row;
          gap: 20px;
          font-size: 14px;
          text-align: center;
        }

        .footer-copyright p {
          margin: 0;
          color: #94a3b8;
        }

        .footer-copyright strong {
          color: white;
          font-weight: 700;
        }

        .footer-legal {
          display: flex;
          align-items: center;
          flex-wrap: wrap;
          justify-content: center;
          gap: 15px;
        }

        .footer-legal a {
          color: #94a3b8;
          text-decoration: none;
          font-size: 9px;
          transition: color 0.3s ease;
          position: relative;
        }

        .footer-legal a::after {
          content: '';
          position: absolute;
          bottom: -2px;
          left: 0;
          width: 0;
          height: 1px;
          background: linear-gradient(90deg, #8b5cf6, #06b6d4);
          transition: width 0.3s ease;
        }

        .footer-legal a:hover::after {
          width: 100%;
        }

        .footer-legal a:hover {
          color: #8b5cf6;
        }

        .separator {
          color: rgba(255, 255, 255, 0.2);
          font-size: 13px;
        }

        .language-selector {
          display: flex;
          align-items: center;
          gap: 8px;
          color: #94a3b8;
          font-size: 13px;
          cursor: pointer;
          transition: color 0.3s ease;
        }

        .language-selector:hover {
          color: white;
        }

        .flag-icon {
          font-size: 16px;
        }

        /* Footer Responsive */
        @media (max-width: 1024px) {
          .footer-column:first-child {
            grid-column: 1;
            order: 3;
            /* Move brand section to the bottom */
            text-align: center;
          }

          .footer-column:nth-child(2) {
            order: 1;
          }

          .footer-column:nth-child(3) {
            order: 2;
          }

          .footer-column:nth-child(4) {
            order: 4;
          }

          .footer-content {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
          }


          .footer-column:nth-child(3) {
            order: 2;
          }

          .footer-column:nth-child(4) {
            order: 4;
          }

          .footer-column:first-child {
            grid-column: 1 / 3;
            text-align: center;
          }

          .footer-socials {
            justify-content: center;
          }

          .footer-bottom-content {
            flex-direction: column;
            text-align: center;
          }

          .footer-legal {
            justify-content: center;
          }
        }

        @media (max-width: 768px) {
          .footer-column:first-child {
            grid-column: 1;
            order: 3;
            /* Move brand section to the bottom */
            text-align: center;
          }

          .footer-column:nth-child(2) {
            order: 1;
          }

          .footer-column:nth-child(3) {
            order: 2;
          }

          .footer-column:nth-child(4) {
            order: 4;
          }

          .footer-content {
            grid-template-columns: 1fr;
            gap: 20px;
          }

          .footer-column:nth-child(3) {
            order: 2;
          }

          .footer-column:nth-child(4) {
            order: 4;
          }

          .footer-column:first-child {
            grid-column: 1;
            order: 3;
            /* Move brand section to the bottom */
            text-align: center;
          }

          .footer-main {
            padding: 15px 0 10px;
          }

          .footer-bottom-content {
            flex-direction: column;
            gap: 5px;
          }

          .footer-legal {
            flex-wrap: nowrap;
            justify-content: center;
            gap: 10px;
          }

          .footer-legal a {
            font-size: 8px;
          }

          .footer-links a {
            font-size: 7px;
          }

          /* Adjust Customer Support links for mobile - 2 links per row */
          .footer-column:nth-child(3) .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
          }

          /* Ensure all footer columns follow 2-column grid on mobile */
          .footer-column .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
          }

          .footer-column:nth-child(3) .footer-links li {
            margin: 0;
          }
        }

        @media (max-width: 480px) {
          .footer-container {
            padding: 0 10px;
          }

          .footer-main {
            padding: 12px 0 8px;
          }

          .footer-logo {
            font-size: 24px;
            justify-content: center;
          }

          .logo-icon {
            font-size: 28px;
          }

          .footer-tagline {
            font-size: 14px;
            margin: 0 0 15px;
          }

          .subscribe-btn {
            padding: 8px 16px;
            font-size: 13px;
          }

          .footer-socials {
            gap: 10px;
          }

          .social-icon {
            width: 36px;
            height: 36px;
          }

          .footer-heading {
            font-size: 12px;
            margin: 0 0 12px;
          }

          .footer-links a {
            font-size: 5px;
          }

          .footer-bottom-content {
            gap: 4px;
            font-size: 11px;
          }

          .footer-legal {
            gap: 6px;
            flex-wrap: nowrap;
          }

          .footer-legal a {
            font-size: 6px;
          }

          /* Adjust Customer Support links for smaller mobile screens */
          .footer-column:nth-child(3) .footer-links {
            grid-template-columns: 1fr 1fr;
          }
        }