/**
 * SLOP FIGHTER Page Styles
 * Inherits base styles from style.css (dark theme, Vollkorn/Exo, #cc992c gold)
 */

/* Hero Section */
.sf-hero {
  text-align: center;
  margin: 40px auto 50px;
  max-width: 900px;
  padding: 0 20px;
}

.sf-tagline {
  font-family: 'Vollkorn', serif;
  font-size: 14px;
  letter-spacing: 6px;
  color: #cc992c;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.sf-subtitle {
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  color: #888;
  letter-spacing: 1.5px;
  line-height: 1.8;
}

.sf-coming-soon {
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #888;
  margin-top: 20px;
  border: 1px solid rgba(204, 153, 44, 0.3);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 3px;
}

/* Trailer Section */
.sf-trailer {
  max-width: 640px;
  margin: 20px auto 0;
}

.sf-trailer iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(204, 153, 44, 0.2);
  border-radius: 4px;
}

.sf-trailer-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: rgba(18, 23, 29, 0.6);
  border: 1px solid rgba(204, 153, 44, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-trailer-placeholder span {
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #666;
}

/* Media Section — fallback placeholder */
.sf-media-grid {
  margin: 20px auto 0;
}

.sf-media-placeholder {
  width: 100%;
  padding: 60px 20px;
  background-color: rgba(18, 23, 29, 0.6);
  border: 1px solid rgba(204, 153, 44, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-media-placeholder span {
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #666;
}

/* Screenshot Gallery — scrolling thumbnail strip */
.sf-gallery-wrap {
  overflow: hidden;
  margin: 20px auto 0;
  border: 1px solid rgba(204, 153, 44, 0.12);
  border-radius: 4px;
  background-color: rgba(18, 23, 29, 0.6);
  padding: 12px 0;
}

.sf-gallery-track {
  display: flex;
  gap: 12px;
  overflow-x: hidden;
  padding: 0 12px;
  scrollbar-width: none;
}

.sf-gallery-track::-webkit-scrollbar {
  display: none;
}

.sf-thumb {
  flex-shrink: 0;
  width: 160px;
  height: 96px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(204, 153, 44, 0.15);
  transition: border-color 0.3s, transform 0.2s;
}

.sf-thumb:hover {
  border-color: rgba(204, 153, 44, 0.6);
  transform: scale(1.05);
}

.sf-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lightbox */
.sf-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.sf-lightbox.sf-lightbox-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
}

.sf-lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
}

.sf-lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border: 1px solid rgba(204, 153, 44, 0.3);
  border-radius: 4px;
  image-rendering: pixelated;
}

.sf-lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #cc992c;
  font-size: 36px;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
  transition: color 0.2s;
}

.sf-lightbox-close:hover {
  color: #fff;
}

.sf-lightbox-prev,
.sf-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #cc992c;
  font-size: 48px;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
  transition: color 0.2s;
  z-index: 10000;
}

.sf-lightbox-prev { left: 20px; }
.sf-lightbox-next { right: 20px; }

.sf-lightbox-prev:hover,
.sf-lightbox-next:hover {
  color: #fff;
}

.sf-lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: #888;
  z-index: 10000;
}

/* Content Container */
.sf-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sections */
.sf-section {
  margin-bottom: 50px;
}

.sf-heading {
  font-family: 'Vollkorn', serif;
  font-size: 16px;
  color: #cc992c;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.sf-heading::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 1px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, rgba(204, 153, 44, 0), rgba(204, 153, 44, 0.6), rgba(204, 153, 44, 0));
}

.sf-section p {
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  line-height: 1.9;
  color: #c0c0c0;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.sf-section a {
  color: #cc992c;
  border-bottom: 1px solid rgba(204, 153, 44, 0.3);
  transition: border-color 0.3s;
}

.sf-section a:hover {
  border-bottom-color: #cc992c;
}

/* Feature Grid */
.sf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.sf-card {
  background-color: rgba(18, 23, 29, 0.6);
  border: 1px solid rgba(204, 153, 44, 0.12);
  border-radius: 4px;
  padding: 25px 20px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.sf-card:hover {
  border-color: rgba(204, 153, 44, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sf-card-icon {
  font-size: 22px;
  color: #cc992c;
  margin-bottom: 12px;
  opacity: 0.8;
}

.sf-card-title {
  font-family: 'Vollkorn', serif;
  font-size: 12px;
  color: #cc992c;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.sf-card p {
  font-size: 10px;
  line-height: 1.8;
  color: #999;
  text-align: center;
  margin: 0;
}

/* Status Grid */
.sf-status-grid {
  max-width: 500px;
  margin: 20px auto 0;
}

.sf-status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-family: 'Exo', sans-serif;
  font-size: 11px;
}

.sf-status-item:last-child {
  border-bottom: none;
}

.sf-status-label {
  color: #888;
  letter-spacing: 0.5px;
}

.sf-status-value {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: bold;
}

.sf-complete {
  color: #5a9e6f;
}

.sf-progress {
  color: #cc992c;
}

.sf-planned {
  color: #666;
}

/* Links Section */
.sf-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sf-link {
  display: inline-block;
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: #cc992c !important;
  padding: 10px 24px;
  border: 1px solid rgba(204, 153, 44, 0.3);
  border-radius: 3px;
  transition: all 0.3s;
  text-decoration: none;
}

.sf-link:hover {
  background-color: rgba(204, 153, 44, 0.1);
  border-color: rgba(204, 153, 44, 0.6);
  color: #cc992c !important;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .sf-grid {
    grid-template-columns: 1fr;
  }

  .sf-hero {
    margin: 25px auto 35px;
  }

  .sf-tagline {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .sf-links {
    flex-direction: column;
    align-items: center;
  }

  .sf-link {
    width: 200px;
    text-align: center;
  }

  .sf-status-item {
    font-size: 10px;
  }
}
