@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

* {
  box-sizing: border-box;
}

:root {
  --bg: #0f1218;
  --panel: #1c2333;
  --card: rgba(28, 35, 51, 0.7);
  --text: #ffffff;
  --muted: #94a3b8;
  --primary: #28a780;
  --primary-hover: #1f8566;
  --accent: #28a780;
  /* Unified accent with primary for cleaner look */
  --border: rgba(255, 255, 255, 0.08);
  --success: #2ecc71;
  --warn: #f1c40f;
  --danger: #e74c3c;
  --shadow: 0 12px 30px rgba(0, 0, 0, .35);
  --shadow-hover: 0 16px 40px rgba(0, 0, 0, .45);
  --glow: 0 0 20px rgba(40, 167, 128, 0.25);
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 1) 0%, rgba(2, 6, 23, 1) 100%);
  background-color: #020617;
  /* Fallback to rich dark slate */
  background-attachment: fixed;
  color: var(--text);
}

/* Spacing scale */
:root {
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 24px;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 25, 0.7);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.site-header:hover {
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(20px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}

.site-header .container>*:not(h1):not(.desktop-nav):not(.hamburger-menu) {
  flex: 1;
  max-width: 500px;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  position: relative;
}

.hamburger-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 20px;
}

.hamburger-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hamburger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modern Search Bar Styles */
.search-container {
  position: relative;
  flex: 1;
  max-width: 500px;
}

.search-bar {
  display: flex;
  align-items: center;
  background: rgba(13, 19, 38, 0.6);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 16px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.search-bar:focus-within {
  border-color: var(--accent);
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.2),
    0 0 0 2px rgba(40, 167, 128, 0.3),
    0 0 15px rgba(40, 167, 128, 0.2);
  transform: scale(1.02);
}

.search-icon {
  color: var(--muted);
  margin-right: 10px;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 14px;
  padding: 8px 0;
  outline: none;
}

.search-input::placeholder {
  color: var(--muted);
}

