/* ============================================================
   War Sails Modding Competition – Custom Styles
   Companion to: bootstrap.min.css + site.css
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --orange:      #f1751b;
  --orange-dark: #e74011;
  --orange-alt:  #f29156;
  --gold:        #d9b970;
  --gold-dark:   #685c42;
  --bg-base:     #121212;
  --bg-card:     #1a1a1a;
  --bg-card-alt: #161616;
  --border-subtle: rgba(255,255,255,0.07);
  --text-main:   #e0e0e0;
  --text-muted:  #9a9a9a;
  --font-main:   'Overpass', sans-serif;
  --transition:  0.25s ease;
  --radius:      3px;
}

/* ---------- Global resets for this page ---------- */
.wsc-page { font-family: var(--font-main); color: var(--text-main); }
.wsc-page *, .wsc-page *::before, .wsc-page *::after { box-sizing: border-box; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange-dark); }

/* Smooth scroll */
html { scroll-behavior: smooth; }
body { margin-bottom: 0 !important; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.wsc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(13,22,40,0.9) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(241,117,27,0.06) 0%, transparent 50%),
    linear-gradient(160deg, #070c16 0%, #0d1628 35%, #121212 70%, #0f0e0e 100%);
}

/* Animated background grid */
.wsc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
  pointer-events: none;
}

/* Vignette overlay */
.wsc-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

/* Bottom wave divider */
.wsc-hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom right, transparent 49%, #121212 50%);
}

.wsc-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
  text-align: center;
}

.wsc-hero-logo {
  display: block;
  max-width: 420px;
  width: 100%;
  margin: 0 auto 32px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}

.wsc-hero-title {
  font-family: var(--font-main);
  font-size: clamp(42px, 7vw, 90px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0 0 8px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}

.wsc-hero-title span {
  color: var(--orange);
}

.wsc-hero-subtitle {
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 300;
  color: #c8c8c8;
  margin: 0 auto 48px;
  max-width: 560px;
  line-height: 1.6;
}

/* Hero dates strip */
.wsc-hero-dates {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.wsc-hero-date-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
}

.wsc-hero-date-item:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.wsc-hero-date-item:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }

.wsc-hero-date-divider {
  width: 1px;
  height: 60px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

.wsc-date-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.wsc-date-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

/* Hero CTAs */
.wsc-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.wsc-hero-cta .btn-cstm-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 52px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 6px 24px rgba(241,117,27,0.3);
}
.wsc-hero-cta .btn-cstm-lg:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

.wsc-hero-cta .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 52px;
  background: transparent;
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.25);
  text-decoration: none;
  transition: all var(--transition);
}
.wsc-hero-cta .btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  text-decoration: none;
}

/* Scroll indicator */
.wsc-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.wsc-scroll-hint i { font-size: 16px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.wsc-section-title {
  font-family: var(--font-main);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
}

.wsc-section-title.centered { text-align: center; }

.wsc-section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 0 auto 40px;
}

.wsc-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.wsc-intro {
  background: #121212;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.wsc-intro-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.wsc-intro-inner .wsc-section-title { margin-bottom: 20px; }

.wsc-intro-text {
  font-size: 17px;
  line-height: 1.75;
  color: #c8c8c8;
  margin-bottom: 40px;
}

.wsc-highlights {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.wsc-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #d0d0d0;
  border-radius: var(--radius);
}
.wsc-highlight-item i { color: var(--orange); font-size: 16px; }

/* ============================================================
   CONTEST OVERVIEW CARDS
   ============================================================ */
.wsc-contests {
  background: #121212;
  padding: 80px 0 100px;
}

.wsc-contests .wsc-section-title { margin-bottom: 8px; }

.wsc-contest-cards {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
}

.wsc-contest-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--orange);
  padding: 36px 28px 32px;
  text-decoration: none;
  color: var(--text-main);
  transition: transform var(--transition), box-shadow var(--transition), border-top-color var(--transition);
  height: 100%;
  cursor: pointer;
  border-radius: 0 0 var(--radius) var(--radius);
}

.wsc-contest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  text-decoration: none;
  color: var(--text-main);
}

