/* Parent Scoped CSS for complete control without bootstrap inline styles */
.free-game-zone-wrapper {
  margin-bottom: 24px;
}

.free-game-zone-wrapper .pink-zone-bar {
  background: linear-gradient(to bottom, #ff007f, #e60073);
  color: #ffffff;
  font-weight: bold;
  font-style: italic;
  font-size: 0.9rem;
  text-align: center;
  padding: 6px;
  border: 1px solid #b30059;
  border-radius: 12px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.free-game-zone-wrapper .game-zone-main-box {
  border: 2px solid #800000 !important;
  background-color: #ffcc99 !important;
  border-radius: 4px;
  padding: 8px;
}

.free-game-zone-wrapper .zone-date-header {
  border: 1px solid #ff007f;
  background-color: #ffffff;
  text-align: center;
  padding: 8px;
  font-weight: bold;
  color: #0000b3;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.free-game-zone-wrapper .arrow-indicator {
  font-weight: 900;
}

.free-game-zone-wrapper .sub-title-text {
  font-size: 0.88rem;
  color: #000000;
  margin-top: 2px;
}

.free-game-zone-wrapper .sub-title-text.text-bold {
  font-weight: 900;
}

/* Custom CSS Flexbox-Grid Engine */
.free-game-zone-wrapper .game-grid-layout {
  display: flex;
  flex-wrap: wrap;
  margin-right: -4px;
  margin-left: -4px;
}

.free-game-zone-wrapper .game-grid-column {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 4px;
}

.free-game-zone-wrapper .game-card-item {
  background-color: #ffffff;
  border: 1px solid #800000;
  overflow: hidden;
}

.free-game-zone-wrapper .game-card-title {
  background: linear-gradient(to bottom, #009933 0%, #006622 100%);
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 4px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.free-game-zone-wrapper .title-arrow {
  display: inline-block;
  transform: rotate(180deg);
}

.free-game-zone-wrapper .game-card-content {
  text-align: center;
  font-family: var(--bs-font-monospace);
  font-weight: bold;
  padding: 8px 4px;
  color: #0000b3;
}

.free-game-zone-wrapper .content-line-main {
  font-size: 1.1rem;
  color: #cc0000;
  margin-bottom: 2px;
}

.free-game-zone-wrapper .content-line-sub {
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.free-game-zone-wrapper .content-line-sub:last-child {
  margin-bottom: 0;
}

/* 2-Column Media Query Breakpoint */
@media (min-width: 768px) {
  .free-game-zone-wrapper .game-grid-column {
    flex: 0 0 50%;
    max-width: 50%;
  }
}