/* === GLOBAL === */
body {
  background: #0a0f13;
  color: #d9d9d9;
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

header {
  text-align: center;
  margin: 40px 0 25px;
}

h1 {
  color: #00ffae;
  text-shadow: 0 0 10px #00ffae55;
  font-size: 2rem;
  margin-bottom: 8px;
}

header p {
  color: #a5a5a5;
  font-size: 0.95rem;
}

/* === FILTERS === */
.filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

input,
select {
  background: #111;
  color: #00ffae;
  border: 1px solid #00ffae55;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  transition: all 0.2s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: #00ffae;
  box-shadow: 0 0 8px #00ffae55;
}

/* === LAYOUT === */
main {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2vw 60px;
  box-sizing: border-box;
}

.passive-entry {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid #1b1b1b;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 0 15px rgba(0, 255, 174, 0.15);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.passive-entry:hover {
  box-shadow: 0 0 25px rgba(0, 255, 174, 0.3);
  transform: translateY(-2px);
}

/* === HEADER (w bloku pasywki) === */
.passive-entry .header {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.passive-entry .header img.icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px #00ffae88);
}

.passive-entry h2 {
  margin: 0;
  color: #00ffae;
  font-size: 1.3rem;
}

.passive-entry .tag {
  background: rgba(0, 255, 174, 0.08);
  border: 1px solid #00ffae55;
  color: #00ffae;
  font-size: 13px;
  padding: 3px 9px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 4px;
}

/* === DETAILS === */
details summary {
  margin-top: 12px;
  padding: 8px 14px;
  background: #0d1715;
  border: 1px solid #00ffae33;
  border-radius: 6px;
  cursor: pointer;
  color: #00ffae;
  user-select: none;
  transition: background 0.2s ease;
}

details summary:hover {
  background: #12201c;
}

/* === TABLES === */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 14px;
}

.table th,
.table td {
  border: 1px solid #222;
  padding: 6px 8px;
  text-align: center;
}

.table th {
  background: #0d1715;
  color: #00ffae;
}

.table tbody tr:hover {
  background: rgba(0, 255, 174, 0.05);
}

/* === ICONS === */
.icon-sm {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 5px;
}

/* === FOOTER === */
footer {
  text-align: center;
  margin: 50px 0 30px;
}

.btn {
  display: inline-block;
  background: linear-gradient(180deg, #007a47, #004c2e);
  color: #00ffae;
  border: 1px solid #00ffae55;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn:hover {
  background: linear-gradient(180deg, #00b06b, #007a47);
  box-shadow: 0 0 15px #00ffae;
}

/* === SPECIAL SECTION === */
section.passive-entry:first-of-type {
  width: 100%;
  margin: 0 auto;
}
