/* 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: 20px;
  text-align: center;
  padding: 6px;
  border: 1px solid #b30059;
  border-radius: 12px;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.free-game-zone-wrapper .zone-date-header {
    border: 2px solid #ff007f;
    text-align: center;
    padding: 0px;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 0px;
    line-height: 1.2;
    border-radius: 5px;
    color: #000b65;
    text-shadow: 1px 1px 2px #fff;
}
.free-game-zone-wrapper .arrow-indicator {
  font-weight: 900;
}

.free-game-zone-wrapper .sub-title-text {
    margin-top: 0px;
    font-size: 13px;
    color: #000;
    text-shadow: 1px 1px 2px #fff;
}
.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 {
    border: 2px solid #009206;
    overflow: hidden;
    padding: 5px;
    border-radius: 5px;
}

.free-game-zone-wrapper .game-card-title {
    background: linear-gradient(#00d309, #004503);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 5px 0 5px;
    border-radius: 10px;
    clip-path: polygon(0 0, 97% 0, 100% 48%, 100% 80%, 100% 100%, 3% 100%, 0 46%, 0 20%);
    color: #fff;
    text-shadow: 1px 1px 2px red;
    text-align: center;
}

.free-game-zone-wrapper .title-arrow {
  display: inline-block;
  /* transform: rotate(180deg); */
}

.free-game-zone-wrapper .game-card-content {
  text-align: center;
  font-weight: bold;
  color: #0000b3;
}

.free-game-zone-wrapper .content-line-main {
  font-size: 20px;
    line-height: 24px;
    color: #000b65;
    text-shadow: 1px 1px 2px #fff;
}
.free-game-zone-wrapper .content-line-sub {
    font-size: 20px;
    line-height: 24px;
    color: #000b65;
    text-shadow: 1px 1px 2px #fff;
}

.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%;
  }
}