.search-submit {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-submit:hover {
  background: rgba(40, 167, 128, 0.2);
  transform: translateX(2px);
}

/* Search Suggestions Dropdown */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(13, 19, 38, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 8px;
  padding: 10px 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
}

.search-suggestions.show {
  display: block;
}

.suggestion-item {
  padding: 10px 20px;
  color: var(--text);
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
  cursor: pointer;
}

.suggestion-item:hover {
  background: rgba(40, 167, 128, 0.2);
  color: var(--accent);
}

.suggestion-item+.suggestion-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Options Selector */
.options-selector {
  position: relative;
}

.options-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 19, 38, 0.6);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.options-toggle:hover {
  background: rgba(40, 167, 128, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.options-icon {
  color: var(--text);
}

/* Options Dropdown */
.options-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(13, 19, 38, 0.85);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-top: 8px;
  padding: 8px 0;
  backdrop-filter: blur(12px);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 1000;
  min-width: 200px;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.options-dropdown.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.option-item {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.option-item:hover {
  background: rgba(40, 167, 128, 0.15);
  color: var(--accent);
  transform: translateX(6px);
}

.option-item:focus {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.option-icon {
  color: var(--muted);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.option-item:hover .option-icon {
  color: var(--accent);
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
  pointer-events: none;
  outline: none;
  transform: scale(0.9);
  contain: layout style paint;
}

.modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.modal-content {
  background: rgba(13, 19, 38, 0.9);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  backdrop-filter: blur(12px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: scale(0.9);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  position: relative;
  z-index: 50;
  contain: layout style paint;
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-right: 10px;
  position: relative;
  z-index: 500;
  flex-shrink: 0;
  width: 100%;
}

.modal-title {
  margin: 0;
  font-size: 20px;
  color: var(--text);
  flex-grow: 1;
  text-align: left;
}

.close-modal {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.15s ease;

  font-weight: normal;
  position: relative;
  z-index: 1000;
  pointer-events: auto;
  flex-shrink: 0;
  line-height: 1;
  text-align: center;
  user-select: none;
  margin: 0;
  padding: 0;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  transform: scale(1.1);
}

.close-modal:active {
  transform: scale(0.95);
}

.close-modal:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  background: rgba(40, 167, 128, 0.2);
}

.modal-body {
  color: var(--text);
}

/* Language Modal */
.language-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.language-option-btn {
  background: rgba(13, 19, 38, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.language-option-btn:hover,
.language-option-btn.active {
  background: rgba(40, 167, 128, 0.2);
  border-color: var(--accent);
  color: var(--accent);
}

/* Settings Modal */
.settings-group {
  margin-bottom: 20px;
}

#settings-modal .close-modal {
  z-index: 1000;
  position: relative;
  cursor: pointer;
  display: block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-left: auto;
}

.settings-group h3 {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: var(--text);
}

.toggle-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-switch:last-child {
  border-bottom: none;
}

.switch-label {
  color: var(--text);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--muted);
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: var(--accent);
}

input:checked+.slider:before {
  transform: translateX(26px);
}

/* Help Modal */
.help-search {
  margin-bottom: 20px;
}

.help-search input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(13, 19, 38, 0.6);
  color: var(--text);
  font-size: 14px;
}

.help-search input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(40, 167, 128, 0.3);
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  display: none;
}

.faq-answer.show {
  display: block;
}

.contact-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

/* About Modal */
.about-content {
  text-align: center;
}

.about-logo {
  font-size: 48px;
  margin-bottom: 16px;
}

.about-description {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.star {
  color: #FFD700;
  font-size: 24px;
}

/* Account Submenu */
.account-submenu {
  position: absolute;
  top: 0;
  right: 100%;
  background: rgba(13, 19, 38, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  min-width: 180px;
  display: none;
  opacity: 0;
  transform: translateX(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.account-submenu.show {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.account-submenu .option-item {
  padding: 10px 20px;
}

/* Desktop: Center navigation links */
@media (min-width: 769px) {
  .site-header .container {
    justify-content: space-between;
    gap: 20px;
  }
}

.site-header h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: .5px;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}

.logo-khelo {
  color: var(--text);
}

.logo-store {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Top Container Styles */
.top-container {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  margin-bottom: 20px;
}

/* Top Container Styles */
.top-container {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  margin-bottom: 20px;
}

.top-container .container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.coins-section {
  display: flex;
  gap: 15px;
  position: relative;
  padding-bottom: 5px;
}

.coins-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.coins-section:hover::after {
  transform: scaleX(1);
}

.coin-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 600;
}

.coin-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coin-logo:hover {
  transform: translateY(-3px);
  color: var(--primary);
}

.coin-logo:hover::before {
  opacity: 1;
}

.coin-icon {
  font-size: 18px;
}

.coin-label {
  font-size: 14px;
  color: var(--muted);
}

.account-section {
  flex: 1;
  max-width: 150px;
  display: flex;
  gap: 15px;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 600;
  color: var(--muted);
}

.nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-item:hover {
  transform: translateY(-3px);
  color: var(--primary);
}

.nav-item:hover::before {
  opacity: 1;
}

.nav-label {
  font-size: 14px;
}

/* Modern Category/Tab Bar Styles */
.category-tabs-container {
  background: rgba(18, 24, 43, 0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  margin: 20px 0;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.category-tabs-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(40, 167, 128, 0.1), rgba(40, 167, 128, 0.1));
  border-radius: 16px;
  z-index: -1;
  opacity: 0.3;
}

.category-tabs {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex: 1;
  text-align: center;
  background: rgba(13, 19, 38, 0.4);
  margin: 0 4px;
}

.tab-item:first-child {
  margin-left: 0;
}

.tab-item:last-child {
  margin-right: 0;
}

.tab-item.active {
  background: rgba(40, 167, 128, 0.15);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(40, 167, 128, 0.3),
    0 0 20px rgba(40, 167, 128, 0.2);
  transform: translateY(-2px);
}

.tab-item:hover {
  background: rgba(40, 167, 128, 0.15);
  transform: translateY(-6px);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(40, 167, 128, 0.2);
}

.tab-item:hover:not(.active) {
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(40, 167, 128, 0.2);
}

.tab-icon-container {
  position: relative;
  margin-bottom: 8px;
}

.tab-icon {
  width: 24px;
  height: 24px;
  color: var(--muted);
  transition: all 0.3s ease;
}

.tab-item.active .tab-icon {
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(40, 167, 128, 0.5));
}

.tab-item:hover .tab-icon {
  color: var(--primary);
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(40, 167, 128, 0.5));
}

.tab-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #ff4757, #ff6b81);
  color: white;
  font-size: 10px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.tab-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.3s ease;
}

.tab-item.active .tab-label {
  color: var(--text);
  font-weight: 600;
}

.tab-item:hover .tab-label {
  color: var(--text);
}

.tab-indicator {
  position: absolute;
  bottom: 16px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

/* Responsive styles for category tabs */
@media (max-width: 768px) {
  .category-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-item {
    min-width: 80px;
    flex: 0 0 auto;
    padding: 10px 12px;
  }

  .tab-label {
    font-size: 11px;
  }

  .tab-icon {
    width: 20px;
    height: 20px;
  }

  .tab-badge {
    width: 16px;
    height: 16px;
    font-size: 8px;
    top: -4px;
    right: -4px;
  }
}

@media (max-width: 480px) {
  .category-tabs-container {
    padding: 12px;
  }

  .tab-item {
    min-width: 70px;
    padding: 8px 10px;
  }

  .tab-label {
    font-size: 10px;
  }

  .tab-icon {
    width: 18px;
    height: 18px;
  }

  /* Mobile styles for purchase panel */
  .purchase-panel {
    padding: 12px;
  }

  .quantity-selector {
    gap: 12px;
  }

  .qty-btn {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .qty-display {
    font-size: 20px;
    min-width: 36px;
  }

  .buy-now-btn {
    padding: 12px;
    font-size: 14px;
  }
}


/* Responsive styles for top container */
@media (max-width: 768px) {
  .top-container .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .coins-section {
    width: auto;
    justify-content: flex-start;
  }

  .account-section {
    max-width: 100%;
    width: auto;
    flex: 1;
    justify-content: center;
  }

  .nav-item {
    padding: 6px 10px;
  }
}

/* Responsive styles for new header */
@media (max-width: 992px) {
  .search-container {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
    gap: 10px;
  }

  .search-container {
    order: 3;
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
  }
}

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

  .search-bar {
    padding: 6px 12px;
  }

  .search-input {
    font-size: 13px;
  }
}

.logo-link {
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;

  font-weight: 700;
  font-size: 28px;
}

.logo-khelo {
  color: var(--accent);
}

.logo-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: width 0.3s ease;
  border-radius: 1px;
}

.logo-link:hover {
  transform: translateY(-1px);
}

.logo-link:hover::after {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.site-nav a svg {
  transition: all .3s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s ease, transform .3s ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.site-nav a:hover svg {
  color: var(--accent);
  transform: scale(1.1);
}

.site-nav a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.view {
  display: none;
  padding: 28px 0 60px;
}

.view.active {
  display: block;
}

.section-title {
  margin: 16px 0 16px;
  font-size: 22px;
  letter-spacing: .3px;
  position: relative;
  color: var(--text);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 1px;
}

/* Hero */
/* Hero */
.hero {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 20px;
  margin: 16px 0 20px;
  background: linear-gradient(180deg, #12182b, #0d1326);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 19, 38, 0.95), rgba(13, 19, 38, 0.8));
  pointer-events: none;
  z-index: 1;
}

.sub-slide {
  flex: 0 0 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid rgba(40, 167, 128, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 20px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-slide.active {
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 20px;
}

.hero-title {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #ffffff, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-sub {
  margin: 0 0 20px;
  color: #bdc3c7;
  font-size: 15px;
  line-height: 1.5;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-actions .btn {
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  background: #3b82f6;
  /* Exact Brand Match */
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
}

.hero-actions .btn:hover {
  background: #2563eb;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
}

/* Games */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 1100px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 
   Removed conflicting 700px and 480px media queries from here.
   They are handled in the "Games grid improvements" section below (lines 4466+)
   to ensure consistent behavior.
*/

.game-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  /* Ensure it behaves as a solid block in grid */
  height: 100%;
  /* Fill the grid cell */
}

.game-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  height: 100%;
  /* Ensure card fills the link wrapper */
  display: flex;
  flex-direction: column;
  /* Organize content */
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.game-card:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  /* Glow effect removed for static feel */
}

.game-thumb {
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.game-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-thumb::before {
  opacity: 1;
}

@media (max-width: 700px) {
  .hero {
    padding: var(--space-4);
  }

  .game-thumb {
    height: 120px;
  }
}

.game-info {
  padding: 14px 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.game-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: #1b2444;
  border: 1px solid var(--border);
}

.game-title {
  margin: 0 0 4px;
  font-size: 18px;
}

.game-desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  grid-column: 2 / -1;
}

/* Products */
/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 40px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 0 30px 20px;
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 10px;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
    /* Preserve specific mobile padding */
  }
}

/* No Results Message */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.no-results .empty-cart-icon {
  font-size: 64px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.no-results h4 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 24px;
}

.no-results p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
}

.product-card {
  background: linear-gradient(145deg, rgba(28, 35, 51, 0.9) 0%, rgba(15, 18, 24, 0.95) 100%);
  border: 1px solid rgba(40, 167, 128, 0.3);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(40, 167, 128, 0.2);
}

.product-card:hover::before {
  opacity: 1;
}

.product-title {
  margin: 0 0 6px;
  font-size: 16px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}

.price {
  font-weight: 700;
  color: white;
}

.badge {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: rgba(21, 27, 51, 0.7);
  color: var(--muted);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}


/* Old Login styles removed, replaced by modern version at line 3721 */


.badge::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(40, 167, 128, 0.3), rgba(40, 167, 128, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.badge:hover::before {
  opacity: 1;
}

.badge.success {
  color: #b8ffd2;
  background: rgba(19, 38, 27, 0.7);
  box-shadow: 0 0 8px rgba(35, 95, 58, 0.5);
}

.badge.warn {
  color: #fff2b0;
  background: rgba(42, 37, 15, 0.7);
  box-shadow: 0 0 8px rgba(87, 76, 26, 0.5);
}

/* Product Features (Home Page) */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #cbd5e1;
  /* Light slate text */
  line-height: 1.4;
}

.feature i {
  width: 16px;
  text-align: center;
}

.product-subtitle {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.badge.danger {
  color: #ffd0d0;
  background: rgba(42, 19, 19, 0.7);
  box-shadow: 0 0 8px rgba(90, 36, 36, 0.5);
}

.product-actions {
  display: flex;
  gap: 10px;
}

/* Product Image Styles */
.product-image {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, #1a2a5a, #0d1326);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px rgba(40, 167, 128, 0.3);
}

.product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(40, 167, 128, 0.2) 0%, transparent 70%);
  border-radius: 10px;
}

.product-image::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

/* Product image with actual image */
.product-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.product-icon {
  font-size: 60px;
  z-index: 1;
  text-shadow: 0 0 30px rgba(40, 167, 128, 0.7);
  animation: pulse 2s infinite;
  filter: drop-shadow(0 0 15px rgba(40, 167, 128, 0.5));
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes shine {
  0% {
    transform: rotate(30deg) translateX(-100%);
  }

  100% {
    transform: rotate(30deg) translateX(100%);
  }
}

.add-to-cart-btn {
  background: linear-gradient(180deg, var(--accent), #15b8ae);
  color: var(--bg);
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.add-to-cart-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #15b8ae, var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.add-to-cart-btn:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(21, 184, 174, 0.4);
}

.add-to-cart-btn:hover::before {
  opacity: 1;
}

/* Buttons */
.btn {
  background: linear-gradient(180deg, var(--primary), #4b6bff);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
}

/* Purchase Panel Styles */
.purchase-panel {
  background: rgba(18, 24, 43, 0.8);
  border-radius: 14px;
  padding: 16px;
  box-shadow:
    inset 0 0 20px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 12px;
}

.price-row-main,
.delivery-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.price-label,
.delivery-label {
  font-size: 14px;
  color: var(--muted);
}

.price-value,
.delivery-value {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.delivery-value {
  font-size: 14px;
  font-weight: 500;
}

.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(40, 167, 128, 0.15);
  border: 1px solid rgba(40, 167, 128, 0.3);
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: rgba(40, 167, 128, 0.25);
  transform: translateY(-2px);
}

.qty-btn:active {
  transform: translateY(1px);
}

.qty-display {
  font-size: 24px;
  font-weight: 700;
  min-width: 40px;
  text-align: center;
  color: white;
}

.qty-info {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.total-section {
  display: flex;
  justify-content: flex-end;
  margin: 16px 0;
}

.total-label {
  font-size: 16px;
  color: var(--muted);
  margin-right: 8px;
}

.total-value {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.buy-now-btn {
  width: 100%;
  background: linear-gradient(135deg, #FFA500, #FF8C00);
  color: #0b0f19;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
  margin: 16px 0;
}

.buy-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.buy-now-btn:active {
  transform: translateY(1px);
}

.trust-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.trust-icon {
  color: var(--accent);
  flex-shrink: 0;
}

/* Animation for total updates */
@keyframes totalUpdate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(0);
  }
}

.total-updating {
  animation: totalUpdate 0.3s ease;
}


/* Old Toast and Button styles removed */


/* Custom section for Coin Pack 1M */
.custom-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0;
}

.price-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.option-label {
  color: var(--muted);
  font-size: 16px;
}

.option-price {
  color: white;
  font-size: 18px;
  font-weight: 700;
}

/* Back button */
.back-button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  margin-bottom: 15px;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
}

.custom-section .buy-now-btn {
  margin: 0;
}

.in-stock-badge {
  background: #2ecc71;
  color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  vertical-align: middle;
}

.tr-select {
  background: rgba(13, 19, 38, 0.8);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  padding: 2px 6px;
  margin-left: 8px;
  font-size: 12px;
  cursor: pointer;
}

.tr-select:focus {
  outline: none;
  border-color: var(--accent);
}

.btn:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(40, 167, 128, 0.4);
}

.btn:hover::before {
  opacity: 1;
}

.btn.secondary {
  background: linear-gradient(180deg, #2a2f45, #1c2238);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn.secondary::before {
  background: linear-gradient(180deg, #1c2238, #2a2f45);
}

/* Free Fire Welcome Page */
.freefire-welcome-page {
  width: 100%;
  padding: 20px 0;
}

.freefire-welcome {
  color: white;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 30px 0;
  background: linear-gradient(135deg, #FF4500, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.freefire-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .freefire-products {
    grid-template-columns: 1fr;
  }
}

/* PUBG Custom Navbar */
.pubg-custom-navbar {
  width: 100%;
  margin-bottom: 30px;
}

.pubg-navbar {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
}

.nav-btn {
  background: rgba(18, 24, 43, 0.6);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.nav-btn:hover {
  background: rgba(40, 167, 128, 0.2);
  color: white;
  border-color: #28a780;
}

.nav-btn.active {
  background: linear-gradient(135deg, #FFA500, #FF8C00);
  color: #0b0f19;
  border: none;
  font-weight: 700;
}

/* PUBG Selling Page */
.pubg-selling-page {
  width: 100%;
  padding: 20px 0;
}

.pubg-selling-page {
  width: 100%;
  padding: 20px 0;
}

.pubg-welcome {
  color: white;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 30px 0;
  background: linear-gradient(135deg, #FFA500, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pubg-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .pubg-products {
    grid-template-columns: 1fr;
  }
}


/* Duplicated Purchase Panel, Toast, and Button styles removed */


/* PUBG Selection Interface */
.pubg-selection-interface {
  padding: 20px 0;
  width: 100%;
}

/* Top tab row */
.pubg-tabs {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: rgba(18, 24, 43, 0.6);
  border-radius: 12px;
  padding: 12px 20px;
  border: 1px solid var(--border);
}

.tab-icon {
  font-size: 24px;
  margin-right: 15px;
}

.tabs-container {
  display: flex;
  flex: 1;
  justify-content: center;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--muted);
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: white;
  font-weight: 600;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background: gold;
  border-radius: 3px;
}

.tab-btn:not(.active):hover {
  color: var(--text);
}

/* Heading */
.selection-heading {
  color: white;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  margin: 0 0 20px 0;
}

/* Options list */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.option-card {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: rgba(18, 24, 43, 0.6);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.option-card.selected {
  border: 2px solid gold;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
  animation: selectionPulse 0.2s ease;
}

@keyframes selectionPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

.option-card.selected::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: gold;
  color: #0b0f19;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.option-icon {
  width: 40px;
  height: 40px;
  background: url('images/PUBG.jpeg') no-repeat center center;
  background-size: cover;
  border-radius: 4px;
  margin-right: 16px;
}

.option-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.option-amount {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.option-unit {
  font-size: 14px;
  color: var(--muted);
}

.option-price {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

/* Buy button */
.buy-button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #FFA500, #FF8C00);
  color: #0b0f19;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.buy-button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.buy-button:active:not(:disabled) {
  transform: translateY(1px);
}

.buy-button:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
}

/* Loader for buy button */
.button-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(11, 15, 25, 0.3);
  border-top: 2px solid #0b0f19;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.buy-button.loading .button-loader {
  display: inline-block;
}

/* Toast notification */

/* Duplicated Toast removed */


/* Focus visible for accessibility */
.option-card:focus-visible {
  outline: 2px solid gold;
  outline-offset: 2px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .pubg-tabs {
    padding: 10px 15px;
  }

  .tab-btn {
    padding: 6px 12px;
    font-size: 14px;
  }

  .selection-heading {
    font-size: 20px;
  }

  .option-card {
    padding: 14px;
  }

  .option-amount {
    font-size: 18px;
  }

  .option-price {
    font-size: 18px;
  }

  .buy-button {
    padding: 14px;
    font-size: 16px;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.games-grid>* {
  animation: fadeUp .35s ease both;
}

.products-grid>* {
  animation: fadeUp .35s ease both;
}

/* Marquee */
.marquee {
  margin: 14px 0 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #0e1426;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  width: max-content;
  animation: scrollX 24s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee img {
  height: 70px;
  width: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .25);
}

@keyframes scrollX {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Modern 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(40, 167, 128, 0.1);

}

.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: 50px 0 40px;
  position: relative;
}



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



.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, #3b82f6, #06b6d4);
  /* Blue 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, #3b82f6, #06b6d4);
  /* Blue 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: 13px;
  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, var(--accent), #0d9488);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.footer-links a:hover {
  color: #fff;
  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: 25px 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: 13px;
  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-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }




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

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

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

@media (max-width: 768px) {


  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    /* Reduced from 40px */
  }



  .footer-main {
    padding: 30px 0 10px;
    /* Reduced bottom padding from 20px to 10px */
  }

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

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

  /* 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: 12px;
  }

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

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

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

  .footer-main {
    padding: 30px 0 20px;
  }

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

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

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

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

  .footer-socials {
    gap: 12px;
  }

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

  .footer-heading {
    font-size: 15px;
    margin: 0 0 10px;
    /* Reduced from 15px */
  }

  .footer-logo {
    margin: 0 0 10px;
  }

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

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

  .footer-bottom-content {
    gap: 15px;
    font-size: 12px;
  }

  .footer-legal {
    gap: 10px;
  }

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

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

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  font-weight: 500;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Specific color variations for different sections */
.footer-section:nth-child(1) a:hover {
  color: var(--primary);
}

.footer-section:nth-child(2) a:hover {
  color: var(--accent);
}

.footer-section:nth-child(3) a:hover {
  color: var(--success);
}

/* Search elements have been removed */

/* Social icon buttons */
.icons .icon-btn {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  background: #0e1426;
  margin-left: 8px;
  text-decoration: none;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}

.icons .icon-btn:hover {
  transform: translateY(-2px);
  color: var(--text);
  border-color: #2a3560;
  background: #111735;
}

/* Social Media Icons in Footer */
.social-icon {
  font-size: 24px;
  margin: 0 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.social-icon:hover {}

.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:hover {
  transform: scale(1.1);
}

/* Sub slider */
/* Sub slider */
.sub-slider {
  margin: 24px 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #0e1426;
  position: relative;
  box-shadow: var(--shadow);
}

.sub-slider-track {
  position: relative;
  height: 200px;
}

.sub-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.sub-slide.active {
  opacity: 1;
}

.sub-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Professional Gradient Overlay */
.sub-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 19, 38, 0.95) 0%, rgba(13, 19, 38, 0.5) 50%, transparent 100%);
  pointer-events: none;
}

.sub-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 24px 50px 24px;
  /* Increased bottom padding to clear dots */
  text-align: center;
  z-index: 2;
}

.cap-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.cap-sub {
  font-size: 14px;
  color: #a0aec0;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

.sub-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.sub-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}

.sub-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 700px) {
  .sub-slider-track {
    height: 160px;
  }

  .cap-title {
    font-size: 18px;
  }

  .sub-caption {
    padding: 16px;
    padding-bottom: 30px;
    /* Space for dots */
  }
}

/* Responsive Cart */
@media (max-width: 480px) {
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .cart-item {
    flex-direction: column;
    text-align: center;
  }

  .cart-item-actions {
    justify-content: center;
  }
}



.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  background: var(--panel);
  border-left: 1px solid var(--border);
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  color: var(--text);
}

.close-cart {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close-cart:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  background: var(--card);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  font-size: 24px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--text);
}