.wsc-card-scene  { border-top-color: #3a9fc7; }
.wsc-card-mod    { border-top-color: #7a5fc7; }
.wsc-card-3dart  { border-top-color: var(--orange); }

.wsc-card-scene:hover  { border-top-color: #3a9fc7; box-shadow: 0 12px 40px rgba(58,159,199,0.15); }
.wsc-card-mod:hover    { border-top-color: #7a5fc7; box-shadow: 0 12px 40px rgba(122,95,199,0.15); }
.wsc-card-3dart:hover  { border-top-color: var(--orange); box-shadow: 0 12px 40px rgba(241,117,27,0.15); }

/* Featured card (Conversion Mod spotlight) */
.wsc-card-featured {
  border-top-width: 4px;
  background: linear-gradient(160deg, #1a1228 0%, #160e24 50%, #1a1a1a 100%);
  position: relative;
}
.wsc-card-featured .wsc-card-icon { font-size: 40px; }
.wsc-card-featured h3 { font-size: 24px; }
.wsc-card-featured p  { font-size: 15px; line-height: 1.7; color: #c0b8cc; }
.wsc-card-featured .wsc-card-theme { color: rgba(155,127,224,0.6); }

.wsc-card-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7a5fc7;
  background: rgba(122,95,199,0.12);
  border: 1px solid rgba(122,95,199,0.3);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.wsc-card-featured-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7a5fc7;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.wsc-card-icon {
  font-size: 32px;
  margin-bottom: 20px;
}
.wsc-card-scene  .wsc-card-icon { color: #3a9fc7; }
.wsc-card-mod    .wsc-card-icon { color: #7a5fc7; }
.wsc-card-3dart  .wsc-card-icon { color: var(--orange); }

.wsc-contest-card h3 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 0.5px;
}

.wsc-contest-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.wsc-card-theme {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
  width: 100%;
}

/* Cards inner wrapper for equal height */
.wsc-contest-cards .col-md-3,
.wsc-contest-cards .col-sm-6 {
  display: flex;
  padding-bottom: 24px;
}
.wsc-contest-cards .col-md-3 > a,
.wsc-contest-cards .col-sm-6 > a {
  flex: 1;
}

/* ============================================================
   TIMELINE SECTION
   ============================================================ */
.wsc-timeline {
  background: var(--bg-card-alt);
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.wsc-timeline .wsc-section-title { margin-bottom: 8px; }

.wsc-timeline-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 56px;
  padding: 0 20px;
  flex-wrap: wrap;
  gap: 32px;
}

/* Connecting line */
.wsc-timeline-track::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-dark));
}

.wsc-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 140px;
  position: relative;
  z-index: 1;
}

.wsc-timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-card-alt);
  border: 3px solid var(--gold-dark);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.wsc-timeline-dot.wsc-dot-gold {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(217,185,112,0.5);
}

.wsc-timeline-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.wsc-timeline-date {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.wsc-timeline-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.wsc-timeline-label small {
  font-size: 11px;
  opacity: 0.7;
}

/* ============================================================
   CONTEST DETAIL SECTIONS
   ============================================================ */
.wsc-contest-section {
  position: relative;
  padding: 100px 0;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.wsc-mod-bg    { background: linear-gradient(160deg, #120a20 0%, #1a0d2a 40%, #121212 100%); }
.wsc-scene-bg  { background: linear-gradient(160deg, #0a1520 0%, #0d1c2a 40%, #121212 100%); }
.wsc-3dart-bg  { background: linear-gradient(160deg, #1a0e08 0%, #1e1208 40%, #121212 100%); }

/* Color accent lines per contest */
.wsc-mod-bg::before    { border-top: 3px solid #7a5fc7; }
.wsc-scene-bg::before  { border-top: 3px solid #3a9fc7; }
.wsc-3dart-bg::before  { border-top: 3px solid var(--orange); }
.wsc-contest-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* Decorative corner number */
.wsc-contest-section::after {
  content: attr(data-num);
  position: absolute;
  top: 40px;
  right: 5%;
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,0.018);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-main);
}

/* Section header block */
.wsc-contest-section-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.wsc-contest-badge {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  border: 2px solid;
}
.wsc-scene-bg  .wsc-contest-badge { color: #3a9fc7; border-color: rgba(58,159,199,0.3); background: rgba(58,159,199,0.06); }
.wsc-mod-bg    .wsc-contest-badge { color: #7a5fc7; border-color: rgba(122,95,199,0.3); background: rgba(122,95,199,0.06); }
.wsc-3dart-bg  .wsc-contest-badge { color: var(--orange); border-color: rgba(241,117,27,0.3); background: rgba(241,117,27,0.06); }

.wsc-contest-section-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: 1px;
}

.wsc-contest-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.5px;
}
.wsc-contest-meta strong { color: var(--text-main); }

/* ============================================================
   CONTENT BLOCKS
   ============================================================ */
.wsc-content-block {
  margin-bottom: 32px;
}

.wsc-content-block h3 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(241,117,27,0.2);
}

.wsc-mod-bg    .wsc-content-block h3 { color: #9b7fe0; border-bottom-color: rgba(122,95,199,0.2); }
.wsc-scene-bg  .wsc-content-block h3 { color: #3a9fc7; border-bottom-color: rgba(58,159,199,0.2); }
.wsc-3dart-bg  .wsc-content-block h3 { color: var(--orange); border-bottom-color: rgba(241,117,27,0.2); }

.wsc-content-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #c8c8c8;
  margin-bottom: 12px;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.wsc-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.wsc-accordion-item {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
}

.wsc-accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  color: #e0e0e0;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition), background var(--transition);
}

.wsc-accordion-toggle:hover {
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.wsc-accordion-toggle.active { color: var(--orange); }
.wsc-accordion-toggle i {
  transition: transform var(--transition);
  font-size: 12px;
  color: var(--text-muted);
}
.wsc-accordion-toggle.active i { transform: rotate(180deg); }

.wsc-accordion-content {
  display: none;
  padding: 0 20px 20px;
  border-top: 1px solid var(--border-subtle);
}
.wsc-accordion-content.open { display: block; }

/* Rules list */
.wsc-rules-list {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wsc-rules-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #c8c8c8;
  padding-left: 20px;
  position: relative;
}

.wsc-rules-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* FAQ */
.wsc-faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 16px;
}

.wsc-faq-item > strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.wsc-faq-item p {
  font-size: 14px;
  line-height: 1.65;
  color: #b8b8b8;
  margin: 0;
}

/* FAQ accordions */
.wsc-faq-accordion .wsc-accordion-toggle {
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}

.wsc-faq-accordion .wsc-accordion-content {
  padding-top: 14px;
}

.wsc-accordion-content p {
  font-size: 14px;
  line-height: 1.65;
  color: #b8b8b8;
  margin: 0 0 10px;
}
.wsc-accordion-content p:last-child { margin-bottom: 0; }

.wsc-accordion-content .wsc-rules-list { padding-top: 10px; }
.wsc-accordion-content .wsc-rules-list:first-child { padding-top: 4px; }

/* ============================================================
   SIDEBAR CARDS (Evaluation / Prizes / Submission)
   ============================================================ */
.wsc-side-col {
  padding-left: 20px;
}

.wsc-side-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-subtle);
  padding: 28px;
  margin-bottom: 20px;
  border-radius: var(--radius);
}

.wsc-side-card h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

/* Evaluation bars */
.wsc-eval-item {
  margin-bottom: 14px;
}

.wsc-eval-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wsc-eval-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 4px 0 0;
  text-transform: none;
  letter-spacing: 0;
}

/* Prizes */
.wsc-prizes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wsc-prize {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  border-left-width: 3px;
}

.wsc-prize-gold   { border-left-color: #d9b970; }
.wsc-prize-silver { border-left-color: #b0b8c1; }
.wsc-prize-bronze { border-left-color: #cd7f32; }
.wsc-prize:not(.wsc-prize-gold):not(.wsc-prize-silver):not(.wsc-prize-bronze) {
  border-left-color: rgba(255,255,255,0.1);
}

.wsc-prize-rank {
  font-size: 13px;
  font-weight: 700;
  color: #e0e0e0;
}

.wsc-prize-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  font-style: italic;
}

/* Submission steps */
.wsc-submit-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wsc-submit-steps li {
  counter-increment: step;
  padding-left: 36px;
  position: relative;
  font-size: 13px;
  line-height: 1.6;
  color: #c8c8c8;
}

.wsc-submit-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.wsc-submit-steps code,
.wsc-submit-steps strong {
  color: var(--orange);
  font-size: 12px;
}

.wsc-submit-steps code {
  background: none;          /* remove Bootstrap's light code background */
  padding: 0;
  word-break: break-all;     /* let spaceless \paths\ wrap inside the card */
  overflow-wrap: anywhere;
}

/* Upload link */
.wsc-upload-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(241,117,27,0.1);
  border: 1px solid rgba(241,117,27,0.25);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  transition: background var(--transition);
}
.wsc-upload-link:hover {
  background: rgba(241,117,27,0.18);
  text-decoration: none;
  color: var(--orange-alt);
}
.wsc-upload-link i { font-size: 18px; }

/* ============================================================
   GENERAL RULES SECTION
   ============================================================ */
.wsc-general-rules {
  background: var(--bg-card-alt);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-subtle);
}

/* ============================================================
   COMPETITION TERMS
   ============================================================ */
.wsc-terms-preamble {
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
}

.wsc-terms-preamble p {
  font-size: 14px;
  line-height: 1.7;
  color: #b8b8b8;
  margin: 0 0 14px;
}

.wsc-terms-preamble p:last-child {
  margin-bottom: 0;
}

.wsc-terms {
  max-width: 960px;
  margin: 0 auto;
}

.wsc-terms-heading {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  text-align: center;
  margin: 36px 0 20px;
}

.wsc-terms .wsc-accordion {
  margin-bottom: 0;
}

.wsc-terms-list {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wsc-terms-list li {
  font-size: 14px;
  line-height: 1.7;
  color: #c8c8c8;
}

.wsc-terms .wsc-accordion-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #c8c8c8;
  padding-top: 16px;
  margin: 0;
}

.wsc-terms .wsc-accordion-content p + .wsc-terms-list {
  padding-top: 4px;
}

.wsc-terms .wsc-accordion-content a {
  color: var(--orange);
  text-decoration: underline;
}

/* ============================================================
   PRIZES OVERVIEW SECTION
   ============================================================ */
.wsc-prizes-overview {
  background: #121212;
  padding: 70px 0 80px;
  border-bottom: 1px solid var(--border-subtle);
}

.wsc-prizes-overview .wsc-section-title { margin-bottom: 8px; }

.wsc-prize-total {
  font-family: var(--font-main);
  font-size: clamp(72px, 12vw, 130px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--gold);
  text-align: center;
  margin: 16px 0 6px;
  text-shadow: 0 0 60px rgba(217, 185, 112, 0.25);
}

.wsc-prize-total-plus {
  color: var(--orange);
}

.wsc-prize-total-sub {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.wsc-poverview-row {
  margin-top: 40px;
}

.wsc-poverview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--orange);
  padding: 28px 24px;
  height: 100%;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 24px;
}

.wsc-poverview-mod   { border-top-color: #7a5fc7; }
.wsc-poverview-scene { border-top-color: #3a9fc7; }
.wsc-poverview-3dart { border-top-color: var(--orange); }

.wsc-poverview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.wsc-poverview-header i { font-size: 18px; }
.wsc-poverview-mod   .wsc-poverview-header i { color: #7a5fc7; }
.wsc-poverview-scene .wsc-poverview-header i { color: #3a9fc7; }
.wsc-poverview-3dart .wsc-poverview-header i { color: var(--orange); }

.wsc-poverview-header span {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.wsc-poverview-card .wsc-prize-val {
  color: var(--gold);
  font-style: normal;
}

/* Ship parts table */
.wsc-ship-parts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 10px;
}

.wsc-ship-parts-table th {
  background: rgba(241,117,27,0.15);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid rgba(241,117,27,0.3);
}

.wsc-ship-parts-table td {
  padding: 9px 14px;
  color: #c8c8c8;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
}

.wsc-ship-parts-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

/* Rules sub-list (nested) */
.wsc-rules-sublist {
  padding-left: 16px;
  padding-top: 6px !important;
  gap: 6px;
}
.wsc-rules-sublist li {
  font-size: 12px !important;
  color: var(--text-muted) !important;
}
.wsc-rules-sublist li::before {
  background: var(--text-muted) !important;
  top: 8px !important;
  width: 4px !important;
  height: 4px !important;
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.wsc-partners {
  background: #0e0e0e;
  padding: 56px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.wsc-partners-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.wsc-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
}

.wsc-partners-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

.wsc-partner-link {
  flex: 1;
  display: flex;
  align-items: center;
  filter: grayscale(1) brightness(1.3);
  opacity: 0.5;
  transition: filter var(--transition), opacity var(--transition), transform var(--transition);
}

.wsc-partner-link:first-child  { justify-content: flex-end;   padding-right: 40px; }
.wsc-partner-link:last-child   { justify-content: flex-start; padding-left:  40px; }

.wsc-partner-link:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: translateY(-2px);
}

.wsc-partner-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 220px;
}

@media (max-width: 480px) {
  .wsc-partners-logos { flex-direction: column; gap: 28px; }
  .wsc-partners-divider { display: none; }
  .wsc-partner-link:first-child,
  .wsc-partner-link:last-child { justify-content: center; padding: 0; }
}

/* ============================================================
   SHARE BUTTON
   ============================================================ */
.wsc-share-wrap {
  position: relative;
  display: inline-flex;
}

.wsc-share-btn {
  background: transparent;
  cursor: pointer;
  font-family: var(--font-main);
}

.wsc-share-dropdown {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  display: flex;
  gap: 6px;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 10px 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(4px);
  white-space: nowrap;
}

.wsc-share-dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.wsc-share-option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  font-size: 17px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.wsc-share-x   { color: #fff; }
.wsc-share-x:hover { background: rgba(255,255,255,0.1); color: #fff; }
.wsc-share-fb  { color: #1877f2; }
.wsc-share-fb:hover { background: rgba(24,119,242,0.15); color: #1877f2; }
.wsc-share-reddit  { color: #ff4500; }
.wsc-share-reddit:hover { background: rgba(255,69,0,0.15); color: #ff4500; }

/* ============================================================
   FOOTER
   ============================================================ */
/* tw-foot override: site.css uses position:absolute for its own layout — reset to normal flow here */
.tw-foot {
  position: relative !important;
  bottom: auto !important;
  height: auto !important;
  margin-bottom: 0 !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .wsc-hero-date-item { padding: 12px 20px; }
  .wsc-side-col { padding-left: 15px; margin-top: 32px; }
  .wsc-timeline-track::before { display: none; }
  .wsc-timeline-track {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    margin-top: 40px;
  }
  .wsc-timeline-item {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    min-width: 0;
  }
  .wsc-timeline-dot { margin-bottom: 14px; }
  .wsc-timeline-content { align-items: center; text-align: center; }
  /* short connecting segment between items: text → line → dot → text */
  .wsc-timeline-item:not(:last-child)::after {
    content: '';
    width: 2px;
    height: 36px;
    margin: 16px 0;
    background: linear-gradient(to bottom, var(--gold-dark), rgba(217,185,112,0.12));
  }
}

@media (max-width: 767px) {
  .wsc-hero-content { padding: 100px 16px 80px; }
  .wsc-hero-dates { flex-direction: column; align-items: center; }
  .wsc-hero-date-divider { display: none; }
  .wsc-hero-date-item {
    border-radius: 0;
    border-width: 1px;
    width: 100%;
    max-width: 280px;
  }
  .wsc-contest-section-header { flex-direction: column; }
  .wsc-contest-section { padding: 60px 0; }
  .wsc-intro { padding: 60px 0; }
  .wsc-contests { padding: 60px 0; }
  .wsc-timeline { padding: 60px 0; }
}

@media (max-width: 480px) {
  .wsc-highlight-item { width: 100%; justify-content: center; }
  .wsc-hero-cta { flex-direction: column; align-items: center; }
  .wsc-hero-cta .btn-cstm-lg,
  .wsc-hero-cta .btn-outline { width: 260px; justify-content: center; }
}

/* ============================================================
   STICKY SECTION NAV (in-page)
   ============================================================ */
.wsc-subnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,12,12,0.96);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.wsc-subnav-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100%;
  margin: 0 auto;
}
.wsc-subnav-inner::-webkit-scrollbar { display: none; }

.wsc-subnav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}

.wsc-subnav-link:hover,
.wsc-subnav-link.active {
  color: #fff;
  text-decoration: none;
}

.wsc-subnav-link-mod.active,    .wsc-subnav-link-mod:hover    { border-bottom-color: #9b7fe0; color: #9b7fe0; }
.wsc-subnav-link-scene.active,  .wsc-subnav-link-scene:hover  { border-bottom-color: #3a9fc7; color: #3a9fc7; }
.wsc-subnav-link-3dart.active,  .wsc-subnav-link-3dart:hover  { border-bottom-color: var(--orange); color: var(--orange); }

@media (max-width: 767px) {
  .wsc-subnav-inner {
    justify-content: center;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .wsc-subnav-link {
    padding: 12px 16px;
    font-size: 11px;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .wsc-subnav-link i {
    display: none;
  }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.wsc-back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), background var(--transition);
  z-index: 999;
  border: none;
  border-radius: var(--radius);
}
.wsc-back-top.visible { opacity: 1; pointer-events: auto; }
.wsc-back-top:hover { background: var(--orange-dark); }

/* ============================================================
   COMMUNITY VOTING PRIZES
   ============================================================ */

/* Sidebar — community vote prize row */
.wsc-prize-community { border-left-color: #2dc7a7; margin-top: 4px; }
.wsc-prize-community .wsc-prize-rank { color: #2dc7a7; }
.wsc-prize-community .wsc-prize-rank i { margin-right: 6px; font-size: 12px; }
.wsc-prize-community .wsc-prize-val { color: #2dc7a7; font-style: normal; }

/* Overview — community vote subsection */
.wsc-cvote-section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border-subtle);
}

.wsc-cvote-label { color: #2dc7a7 !important; }

.wsc-cvote-intro {
  max-width: 600px;
  margin: 0 auto 14px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.wsc-cvote-row { margin-top: 8px; }

.wsc-cvote-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid #2dc7a7;
  padding: 28px 20px 24px;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 24px;
  text-align: center;
}

.wsc-cvote-card-mod   { border-top-color: #7a5fc7; }
.wsc-cvote-card-scene { border-top-color: #3a9fc7; }
.wsc-cvote-card-3dart { border-top-color: var(--orange); }

.wsc-cvote-card-icon {
  font-size: 20px;
  color: #2dc7a7;
  margin-bottom: 12px;
}

.wsc-cvote-card-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 6px;
}

.wsc-cvote-card-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2dc7a7;
  margin-bottom: 16px;
}

.wsc-cvote-card-prize {
  font-family: var(--font-main);
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
  line-height: 1;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.wsc-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(18, 18, 18, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 2px solid var(--orange);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.wsc-consent.visible { transform: translateY(0); }

.wsc-consent[hidden] { display: none; }

.wsc-consent-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.wsc-consent-text { flex: 1 1 auto; }

.wsc-consent-title {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 0 8px;
}

.wsc-consent-title i {
  color: var(--orange);
  margin-right: 8px;
}

.wsc-consent-text p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 6px;
}

.wsc-consent-links { font-size: 12.5px !important; }

.wsc-consent-text a {
  color: var(--orange);
  text-decoration: underline;
}

.wsc-consent-text a:hover { color: var(--orange-alt); }

.wsc-consent-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
}

/* Equal visual weight for Accept and Reject (GDPR requirement) */
.wsc-consent-btn {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 26px;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  border: 1px solid var(--orange);
}

.wsc-consent-accept {
  background: var(--orange);
  color: #fff;
}

.wsc-consent-accept:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.wsc-consent-reject {
  background: transparent;
  color: var(--orange);
}

.wsc-consent-reject:hover {
  background: rgba(241, 117, 27, 0.12);
}

.wsc-consent-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Footer "Cookie Settings" link sits next to Privacy Policy */
.tw-foot .legal #cookieSettingsLink { margin-left: 18px; }

@media (max-width: 860px) {
  .wsc-consent-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px 16px;
    max-height: 80vh;
    overflow-y: auto;
  }
  .wsc-consent-actions { flex-direction: column-reverse; }
  .wsc-consent-btn { width: 100%; padding: 13px 20px; }
}
