
.pubg-custom-navbar {
  width: 100%;
  margin-bottom: 30px;
}

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

.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;
}

.pubg-products {
    grid-template-columns: 1fr;
  }

.pubg-selection-interface {
  padding: 20px 0;
  width: 100%;
}

.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);
}

.pubg-tabs {
    padding: 10px 15px;
  }

.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;
}

#products-title[data-pubg='true'] {
  display: none;
}

.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;
}