/** Shopify CDN: Minification failed

Line 10:0 Unexpected "{"
Line 10:1 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
{% stylesheet %}
:root {
  --vcard-light-gold: #fbeda0;
  --vcard-dark-gold: #ba985e;
  --vcard-blue: #104765;
  --vcard-dark-blue: #052436;
}

.rules-box {
   border-top: 1px solid #fbeda0;
  background-color: var(--vcard-dark-blue);
}

.how-to-play-section {
  padding: 60px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.section-heading {
  font-size: 2.5rem;
  color: var(--vcard-light-gold);
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.game-description {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
  
}

.game-description p{
  text-wrap: balance;
}

.game-phases {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 2rem 0;
}

.phase-block,
.setup-block,
.tip-block {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--vcard-dark-gold);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.phase-block:hover,
.setup-block:hover,
.tip-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.phase-block h4,
.setup-block h4,
.tip-block h4 {
  color: var(--vcard-blue);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.phase-block p,
.setup-block p,
.tip-block p {
  color: var(--vcard-blue);
  position: relative;
  z-index: 1;
}

.rules-button {
  text-align: center;
  margin-top: 40px;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  background: var(--vcard-light-gold);
  color: var(--vcard-blue);
  font-weight: bold;
  transition: all 0.3s ease;
}

.button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }
  .game-objective h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 1.75rem;
  }
  .game-phases {
    grid-template-columns: 1fr;
  }
}