/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 08 2026 | 07:09:06 */
/* Homepage second banner */
.cga-player-banner {
  --cga-gold: #d3a64a;

  box-sizing: border-box;
  width: min(520px, calc(100% - 36px));
  margin-right: clamp(18px, 6vw, 110px);
  margin-left: auto;
  padding: 22px 27px;
  color: #fff;
  text-align: left;
  background: linear-gradient(
    115deg,
    rgba(11, 14, 17, 0.91),
    rgba(20, 23, 25, 0.78)
  );
  border-left: 3px solid var(--cga-gold);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.cga-player-kicker {
  margin: 0 0 9px;
  color: var(--cga-gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cga-player-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(31px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.cga-player-title span {
  display: block;
  color: var(--cga-gold);
}

.cga-player-description {
  max-width: 440px;
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.5;
}

.cga-player-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  color: #17130d !important;
  background-color: var(--cga-gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cga-player-button:hover {
  color: #17130d !important;
  background-color: #e3bb67;
  transform: translateY(-2px);
}

.cga-player-button span {
  font-size: 18px;
  line-height: 1;
}

/* Mobile */
@media (max-width: 549px) {
  .cga-player-banner {
    width: calc(100% - 28px);
    margin: 0 14px;
    padding: 18px 20px;
  }

  .cga-player-kicker {
    font-size: 10px;
  }

  .cga-player-title {
    font-size: 29px;
  }

  .cga-player-description {
    font-size: 14px;
  }

  .cga-player-button {
    padding: 10px 15px;
    font-size: 11px;
  }
}