/** Shopify CDN: Minification failed

Line 13:0 Unexpected "<"
Line 89:0 Unexpected "<"
Line 99:27 Expected ")" to end URL token

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:fighter-cards (INDEX:23) */
<style>
.fighter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}
@media screen and (max-width: 749px) {
  .fighter-grid { grid-template-columns: 1fr; }
}
.fighter-card {
  width: 300px;
  margin: 0 auto;
  perspective: 1000px;
  cursor: pointer;
}
.fighter-inner {
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.fighter-card.flipped .fighter-inner {
  transform: rotateY(180deg);
}
.fighter-front,
.fighter-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: #000;
}
.fighter-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fighter-front img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
}
.fighter-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: #f9f9f9;
}
.fighter-name {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 1rem 0 0.5rem;
}
.stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 1rem 0;
}
.stats div {
  text-align: center;
}
.stats strong {
  display: block;
  font-size: 1.25rem;
}
</style>
/* END_SECTION:fighter-cards */

/* START_SECTION:moderm-directory (INDEX:54) */
.directory-section {
  position: relative;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px 20px;
  background-image: url({{ section.settings.background_image | image_url }});
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.directory-title {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: white;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.directory-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.directory-buttons a {
  flex: 1 1 calc(50% - 1.5rem);
  min-width: 140px;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  border: 1px solid white;
  background: transparent;
  color: white;
  transition: all 0.3s ease;
  border-radius: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

.directory-buttons a:hover {
  background: white;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Active button state */
.directory-buttons a.active {
  background: #DD1D1D;
  color: white;
  border-color: #DD1D1D;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .directory-title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .directory-buttons a {
    flex: 1 1 100%;
    font-size: 1.4rem;
    padding: 1rem;
  }
}
/* END_SECTION:moderm-directory */