/* WrestleSpot.pl - Portal o Kinie Grozy */
:root {
  --bg: #0d0a08;
  --surface: #161210;
  --card: #1f1813;
  --border: #3d2f1f;
  --gold: #d4af37;
  --gold-bright: #f0c850;
  --sand: #c9a961;
  --blood: #8b1538;
  --blood-bright: #c93a5a;
  --text: #f5e6c8;
  --muted: #a89373;
  --shadow: rgba(0,0,0,0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lato', 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  font-size: 17px;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at top left, rgba(212,175,55,0.05), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(139,21,56,0.05), transparent 50%);
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

h1 { font-size: 2.6rem; margin-bottom: 1rem; color: var(--gold-bright); }
h2 { font-size: 1.85rem; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--border); }
h3 { font-size: 1.35rem; margin: 1.8rem 0 0.8rem; color: var(--sand); }
h4 { font-size: 1.1rem; margin: 1.2rem 0 0.5rem; color: var(--sand); }

p { margin-bottom: 1rem; }

a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px dotted var(--gold); transition: all 0.2s; }
a:hover { color: var(--blood-bright); border-bottom-color: var(--blood-bright); }

ul, ol { margin: 1rem 0 1.2rem 1.5rem; }
li { margin-bottom: 0.5rem; }

strong { color: var(--gold-bright); }
em { color: var(--sand); font-style: italic; }

/* HEADER */
.site-header {
  background: linear-gradient(180deg, #0a0706 0%, #161210 100%);
  border-bottom: 2px solid var(--gold);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px var(--shadow);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  border: none;
}

.logo-mark { width: 42px; height: 42px; flex-shrink: 0; }

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--gold-bright);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.logo-text small {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-top: 2px;
}

.main-nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.main-nav a {
  color: var(--text);
  border: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--gold-bright); border-bottom-color: var(--gold); }

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a1208 0%, #2a1810 50%, #1a0a0e 100%);
  border-bottom: 1px solid var(--border);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212,175,55,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(139,21,56,0.15), transparent 40%);
  pointer-events: none;
}

.hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.hero-art { margin: 0 auto 1.5rem; width: 140px; height: 140px; }
.hero h1 { font-size: 3rem; margin-bottom: 0.8rem; }
.hero .lead { font-size: 1.2rem; color: var(--sand); max-width: 700px; margin: 0 auto; }

/* MAIN CONTENT */
main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

article { background: transparent; }

.bluf {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(139,21,56,0.05));
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.8rem;
  margin: 1.5rem 0 2.5rem;
  border-radius: 0 8px 8px 0;
  font-size: 1.05rem;
}

.bluf strong { color: var(--gold-bright); }

/* INFO BOX / CARD */
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 16px var(--shadow);
}

.info-card h3 { margin-top: 0; color: var(--gold-bright); }

/* FACT TABLE */
.fact-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}

.fact-table th, .fact-table td {
  padding: 0.85rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.fact-table th {
  background: rgba(212,175,55,0.08);
  color: var(--gold-bright);
  font-family: 'Cinzel', serif;
  font-weight: 600;
  width: 35%;
}

.fact-table tr:last-child td, .fact-table tr:last-child th { border-bottom: none; }

/* ILLUSTRATION */
.illustration {
  display: block;
  margin: 2rem auto;
  max-width: 100%;
}

.section-divider {
  display: block;
  margin: 3rem auto;
  width: 200px;
  height: 30px;
  opacity: 0.6;
}

/* SUPPLEMENTARY ROOF */
.supplementary-roof {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px dashed var(--border);
}

.supplementary-roof > h2 {
  background: linear-gradient(90deg, rgba(212,175,55,0.1), transparent);
  padding: 0.8rem 1.2rem;
  border-bottom: 2px solid var(--gold);
  border-radius: 4px 4px 0 0;
}

/* ANTONYM */
.antonym {
  background: linear-gradient(135deg, rgba(139,21,56,0.08), transparent);
  border-left: 4px solid var(--blood);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 6px 6px 0;
}

.antonym h3 { color: var(--blood-bright); margin-top: 0; }

/* RELATED CARDS GRID */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}

.related-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.3rem;
  transition: all 0.25s;
  display: block;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px var(--shadow);
  color: var(--text);
  border-bottom-color: var(--gold);
}

.related-card h4 {
  margin: 0 0 0.5rem;
  color: var(--gold-bright);
  font-size: 1.05rem;
}

.related-card p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* QUESTION BLOCK */
.qa-block {
  margin: 1.5rem 0;
  padding: 1.2rem 1.5rem;
  background: rgba(201,169,97,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.qa-block .question {
  color: var(--gold-bright);
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.qa-block .answer { color: var(--text); }

/* FOOTER */
.site-footer {
  background: #0a0706;
  border-top: 2px solid var(--gold);
  padding: 3rem 1.5rem 2rem;
  margin-top: 5rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
  border: none;
}
.footer-col a:hover { color: var(--gold-bright); }

.footer-bottom {
  max-width: 1180px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* BREADCRUMB */
.breadcrumb {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.breadcrumb a { color: var(--muted); border: none; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb .sep { margin: 0 0.5rem; color: var(--border); }

/* RESPONSIVE */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  .hero h1 { font-size: 2.2rem; }
  h2 { font-size: 1.45rem; }
  body { font-size: 16px; }
  main { padding: 2rem 1rem; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .main-nav { gap: 0.8rem; font-size: 0.8rem; }
}

/* DECORATIVE ELEMENTS */
.ornament {
  text-align: center;
  margin: 2.5rem 0;
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 0.5em;
}

/* WATCH CTA - główny przycisk do vider-club.pl */
.watch-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #8b1538 0%, #5a0f24 50%, #1a0a0e 100%);
  border: 2px solid var(--gold);
  border-radius: 8px;
  text-decoration: none !important;
  color: var(--gold) !important;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(240, 200, 80, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.watch-cta::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240, 200, 80, 0.15), transparent);
  transition: left 0.6s ease;
}
.watch-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(240, 200, 80, 0.3);
  border-color: #f0c850;
  background: linear-gradient(135deg, #a01a44 0%, #6b1530 50%, #2a1015 100%);
}
.watch-cta:hover::before { left: 100%; }
.watch-cta-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  color: var(--gold);
}
.watch-cta-icon svg { width: 100%; height: 100%; }
.watch-cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.watch-cta-title {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.watch-cta-subtitle {
  font-size: 0.92rem;
  color: #e8d4a0;
  opacity: 0.9;
  font-weight: 400;
}
.watch-cta-arrow {
  font-size: 2rem;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.watch-cta:hover .watch-cta-arrow { transform: translateX(6px); }

@media (max-width: 640px) {
  .watch-cta { padding: 1.2rem 1.2rem; gap: 1rem; }
  .watch-cta-icon { width: 42px; height: 42px; }
  .watch-cta-title { font-size: 1.1rem; }
  .watch-cta-subtitle { font-size: 0.82rem; }
  .watch-cta-arrow { font-size: 1.5rem; }
}
