/* Global */
body {
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  background: url('https://raw.githubusercontent.com/RPNPanda/RPNPanda.github.io/refs/heads/main/images/Background.png') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1f1f1f;
}
::-webkit-scrollbar-thumb {
  background: #e11d48;
  border-radius: 10px;
}

a {
  text-decoration: none !important;
}
/* Top Nav Bar */
.tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px;
  background-color: #111;
  border-bottom: 1px solid #222;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(255, 0, 0, 0.2);
  white-space: nowrap;
  overflow: hidden;
}

.tab-left {
  font-size: 16px;
  color: #fff;
}

.tab-center, .tab-right {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: nowrap;
}

.logo i {
  color: #e11d48;
  margin-right: 6px;
}

/* Default tab button */
.tab-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: transparent;
  color: #e5e5e5;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s ease;
  border: none;
  white-space: nowrap;
}
.tab-button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* Special buttons */
.tab-button.primary {
  background: #e11d48;
  color: white;
  font-weight: bold;
}
.tab-button.primary:hover {
  background: #be123c;
}

.tab-button.dark {
  background: #1f1f1f;
  color: white;
  font-weight: bold;
  border: 1px solid #2d2d2d;
}
.tab-button.dark:hover {
  background: #2d2d2d;
}

/* Page Container */
.container {
  max-width: 1200px;
  margin: 140px auto 60px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Typography */
h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}
h2, h3 {
  color: #f1f1f1;
}
.subtitle {
  color: #e5e5e5;
  font-size: 18px;
  margin-bottom: 30px;
}
p {
  color: #d4d4d4;
  font-size: 15px;
}

/* Notice Box */
.notice {
  background: rgba(255, 0, 0, 0.1);
  color: #f87171;
  border: 1px solid #f87171;
  border-radius: 8px;
  padding: 15px 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 25px auto;
  font-size: 15px;
}

/* Loader Cards */
.loader-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* smaller gap to help fit 3 cards */
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.loader-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.25);
  flex: 1 1 calc(33.333% - 20px); /* 3 per row minus gap */
  min-width: 280px;
  max-width: 480px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.loader-card h2 {
  color: #fff;
}
.loader-card p {
  color: #d1d5db;
}

/* Features list */
.features {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
  color: #f87171;
}
.features li {
  margin: 5px 0;
  padding-left: 16px;
  position: relative;
}
.features li::before {
  content: "•";
  position: absolute;
  left: 0;
}

/* Buttons */
.button-85 {
  display: block;
  width: 100%;
  padding: 10px 0;
  border: 2px solid #be123c;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.2);
  color: #fff;
  background: #1a1a1a;
  text-decoration: none;
}
.button-85:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}
.button-85.coldwar {
  background: #e11d48;
}
.button-85.coldwar:hover {
  background: #be123c;
}
a.button-85 {
  text-decoration: none !important;
  color: #fff;
}

.button-85.blackops {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* space between icon and text */
}

.button-85.coldwar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* space between icon and text */
}

.button-85 .btn-icon {
  width: 20px;
  height: 20px;
  filter: brightness(1.2); /* optional: makes icon pop */
}

/* Scrollable content areas */
.scrollable-content {
  background: rgba(20, 20, 20, 0.6);
  border-radius: 10px;
  padding: 15px;
  box-shadow: inset 0 2px 5px rgba(255, 0, 0, 0.2);
}

/* Inputs */
input[type="text"], #searchBar {
  background-color: #1a1a1a;
  border: 2px solid #e11d48;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 15px;
  color: white;
  outline: none;
  width: 100%;
  max-width: 500px;
  transition: border 0.3s ease;
}
input[type="text"]::placeholder {
  color: #aaa;
}
input[type="text"]:focus {
  border-color: #f43f5e;
}

.loader-header {
  display: flex;
  align-items: center;
  gap: 10px; /* space between icon and title */
  margin-bottom: 10px;
}

.loader-header img {
  width: 40px;
  height: 40px;
}

/* Weapon List */
.weapon-list {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 3px 7px rgba(255, 0, 0, 0.2);
}
.weapon-list li {
  border-bottom: 1px solid #2d2d2d;
  color: #eee;
}
.weapon-list li:hover {
  background: rgba(255, 0, 0, 0.08);
}
.weapon-list li span {
  color: #f43f5e;
  font-weight: bold;
}
