/* ============================================
   ARAM MAYHEM PAGE - aram_mayhem.css
   ============================================ */

/* HERO */
.champs-hero {
  background: linear-gradient(135deg, #0d1526 0%, #111d35 100%);
  border: 1px solid #1e2d45;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 20px;
}

.champs-hero-inner {}

.champs-hero-title {
  font-size: 26px;
  font-weight: 900;
  color: #ccd6e0;
  font-family: 'Cinzel', serif;
  margin: 0 0 8px 0;
}

.hero-patch {
  color: #c89b3c;
  font-size: 18px;
}

.champs-hero-sub {
  font-size: 13px;
  color: #4a6080;
  margin: 0;
}

/* FILTER BAR */
.am-aug-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.am-aug-filter-btn {
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid #1e2d45;
  background: #0d1526;
  color: #8090a8;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.am-aug-filter-btn:hover {
  border-color: #4a6080;
  color: #ccd6e0;
}

.am-aug-filter-btn--active {
  background: #111d30;
  color: #ccd6e0;
  border-color: #4a9eff;
}

.am-aug-filter-btn--silver.am-aug-filter-btn--active {
  border-color: #8090a8;
  color: #c0c8d8;
}

.am-aug-filter-btn--gold.am-aug-filter-btn--active {
  border-color: #c89b3c;
  color: #c89b3c;
}

.am-aug-filter-btn--prismatic.am-aug-filter-btn--active {
  border-color: #a855f7;
  color: #a855f7;
}

/* SEARCH */
.am-aug-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0d1526;
  border: 1px solid #1e2d45;
  border-radius: 8px;
  padding: 8px 14px;
  margin-left: auto;
  min-width: 220px;
}

.am-aug-search-wrap input {
  background: none;
  border: none;
  outline: none;
  color: #ccd6e0;
  font-size: 13px;
  width: 100%;
}

.am-aug-search-wrap input::placeholder {
  color: #4a6080;
}

/* AUGMENT GRID */
.am-aug-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 12px;
}

/* AUGMENT CARD */
.am-aug-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
  transition: transform 0.15s;
}

.am-aug-card:hover {
  transform: translateY(-2px);
}

.am-aug-card-inner {
  position: relative;
  width: 72px;
  height: 72px;
}

.am-aug-card-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  background: #1e2d45;
  border: 2px solid #1e2d45;
  transition: border-color 0.15s;
}

.am-aug-card:hover .am-aug-card-img {
  border-color: #4a6080;
}

/* RARITY ROZET */
.am-aug-card-rarity {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  border: 2px solid #080f1c;
}

.am-aug-rarity--silver {
  background: #4a5568;
  color: #e2e8f0;
}

.am-aug-rarity--gold {
  background: #b7791f;
  color: #fefcbf;
}

.am-aug-rarity--prismatic {
  background: #6b21a8;
  color: #e9d5ff;
}

/* AUGMENT İSİM */
.am-aug-card-name {
  font-size: 11px;
  color: #8090a8;
  text-align: center;
  line-height: 1.3;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.am-aug-card:hover .am-aug-card-name {
  color: #ccd6e0;
}

/* RARITY'YE GÖRE BORDER RENGİ */
.am-aug-card[data-rarity="silver"]:hover .am-aug-card-img {
  border-color: #8090a8;
}

.am-aug-card[data-rarity="gold"]:hover .am-aug-card-img {
  border-color: #c89b3c;
}

.am-aug-card[data-rarity="prismatic"]:hover .am-aug-card-img {
  border-color: #a855f7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .am-aug-grid {
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 8px;
  }

  .am-aug-filter-bar {
    gap: 6px;
  }

  .am-aug-search-wrap {
    margin-left: 0;
    width: 100%;
  }

  .champs-hero {
    padding: 20px 16px;
  }

  .champs-hero-title {
    font-size: 20px;
  }
}