/* Variables para colores de botón VIP */
:root {
  --vip-gradient-start: #D4AF37;  /* dorado claro */
  --vip-gradient-end:   #B68D27;  /* dorado oscuro */
}

/* 0. Box sizing global para que padding y border no inflen */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 1. Panel VIP base */
.panel-vip {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  color: #fff;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  filter: brightness(0.9);
  transition: transform 0.3s ease, filter 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.panel-vip:hover {
  transform: translateY(-3px);
  filter: brightness(1.2);
}

/* 1.1 Encabezado sobre semitransparente */
.panel-vip > .panel-heading {
  padding: 12px 15px 8px;
  background: rgba(0, 0, 0, 0.5);
}
.panel-vip > .panel-heading > .panel-title {
  margin: 0;
  font-weight: bold;
  font-size: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* 2. Fondos por tipo de VIP */
.panel-vip.type1 {
  background: #000 url('../img/vip_panel_bg_1.jpg') center/cover no-repeat;
}
.panel-vip.type2 {
  background: #000 url('../img/vip_panel_bg_2.jpg') center/cover no-repeat;
}
.panel-vip.type3 {
  background: #000 url('../img/vip_panel_bg_3.jpg') center/cover no-repeat;
}
.panel-vip.type4 {
  background: #000 url('../img/vip_panel_bg_4.jpg') center/cover no-repeat;
}

/* 3. Contenedor y tabla VIP */
.vip-table-container {
  max-width: 600px;
  margin: 0 auto 15px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}
.vip-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 6px;
  font-family: inherit;
}
.vip-table th,
.vip-table td {
  padding: 8px 10px;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}
.vip-table td {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  line-height: 1.4;
}
/* Anchos iguales por columna */
.vip-table td:nth-child(1),
.vip-table td:nth-child(2),
.vip-table td:nth-child(3) {
  width: 33.3333%;
}

/* 4. Botón VIP con degradado acorde a tu logo */
.btn-vip {
  display: block;
  margin: 0 auto;
  padding: 8px 20px;
  background: linear-gradient(
    135deg,
    var(--vip-gradient-start) 0%,
    var(--vip-gradient-end)   100%
  );
  color: #222;
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(182, 141, 39, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-vip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(182, 141, 39, 0.4);
}