.cart-item-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

.cart-item-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-btn {
  background: var(--border);
  border: none;
  color: var(--text);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: var(--primary);
}

.quantity {
  color: var(--text);
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.remove-item {
  background: none;
  border: none;
  color: var(--danger);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.remove-item:hover {
  background: rgba(231, 76, 60, 0.1);
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  background: var(--panel);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}

.total-amount {
  color: var(--accent);
  font-size: 20px;
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Cart View Styles */
.cart-content {
  min-height: 400px;
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.empty-cart-icon {
  font-size: 64px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.empty-cart h4 {
  margin: 0 0 8px;
  color: var(--text);
}

.empty-cart p {
  margin: 0 0 20px;
}

.cart-summary {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
}


/* Duplicate Profile Styles removed (Use version at line 4680+) */


/* New Professional Login Page Styles */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.login-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.login-wrapper {
  width: 100%;
  max-width: 450px;
  z-index: 1;
  position: relative;
}

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.logo-section {
  margin-bottom: 20px;
}

.logo-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.logo-section h1 {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #fff, #a8b2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-header h2 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px;
}

.login-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin: 0;
}

.login-form {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.input-wrapper input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.input-wrapper input:focus {
  outline: none;
  border-color: #6366f1;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.password-toggle {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.3s ease;
  z-index: 1;
}

.password-toggle:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #6366f1;
}

.forgot-link {
  color: #6366f1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: #818cf8;
}

.login-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

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

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

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.login-btn:hover .btn-icon {
  transform: translateX(4px);
}

.divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.divider span {
  background: linear-gradient(135deg, #0f0f23, #1a1a2e);
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
}

.social-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.social-btn.google {
  background: white;
  color: #333;
  border-color: #e5e7eb;
}

.social-btn.google:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-btn.facebook {
  background: #1877f2;
  border-color: #1877f2;
}

.social-btn.facebook:hover {
  background: #166fe5;
  border-color: #166fe5;
}

.social-btn.discord {
  background: #5865f2;
  border-color: #5865f2;
}

.social-btn.discord:hover {
  background: #4752c4;
  border-color: #4752c4;
}

.social-btn svg {
  flex-shrink: 0;
}

.signup-section {
  text-align: center;
}

.signup-section p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 14px;
}

.signup-section a {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.signup-section a:hover {
  color: #818cf8;
}

@media (max-width: 600px) {
  .login-card {
    padding: 30px 20px;
    margin: 20px;
  }

  .logo-section h1 {
    font-size: 24px;
  }

  .login-header h2 {
    font-size: 20px;
  }

  .input-wrapper input {
    padding: 14px 14px 14px 44px;
    font-size: 14px;
  }

  .login-btn {
    padding: 14px;
    font-size: 14px;
  }
}

/* Profile Icon Styles */
.profile-icon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-icon svg {
  color: var(--muted);
  transition: color 0.3s ease;
}

.profile-icon:hover svg {
  color: var(--accent);
}

.profile-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--success);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.limit-badge {
  background: rgba(255, 215, 0, 0.2);
  color: gold;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 8px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.option-card.unavailable {
  opacity: 0.6;
  cursor: not-allowed;
}

.option-card.unavailable .option-price {
  color: var(--muted);
}

@media (max-width: 600px) {
  .profile-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .profile-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Add mobile responsive improvements */

/* Mobile menu for small screens */
@media (max-width: 768px) {
  .site-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background: var(--panel);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1001;
    border-right: 1px solid var(--border);
  }

  .site-nav.active {
    left: 0;
  }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
  }

  .close-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
  }
}

@media (min-width: 769px) {

  .nav-toggle,
  .close-nav {
    display: none;
  }
}

/* Hero section improvements */
@media (max-width: 768px) {
  .hero {
    padding: 20px;
    min-height: 180px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-sub {
    font-size: 14px;
  }
}

/* Games grid improvements */
@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 10px 5px;
  }

  .game-card {
    max-width: 100%;
    background: linear-gradient(160deg, #1a2236 0%, #0d1220 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
  }

  .game-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 40%, rgba(255, 255, 255, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .game-card:active,
  .game-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.08);
    /* Reset to default border */
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    /* Maintain default shadow */
  }

  .game-thumb {
    height: 150px;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  }

  .game-info {
    padding: 15px 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .game-icon {
    width: 45px;
    height: 45px;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .game-title {
    font-size: 1.25rem;
    margin-bottom: 4px;
    background: linear-gradient(to right, #fff, #cecece);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
  }

  .game-desc {
    font-size: 0.9rem;
    color: #94a3b8;
  }
}

/* Products grid improvements */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: 100%;
  }
}

/* Search row improvements have been removed */

/* Footer improvements */
@media (max-width: 768px) {


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

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

  .footer-brand {
    text-align: center;
  }

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

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

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

/* Login page improvements */
@media (max-width: 480px) {
  .login-page {
    min-height: auto;
    padding: 10px;
  }

  .login-card {
    padding: 25px 15px;
  }

  .logo-section h1 {
    font-size: 22px;
  }

  .login-header h2 {
    font-size: 18px;
  }

  .login-header p {
    font-size: 14px;
  }

  .input-wrapper input {
    padding: 12px 12px 12px 40px;
    font-size: 14px;
  }

  .login-btn {
    padding: 12px;
    font-size: 14px;
  }

  .social-btn {
    padding: 12px;
    font-size: 13px;
  }
}

/* Profile page improvements */
@media (max-width: 480px) {
  .profile-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .profile-info h4 {
    font-size: 20px;
  }

  .profile-info p {
    font-size: 14px;
  }

  .profile-actions {
    flex-direction: column;
    gap: 10px;
  }

  .profile-actions .btn {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }
}

/* Cart sidebar improvements */
@media (max-width: 480px) {
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .cart-sidebar.open {
    right: 0;
  }

  .cart-header {
    padding: 15px;
  }

  .cart-items {
    padding: 15px;
  }

  .cart-footer {
    padding: 15px;
  }

  .cart-total {
    font-size: 16px;
  }

  .total-amount {
    font-size: 18px;
  }

  .checkout-btn {
    padding: 12px;
    font-size: 14px;
  }
}

/* General mobile improvements */
@media (max-width: 480px) {
  .container {
    width: min(1200px, 96%);
  }

  .site-header .container {
    padding: 12px 0;
  }

  .section-title {
    font-size: 20px;
    margin: 14px 0;
  }

  .btn {
    padding: 10px 12px;
    font-size: 14px;
  }

  .back-btn {
    padding: 8px 10px;
    font-size: 14px;
  }

  body {
    font-size: 14px;
  }
}


/* Old Desktop Nav removed (Use version at line 5910+) */


/* Mobile Navigation Footer */
.mobile-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 8px 0;
  z-index: 1000;
  justify-content: space-around;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mobile-nav-item svg {
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  color: var(--text);
}

.mobile-nav-item:hover svg,
.mobile-nav-item.active svg {
  color: var(--accent);
  transform: scale(1.1);
}

/* Ensure content is not hidden behind footer */
.view {
  padding-bottom: 70px;
  /* Add space for footer */
}

/* Mobile footer improvements */
@media (max-width: 768px) {
  .mobile-footer {
    display: flex;
  }

  .view {
    padding-bottom: 70px;
    /* Add space for mobile footer */
  }
}

@media (max-width: 480px) {
  .mobile-nav-item {
    font-size: 11px;
  }

  .mobile-nav-item svg {
    width: 18px;
    height: 18px;
  }
}

/* User Profile Styles */
.profile-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.profile-info h4 {
  margin: 0 0 8px 0;
  font-size: 24px;
  color: white;
}

.profile-info p {
  margin: 0 0 16px 0;
  color: rgba(255, 255, 255, 0.7);
}

.profile-stats {
  display: flex;
  gap: 20px;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-section {
  margin-bottom: 30px;
}

.profile-section h3 {
  margin: 0 0 20px 0;
  font-size: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.profile-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 1px;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.order-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.order-details h4 {
  margin: 0 0 5px 0;
  color: white;
  font-size: 16px;
}

.order-date {
  margin: 0 0 8px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.order-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.order-status.processing {
  background: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}

.order-status.delivered {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

.order-amount {
  font-weight: 600;
  color: white;
  font-size: 18px;
}

.view-all-link {
  display: block;
  text-align: center;
  color: var(--accent);
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 10px;
  border: 1px solid rgba(40, 167, 128, 0.2);
}

.view-all-link:hover {
  background: rgba(40, 167, 128, 0.1);
}

.settings-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.setting-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.setting-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.setting-item svg {
  color: var(--accent);
}

.logout-btn {
  width: 100%;
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.logout-btn:hover {
  background: rgba(231, 76, 60, 0.3);
}

/* Mobile Profile Improvements */
@media (max-width: 768px) {
  .profile-container {
    padding: 15px;
  }

  .profile-header {
    flex-direction: column;
    text-align: center;
  }

  .profile-stats {
    justify-content: center;
  }

  .order-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .order-amount {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .profile-header {
    padding: 15px;
  }

  .avatar-placeholder {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .profile-info h4 {
    font-size: 20px;
  }

  .profile-stats {
    gap: 10px;
  }

  .stat-value {
    font-size: 16px;
  }

  .setting-item {
    padding: 12px;
  }
}

/* Add styles for desktop icons */
.desktop-icons {
  display: none;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  /* Push icons to the right */
}

.icon-btn {
  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: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(40, 167, 128, 0.1);
  color: var(--accent);
  box-shadow: 0 6px 20px rgba(40, 167, 128, 0.2);
}

.game-card {
  background: linear-gradient(145deg, rgba(28, 35, 51, 0.9) 0%, rgba(15, 18, 24, 0.95) 100%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(40, 167, 128, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: none;
  /* Removed bounce effect */
  border-color: #28a780;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(40, 167, 128, 0.2);
}

/* Show desktop icons on larger screens */
@media (min-width: 769px) {
  .desktop-icons {
    display: flex;
  }
}

/* Profile footer styles */


.profile-footer .footer-content {
  justify-content: center;
  text-align: center;
}

.profile-footer .footer-brand {
  max-width: 100%;
  text-align: center;
}

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

/* About Us Section Styles */
.bio-card {
  background: linear-gradient(145deg, rgba(28, 35, 51, 0.9) 0%, rgba(15, 18, 24, 0.95) 100%);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(40, 167, 128, 0.3);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.bio-card:hover {
  transform: translateY(-5px);
  border-color: #28a780;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(40, 167, 128, 0.2);
}

.bio-card h4 {
  color: var(--accent);
  margin: 0 0 10px 0;
  font-size: 24px;
}

.bio-title {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin: 0 0 20px 0;
  font-size: 18px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: linear-gradient(145deg, rgba(28, 35, 51, 0.9) 0%, rgba(15, 18, 24, 0.95) 100%);
  border-radius: 12px;
  border: 1px solid rgba(40, 167, 128, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-item:hover {
  transform: translateY(-3px);
  border-color: #28a780;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(40, 167, 128, 0.2);
}

.info-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.info-label {
  font-weight: 600;
  margin: 0 0 5px 0;
  color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.stat-card {
  background: linear-gradient(145deg, rgba(28, 35, 51, 0.9) 0%, rgba(15, 18, 24, 0.95) 100%);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(40, 167, 128, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: #28a780;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(40, 167, 128, 0.2);
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 8px 0;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 500;
}

.achievements {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.achievement-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(28, 35, 51, 0.9) 0%, rgba(15, 18, 24, 0.95) 100%);
  border-radius: 12px;
  border: 1px solid rgba(40, 167, 128, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.achievement-item:hover {
  transform: translateY(-3px);
  border-color: #28a780;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(40, 167, 128, 0.2);
}

.achievement-icon {
  font-size: 32px;
  flex-shrink: 0;
  align-self: flex-start;
}

.achievement-title {
  font-weight: 600;
  margin: 0 0 10px 0;
  color: white;
  font-size: 18px;
}

.achievement-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.team-member {
  background: linear-gradient(145deg, rgba(28, 35, 51, 0.9) 0%, rgba(15, 18, 24, 0.95) 100%);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(40, 167, 128, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-member:hover {
  transform: translateY(-5px);
  border-color: #28a780;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(40, 167, 128, 0.2);
}

.team-member h4 {
  margin: 0 0 10px 0;
  color: var(--accent);
  font-size: 20px;
}

.team-role {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 10px 0;
  font-size: 16px;
}

.contact-btn {
  display: inline-block;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.social-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(145deg, rgba(28, 35, 51, 0.9) 0%, rgba(15, 18, 24, 0.95) 100%);
  border-radius: 8px;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(40, 167, 128, 0.3);
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 150px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  background: linear-gradient(135deg, rgba(40, 167, 128, 0.2), rgba(40, 167, 128, 0.3));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(40, 167, 128, 0.2);
}

/* Mobile styles for About Us */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    flex-direction: column;
  }

  .bio-card {
    padding: 20px;
  }

  .bio-card h4 {
    font-size: 20px;
  }

  .achievement-item {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

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

  .stat-card {
    padding: 15px;
  }

  .stat-value {
    font-size: 24px;
  }

  .team-member {
    padding: 20px;
  }

  .social-link {
    min-width: auto;
    width: 100%;
  }

  .profile-section h3 {
    font-size: 18px;
  }

  .achievement-title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .profile-header {
    padding: 15px;
  }

  .avatar-placeholder {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .profile-info h4 {
    font-size: 20px;
  }

  .profile-stats {
    gap: 10px;
  }

  .stat-value {
    font-size: 20px;
  }

  .achievement-icon {
    font-size: 24px;
  }

  .team-member {
    padding: 15px;
  }

  .social-link {
    padding: 10px 15px;
  }
}

/* PUBG Welcome Message */
.pubg-welcome-message {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(28, 35, 51, 0.9) 0%, rgba(15, 18, 24, 0.95) 100%);
  border: 1px solid rgba(40, 167, 128, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  transform: scale(1);
}

.pubg-welcome-message:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: #28a780;
}

.pubg-welcome-message h2 {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #FFA500, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* PUBG Products Title Styling - Removed marquee as per user request */
#products-title[data-pubg='true'] {
  display: none;
}

/* Removed slideInLeft animation as per user request */

/* PUBG Product List Styles */
.pubg-product-list {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(18, 24, 43, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.pubg-product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pubg-product-item:last-child {
  border-bottom: none;
}

.pubg-product-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.pubg-product-item.active {
  background: rgba(40, 167, 128, 0.2);
  border-left: 3px solid #28a780;
}


/* Redundant game listing styles removed */


/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1000;
  transition: transform 0.3s ease;
  overflow-y: auto;
  transform: translateX(-100%);
}

.mobile-menu.open {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background-color: white;
}

.menu-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.close-menu {
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.menu-content {
  padding: 20px;
}

.menu-section {
  margin-bottom: 30px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.menu-item:last-child {
  border-bottom: none;
}

.item-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.item-icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.item-text {
  font-size: 16px;
  color: #333;
}

.item-right {
  font-size: 16px;
  color: #666;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}


@media (min-width: 769px) {
  .mobile-menu {
    width: 300px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }
}

.element.style {
  text-decoration: none;
}

/* Desktop Footer Repositioning */
@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* Hide the empty first column (Brand) */

}

/* Sidebar Menu Styles - Premium Design */
.sidebar-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 15px 0 40px rgba(0, 0, 0, 0.6);
  z-index: 1001;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-menu.active {
  left: 0;
}

.sidebar-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
}

.sidebar-header h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.close-sidebar {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.close-sidebar:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.sidebar-nav {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  color: #a0aec0;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

.sidebar-link i {
  width: 24px;
  text-align: center;
  font-size: 18px;
  color: var(--accent);
  transition: all 0.3s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding-left: 20px;
}

.sidebar-link:hover i,
.sidebar-link.active i {
  color: var(--accent);
}

.sidebar-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 3px;
  background: var(--accent);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 10px var(--accent);
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Reset Hamburger Button */
/* Hamburger reset removed */

/* New Sidebar Section Styles */
.sidebar-content {
  padding: 20px 16px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-section {
  margin-bottom: 12px;
}

.section-title {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin: 15px 0 10px 12px;
  padding: 2px 0 2px 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-left: 3px solid var(--accent);
  opacity: 0.9;
}

.sidebar-link {
  font-size: 14px;
  /* Slight adjustment */
}

/* Service Highlights */
.service-highlights {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

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

.highlight-text {
  font-size: 13px;
  font-weight: 500;
  color: #e6e9f0;
}

@media (max-width: 600px) {
  .highlight-item {
    padding: 6px 12px;
    border-radius: 16px;
    gap: 6px;
  }

  .highlight-icon {
    font-size: 14px;
  }

  .highlight-text {
    font-size: 11px;
  }
}

/* Premium Text Shimmer Effect */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.text-shimmer {
  background: linear-gradient(90deg,
      #ffffff 0%,
      #a5f3fc 20%,
      #ffffff 40%,
      #ffffff 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  display: inline-block;
  font-weight: 800;
}

/* Scroll Reveal Animations */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll {
  opacity: 0;
  animation: revealUp 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
}

/* Dual-Tone Logo Text */


.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

/* FINAL LOGO COLOR OVERRIDE */
.site-header .logo-store,
span.logo-store {
  color: #3b82f6 !important;
  background: none !important;
  -webkit-text-fill-color: #3b82f6 !important;
}

/* Mobile Fix for Slider Dots Overlap */
@media (max-width: 600px) {
  .sub-caption {
    padding-bottom: 60px !important;
    /* Force more space on mobile */
  }

  .sub-dots {
    bottom: 12px !important;
    /* Move dots slightly up/down if needed */
  }
}

/* =========================================
   Desktop Navigation Styles (Added for user convenience)
   ========================================= */
.desktop-nav {
  display: none;
  /* Hidden by default on mobile */
}

@media (min-width: 992px) {
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .desktop-nav {
    display: flex !important;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2rem;
    background: rgba(13, 19, 38, 0.4);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
  }

  .desktop-nav .nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    /* Increased weight for visibility */
    font-size: 1rem;
    /* Slightly larger */
    padding: 0.4rem 0.2rem;
    /* Reduced horizontal padding since we aren't using pills */
    transition: all 0.3s ease;
    position: relative;
    /* Ensure no background interference */
    background: transparent !important;
    border-radius: 0;
  }

  /* Underline Effect */
  .desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transition: width 0.3s ease;
    border-radius: 1px;
  }

  .desktop-nav .nav-link:hover {
    color: #fff;
    transform: translateY(-1px);
    /* Remove old styles */
    background: transparent;
    box-shadow: none;
  }

  .desktop-nav .nav-link:hover::after {
    width: 100%;
  }

  /* Active State - Keep underline visible */
  .desktop-nav .nav-link.active {
    color: #3b82f6;
    /* KheloStore Blue */
    background: transparent;
    box-shadow: none;
  }

  .desktop-nav .nav-link.active::after {
    width: 100%;
    background: #3b82f6;
    /* Blue underline for active state */
  }

  /* Hamburger Menu visible on Desktop as requested */
  .hamburger-menu {
    display: block !important;
    margin-left: 1.5rem;
    /* Add spacing between nav and hamburger */
  }
}