/* ===== RC SPECIAL H4 TITLE ===== */

.rc-title {
  font-family: var(--genelfont);
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  margin: 30px 0;
  position: relative;

  background: linear-gradient(90deg, #6c4cff, #b84dff, #00ffd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 8px rgba(108, 76, 255, 0.4),
    0 0 16px rgba(184, 77, 255, 0.3);
}

/* Alt çizgi animasyonu */

.rc-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 12px auto 0;

  background: linear-gradient(90deg, #6c4cff, #00ffd5);
  border-radius: 3px;

  animation: rcLineGlow 2s ease-in-out infinite alternate;
}

@keyframes rcLineGlow {
  from {
    box-shadow: 0 0 5px #6c4cff;
  }
  to {
    box-shadow: 0 0 18px #00ffd5;
  }
}

/* Mobil uyum */

@media (max-width: 768px) {
  .rc-title {
    font-size: 20px;
  }
}


/* =======================
   MINER LIST
======================= */

.rc-card-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}

.rc-badge {
  background:#00ff99;
  color:#000;
  padding:4px 10px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
}

.rc-miner-list {
  display:flex;
  flex-direction:column;
  gap:10px;
  max-height:400px;
  overflow-y:auto;
}

.rc-miner-item {
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,0.05);
  padding:10px 15px;
  border-radius:10px;
  transition:0.2s;
}

.rc-miner-item:hover {
  background:rgba(0,255,153,0.08);
}

.rc-miner-left {
  display:flex;
  align-items:center;
  gap:12px;
}

.rc-miner-img {
  width:48px;
  height:48px;
  object-fit:contain;
}

.rc-miner-name {
	text-align:center;
  font-weight:600;
}

.rc-miner-right {
  font-weight:700;
  font-size:14px;
  color:#00ff99;
}

/*MİNER YÜKLENME ŞABLONU*/

.load-more-wrapper {
    text-align: center;
    margin: 40px 0;
}

.load-more-btn {
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(147, 51, 234, 0.6);
}

.load-info {
    margin-top: 12px;
    font-size: 14px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .load-more-btn {
        width: 100%;
        padding: 12px;
    }
}

/*SEÇİLEN MİNER ŞABLONU*/

.modern-gpu-wrapper {
    margin-top: 40px;
	font-family: var(--minerlistem) !important;
}

.modern-gpu-header {
    text-align: center;
    margin-bottom: 20px;
}

.modern-gpu-header h4 {
    color: #ffd700;
    font-weight: 700;
    letter-spacing: 1px;
}

.modern-gpu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.modern-gpu-card {
    background: #1e1e2f;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.modern-gpu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(79,70,229,0.4);
}

.gpu-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.gpu-image img {
    width: 70px;
}

.gpu-name {
    font-weight: 600;
    font-size: 16px;
}

.gpu-level {
    font-size: 13px;
    opacity: 0.7;
}

.gpu-stats .stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.bonus {
    color: #00ffcc;
}

.sellable {
    color: #00ff88;
}

.not-sellable {
    color: #ff4d4d;
    font-weight: bold;
}

.gpu-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.btn-remove,
.btn-shop {
    flex: 1;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-remove {
    background: #ff4d4d;
    color: white;
}

.btn-remove:hover {
    background: #ff1a1a;
}

.btn-shop {
    background: linear-gradient(135deg,#4f46e5,#9333ea);
    color: white;
}

.btn-shop:hover {
    transform: translateY(-2px);
}






.modern-filter-horizontal {
  background: linear-gradient(180deg, #0b1220, #070c16);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0,255,255,0.15);
  margin-bottom: 20px;
}

.filter-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #ffd400;
  margin-bottom: 15px;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.filter-item label {
  display: block;
  margin-bottom: 5px;
  color: #8fb3ff;
  font-weight: 600;
  font-size: 14px;
}

.filter-item input,
.filter-item select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #101a2f;
  border: 1px solid #1f2e4a;
  color: #e6f1ff;
  outline: none;
  transition: 0.2s;
}

.filter-item input:focus,
.filter-item select:focus {
  border-color: #00eaff;
  box-shadow: 0 0 8px rgba(0,234,255,0.4);
}

.filter-footer {
  text-align: right;
  margin-top: 12px;
  font-weight: bold;
  color: #ffffff;
}



.miner-name {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #22c55e;
  letter-spacing: 0.5px;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, #0f172a, #1e293b);
  box-shadow: 0 0 8px rgba(34,197,94,0.4);
  transition: all 0.3s ease;
}

.collection-badge{
    background:#222;
    color:#00ffd0;
    font-size:11px;
    padding:3px 8px;
    border-radius:8px;
    margin-top:4px;
    display:inline-block;
}
















.achievements-list{
  flex-wrap:wrap;
  gap:10px;
}

.achievement-item{
  background:#1e1e1e;
  padding:8px 12px;
  border-radius:10px;
  font-size:14px;
}

.achievement-item .icon{
  margin-right:6px;
}