/* Mein Craft — fullz page */
.page-fullz .sr-logo__sub {
  color: var(--sr-amber);
}

.page-fullz .sr-title__gradient {
  background: linear-gradient(120deg, #ffe082 0%, #f5b942 40%, #ff8c42 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: none;
}

.page-fullz .sr-stat {
  border-top-color: rgba(245, 185, 66, 0.45);
}

.page-fullz .sr-stat__num {
  background: linear-gradient(135deg, #ffe082, #f5b942);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.15rem;
}

.page-fullz .sr-cta {
  background: linear-gradient(135deg, #f5b942, #ff8c42);
  color: #1a1208;
  box-shadow: 0 8px 28px rgba(245, 185, 66, 0.28);
}

.page-fullz .sr-cta:hover {
  box-shadow: 0 12px 36px rgba(245, 185, 66, 0.38);
}

.page-fullz .sr-hero--fullz {
  min-height: auto;
  padding-bottom: 16px;
}

.page-fullz .sr-main--fullz {
  max-width: 1100px;
  padding-top: 40px;
}

.page-fullz .contact-links-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-fullz .contact-link {
  background: var(--sr-surface);
  border-color: var(--sr-border);
}

.page-fullz .contact-link:hover {
  background: rgba(245, 185, 66, 0.06);
  border-color: rgba(245, 185, 66, 0.3);
}

.page-fullz .sr-ticker__content span {
  color: rgba(245, 185, 66, 0.55);
}

.fullz-panel {
  margin-bottom: 16px;
  padding: 24px 22px;
  background: var(--sr-surface);
  border: 1px solid var(--sr-border);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.fullz-panel--criteria {
  margin-bottom: 36px;
}

.fullz-panel__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--sr-border);
  color: var(--sr-amber);
}

.fullz-panel__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.fullz-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.fullz-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 185, 66, 0.12);
  border-radius: 14px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.fullz-item::before {
  content: "➖";
  flex-shrink: 0;
  font-size: 0.75rem;
  color: rgba(245, 185, 66, 0.6);
  margin-right: -4px;
}

.fullz-item:hover {
  background: rgba(245, 185, 66, 0.06);
  border-color: rgba(245, 185, 66, 0.28);
  transform: translateY(-1px);
}

.fullz-item--highlight {
  border-color: rgba(245, 185, 66, 0.35);
  background: rgba(245, 185, 66, 0.08);
}

.fullz-item__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f0f4ff;
  line-height: 1.4;
}

.fullz-item__price {
  flex-shrink: 0;
  padding: 6px 12px;
  background: rgba(245, 185, 66, 0.14);
  border: 1px solid rgba(245, 185, 66, 0.3);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--sr-amber);
}

.fullz-criteria {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.fullz-criteria li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(61, 214, 200, 0.15);
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(240, 244, 255, 0.88);
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.fullz-criteria li::before {
  content: "➖";
  font-size: 0.7rem;
  color: rgba(61, 214, 200, 0.55);
}

.fullz-criteria li:hover {
  background: rgba(61, 214, 200, 0.06);
  border-color: rgba(61, 214, 200, 0.3);
}

@media (max-width: 900px) {
  .page-fullz .sr-hero--fullz {
    text-align: center;
  }

  .page-fullz .sr-stats {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-fullz .contact-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fullz-criteria {
    grid-template-columns: 1fr;
  }

  .fullz-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .page-fullz .contact-links-grid {
    grid-template-columns: 1fr;
  }
}
