/* ============================================
   GAMING PLANS - Antler Theme Match
   templates/{$template}/assets/css/custom/plans.css
   ============================================ */

/* === BACKGROUND UNITAR CU TEMA === */
.gplans-page,
body,
#main-body,
.main-body,
.content-area,
.sec-bg2,
.bg-colorstyle {
  background: #0d0d0d !important;
}

.gplans-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding-bottom: 80px;
}

/* === BLOBS - rosu ca tema === */
.gplans-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.gplans-blob--tl {
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(220,38,38,0.18) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  border-radius: 60% 40% 55% 45%;
}

.gplans-blob--br {
  width: 400px;
  height: 350px;
  background: radial-gradient(circle, rgba(185,28,28,0.12) 0%, transparent 70%);
  bottom: 0;
  right: -100px;
  border-radius: 45% 55% 40% 60%;
}

.gplans-blob--dot1 {
  width: 10px;
  height: 10px;
  background: #dc2626;
  border-radius: 50%;
  top: 120px;
  right: 80px;
  filter: none;
  opacity: 0.8;
}

.gplans-blob--dot2 {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  bottom: 200px;
  left: 60px;
  filter: none;
  opacity: 0.6;
}

/* === HERO === */
.gplans-hero {
  text-align: center;
  padding: 70px 0 50px;
  position: relative;
  z-index: 1;
}

.gplans-badge {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.gplans-title {
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 14px;
}

.gplans-sub {
  font-size: 15px;
  color: #9ca3af;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === GRID 4x2 === */
.gplans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) {
  .gplans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .gplans-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gplans-title { font-size: 28px; }
}

/* === CARD === */
.gplan-card {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 0 0 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gplan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
  border-color: #dc2626;
}

/* Card top - rosu ca tema */
.gplan-card__top {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  padding: 24px 20px 20px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.gplan-card__top::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.gplan-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

.gplan-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.gplan-card__name {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.gplan-card__price {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.gplan-card__price sup {
  font-size: 14px;
  vertical-align: super;
  font-weight: 600;
}

.gplan-card__price span {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-left: 2px;
}

/* Features list */
.gplan-card__features {
  list-style: none;
  padding: 0 20px;
  margin: 0 0 22px;
  flex-grow: 1;
}

.gplan-card__features li {
  font-size: 13px;
  color: #d1d5db;
  padding: 8px 0;
  border-bottom: 1px solid #222;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gplan-card__features li:last-child {
  border-bottom: none;
}

.gplan-card__features li.yes span {
  color: #dc2626;
  font-weight: 700;
  font-size: 14px;
}

.gplan-card__features li.no {
  color: #4b5563;
}

.gplan-card__features li.no span {
  color: #374151;
  font-weight: 700;
  font-size: 14px;
}

/* Button */
.gplan-card__btn {
  display: block;
  margin: 0 20px;
  background: #dc2626;
  color: #fff !important;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 0;
  border-radius: 6px;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease;
  border: 1px solid transparent;
}

.gplan-card__btn:hover {
  background: transparent;
  border-color: #dc2626;
  color: #dc2626 !important;
  transform: scale(1.02);
  text-decoration: none !important;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .gplan-card__top { padding: 18px 16px 16px; }
  .gplan-card__icon { width: 48px; height: 48px; }
  .gplan-card__name { font-size: 15px; }
  .gplan-card__price { font-size: 22px; }
  .gplan-card__features li { font-size: 12px; }
  .gplan-card__btn { font-size: 12px; padding: 10px 0; }
  .gplans-title { font-size: 28px; }
}