:root {
  --sss-primary: #6b0f1a;
  --sss-primary-strong: #8b0000;
  --sss-secondary: #0d0d0d;
  --sss-secondary-soft: #1a1a1a;
  --sss-accent: #ffd700;
  --sss-accent-soft: #f5a623;
  --sss-text: #ffffff;
  --sss-muted: #b0b0b0;
  --sss-light: #f5f5f5;
  --sss-border: rgba(255, 255, 255, 0.14);
  --sss-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  --sss-radius-card: 8px;
  --sss-radius-btn: 4px;
  --sss-header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--sss-text);
  background: var(--sss-secondary);
}

body.sss-no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.sss-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sss-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--sss-header-height);
  display: flex;
  align-items: center;
  transition: height 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.sss-header.is-scrolled {
  --sss-header-height: 60px;
  background: rgba(13, 13, 13, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.sss-header .sss-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sss-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }
  
.sss-brand img {
    width: auto;
    display: block;
  }

.sss-brand-mark {
    height: 48px;
    flex: 0 0 auto;
  }

.sss-brand-wordmark {
    height: 34px;
    flex: 0 1 auto;
    max-width: min(240px, 36vw);
    object-fit: contain;
  }

.sss-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.sss-nav a,
.sss-drawer-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.sss-nav a::after,
.sss-drawer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--sss-accent), transparent);
  transition: transform 0.25s ease;
}

.sss-nav a:hover,
.sss-drawer-nav a:hover {
  color: var(--sss-accent);
}

.sss-nav a:hover::after,
.sss-drawer-nav a:hover::after {
  transform: scaleX(1);
}

.sss-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sss-register,
.sss-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--sss-radius-btn);
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.sss-register {
  min-height: 44px;
  padding: 0 18px;
  background: var(--sss-accent);
  color: var(--sss-secondary);
}

.sss-register:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.sss-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.sss-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--sss-text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sss-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.sss-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sss-drawer-panel {
  width: min(340px, 88vw);
  height: 100%;
  padding: 24px;
  background: linear-gradient(180deg, rgba(107, 15, 26, 0.96), rgba(13, 13, 13, 0.98));
  box-shadow: var(--sss-shadow);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.sss-drawer.is-open .sss-drawer-panel {
  transform: translateX(0);
}

.sss-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.sss-drawer-top span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}

.sss-drawer-close {
  border: 0;
  background: transparent;
  color: var(--sss-text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.sss-drawer-nav {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}

.sss-register-mobile {
  width: 100%;
  min-height: 48px;
}

.sss-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, #4f0913 0%, #6b0f1a 42%, #56121b 100%);
}

.sss-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 40%),
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.24), transparent 35%),
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.3), transparent 30%),
    radial-gradient(circle at bottom center, rgba(0, 0, 0, 0.35), transparent 42%);
}

.sss-binary-rain,
.sss-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sss-binary-rain {
  overflow: hidden;
  opacity: 1;
}

.sss-binary-column {
  position: absolute;
  top: -120%;
  display: block;
  width: 22px;
  color: rgba(255, 250, 240, 0.5);
  text-shadow: 0 0 10px rgba(255, 244, 214, 0.22);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.35;
  text-align: center;
  white-space: break-spaces;
  animation: sss-binary-fall linear infinite;
}

.sss-hero-glow {
  background:
    radial-gradient(circle at center, rgba(255, 215, 0, 0.12), transparent 28%),
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.08), transparent 40%);
}

.sss-hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding-top: 152px;
  padding-bottom: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sss-reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: sss-fade-up 0.8s ease forwards;
}

.sss-hero-badge {
  margin-bottom: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.sss-hero-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
}

.sss-hero-title span {
  display: block;
}

.sss-hero-theme {
  width: min(680px, 80%);
  margin: 22px 0 0;
  color: rgba(255, 248, 214, 0.96);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  display: inline-flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.sss-hero-small{
    margin-top: 18px;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.18em;
}
.sss-countdown {
  width: min(500px, 80%);
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sss-count-card {
  padding: 20px 16px;
  border: 1px solid rgba(255, 215, 0, 0.22);
  border-radius: var(--sss-radius-card);
  background: rgba(13, 13, 13, 0.38);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 32px rgba(255, 215, 0, 0.06);
  animation: sss-box-pulse 3.2s ease-in-out infinite;
}

.sss-count-card strong {
  display: block;
  font-family:  sans-serif;
  font-size: clamp(1rem, 2vw, 2rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
}

.sss-count-card span {
  display: block;
  margin-top: 10px;
  color: var(--sss-muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.sss-event-meta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
}

.sss-event-meta div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.96);
}

.sss-inline-icon,
.sss-activity-icon i,
.sss-coming-soon-icon i,
.sss-prize-icon i,
.sss-contact-icon i,
.sss-edition-play i,
.sss-social-links i,
.sss-footer-socials i,
.sss-contact-badge i {
  line-height: 1;
}

.sss-inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.sss-hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
    margin-bottom: 50px;

}

.sss-btn {
  min-width: 170px;
  min-height: 52px;
  padding: 0 22px;
  font-size: 0.98rem;
}

.sss-btn-primary {
  background: var(--sss-accent);
  color: var(--sss-secondary);
  box-shadow: 0 0 0 rgba(255, 215, 0, 0.4);
  animation: sss-register-pulse 2.8s ease-in-out infinite;
}

.sss-btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.sss-btn-secondary {
  border-color: rgba(255, 255, 255, 0.78);
  background: transparent;
  color: var(--sss-text);
}

.sss-btn-secondary:hover {
  background: var(--sss-text);
  color: var(--sss-secondary);
}

.sss-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 56px;
}

.sss-scroll-indicator span {
  width: 16px;
  height: 16px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  animation: sss-bounce 1.8s ease-in-out infinite;
}

.sss-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}

.sss-hero-wave svg {
  display: block;
  width: 100%;
  height: 110px;
}

.sss-hero-wave path {
  fill: var(--sss-light);
}

.sss-section {
  padding: 60px 0;
}

.sss-section-light {
  background: var(--sss-light);
  color: var(--sss-secondary);
}

.sss-section-dark {
  background: linear-gradient(180deg, #121212 0%, #1b1b1b 100%);
}

.sss-section-copy {
  max-width: 820px;
}

.sss-section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.sss-heading-accent {
  width: 88px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sss-primary-strong), rgba(107, 15, 26, 0.25));
}

.sss-kicker {
  margin: 0 0 14px;
  color: var(--sss-primary-strong);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.sss-section-heading h2,
.sss-section-copy h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: clamp(3.8rem, 6vw, 6.6rem);
  margin: 0;

}

.sss-section-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.sss-section-copy p {
  margin: 18px 0 0;
  max-width: 660px;
  color: inherit;
  opacity: 0.78;
  font-size: 1rem;
  line-height: 1.8;
}

.sss-section-intro {
  margin: 18px 0 0;
  max-width: 760px;
  color: rgba(13, 13, 13, 0.76);
  font-size: 1rem;
  line-height: 1.8;
}

.sss-theme-reel {
  padding-top: 72px;
  background:
    radial-gradient(circle at top center, rgba(107, 15, 26, 0.05), transparent 26%),
    var(--sss-light);
}

.sss-theme-reel-wrap {
  max-width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  text-align: center;
}

.sss-theme-reel-frame {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(107, 15, 26, 0.08);
  box-shadow: 0 18px 42px rgba(18, 18, 18, 0.08);
}

.sss-theme-reel-frame iframe,
.sss-theme-reel-frame video {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  border-radius: 12px;
}

.sss-theme-reel-caption {
  margin: 18px auto 0;
  max-width: 620px;
  color: rgba(13, 13, 13, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.sss-about {
  position: relative;
}

.sss-about-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

.sss-about-card {
  padding: 0;
  border: 1px solid rgba(107, 15, 26, 0.12);
  border-radius: var(--sss-radius-card);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(18, 18, 18, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.sss-about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(18, 18, 18, 0.12);
  border-color: rgba(107, 15, 26, 0.22);
}

.sss-about-split {
  display: grid;
  grid-template-rows: 220px 1fr;
}

.sss-about-feature {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  min-height: 320px;
}

.sss-about-media {
  position: relative;
  min-height: 100%;
  background: linear-gradient(135deg, rgba(107, 15, 26, 0.12), rgba(255, 215, 0, 0.08));
}

.sss-about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.04), rgba(13, 13, 13, 0.18));
}

.sss-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sss-about-copy {
  padding: 28px 24px;
}

.sss-about-card h3 {
  margin: 0 0 14px;
  color: var(--sss-primary);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.sss-about-card p {
  margin: 0;
  color: rgba(13, 13, 13, 0.78);
  font-size: 0.98rem;
  line-height: 1.82;
}

.sss-stats-bar {
  position: relative;
  overflow: hidden;
  padding: 34px 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%),
    linear-gradient(180deg, #5a0c16 0%, #6b0f1a 100%);
}

.sss-stats-bar::before {
  content: "101001 01011 11001 01010 10110 00111 10010 01101 10101 01010";
  position: absolute;
  inset: 0;
  color: rgba(255, 255, 255, 0.05);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  pointer-events: none;
}

.sss-stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.sss-stat-card {
  padding: 18px 24px;
  text-align: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.sss-stat-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.sss-stat-card.is-visible {
  animation: sss-stat-float 3.4s ease-in-out infinite;
}

.sss-stat-number {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--sss-accent);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.sss-stat-card span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.sss-stat-card:nth-child(2) { animation-delay: 0.12s; }
.sss-stat-card:nth-child(3) { animation-delay: 0.24s; }
.sss-stat-card:nth-child(4) { animation-delay: 0.36s; }

.sss-activities {
  background:
    radial-gradient(circle at top right, rgba(107, 15, 26, 0.06), transparent 20%),
    var(--sss-light);
}

.sss-activity-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sss-activity-marquee::-webkit-scrollbar {
  display: none;
}

.sss-activity-track {
  --sss-marquee-distance: 0px;
  display: flex;
  gap: 22px;
  width: max-content;
  animation: sss-marquee 95s linear infinite;
}

.sss-activity-marquee:hover .sss-activity-track {
  animation-play-state: paused;
}

.sss-activity-card {
  flex: 0 0 320px;
  padding: 26px 24px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(107, 15, 26, 0.08);
  box-shadow: 0 18px 45px rgba(18, 18, 18, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sss-activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(18, 18, 18, 0.12);
  border-color: rgba(107, 15, 26, 0.18);
}

.sss-activity-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(107, 15, 26, 0.12), rgba(255, 215, 0, 0.24));
  color: var(--sss-primary);
  font-size: 1.55rem;
  box-shadow: inset 0 0 0 1px rgba(107, 15, 26, 0.08);
}

.sss-activity-icon i {
  font-size: 1.4rem;
}

.sss-activity-card h3 {
  margin: 0 0 12px;
  color: var(--sss-secondary);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.sss-activity-card p {
  margin: 0;
  color: rgba(13, 13, 13, 0.74);
  font-size: 0.97rem;
  line-height: 1.78;
}

.sss-activity-card:nth-child(2) { transition-delay: 0.04s; }
.sss-activity-card:nth-child(3) { transition-delay: 0.08s; }
.sss-activity-card:nth-child(4) { transition-delay: 0.12s; }
.sss-activity-card:nth-child(5) { transition-delay: 0.16s; }
.sss-activity-card:nth-child(6) { transition-delay: 0.2s; }
.sss-activity-card:nth-child(7) { transition-delay: 0.24s; }
.sss-activity-card:nth-child(8) { transition-delay: 0.28s; }
.sss-activity-card:nth-child(9) { transition-delay: 0.32s; }
.sss-activity-card:nth-child(10) { transition-delay: 0.36s; }
.sss-activity-card:nth-child(11) { transition-delay: 0.4s; }

.sss-speakers {
  background:
    radial-gradient(circle at top left, rgba(107, 15, 26, 0.05), transparent 24%),
    #f2f2f2;
}

.sss-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.sss-tab {
  padding: 12px 18px;
  border: 1px solid rgba(107, 15, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(13, 13, 13, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sss-tab:hover {
  border-color: rgba(107, 15, 26, 0.24);
  color: var(--sss-primary);
}

.sss-tab.is-active {
  background: var(--sss-primary);
  border-color: var(--sss-primary);
  color: var(--sss-text);
  box-shadow: 0 14px 32px rgba(107, 15, 26, 0.2);
}

.sss-tab-panels {
  min-height: 300px;
}

.sss-tab-panel {
  animation: sss-fade-up 0.45s ease;
}

.sss-coming-soon {
  padding: 26px 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(107, 15, 26, 0.1);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 229, 0.96));
  box-shadow: 0 18px 44px rgba(18, 18, 18, 0.08);
  text-align: center;
}

.sss-coming-soon-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(107, 15, 26, 0.12), rgba(255, 215, 0, 0.26));
  font-size: 2rem;
  animation: sss-soft-pulse 2.4s ease-in-out infinite;
}

.sss-coming-soon-icon i {
  font-size: 2rem;
}

.sss-coming-soon h3 {
  margin: 0;
  color: var(--sss-secondary);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.3rem;
  letter-spacing: 0.03em;
}

.sss-coming-soon p {
  max-width: 660px;
  margin: 10px auto 0;
  color: rgba(13, 13, 13, 0.7);
  line-height: 1.7;
}

.sss-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sss-placeholder-card {
  padding: 24px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(107, 15, 26, 0.08);
  box-shadow: 0 16px 38px rgba(18, 18, 18, 0.06);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sss-placeholder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(18, 18, 18, 0.1);
}

.sss-placeholder-avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.95) 0 22%, transparent 23%),
    radial-gradient(circle at 50% 92%, rgba(255, 255, 255, 0.95) 0 34%, transparent 35%),
    linear-gradient(135deg, rgba(107, 15, 26, 0.26), rgba(255, 215, 0, 0.28));
  animation: sss-soft-pulse 2.6s ease-in-out infinite;
}

.sss-placeholder-card h4 {
  margin: 0;
  color: var(--sss-secondary);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
}

.sss-placeholder-card p {
  margin: 8px 0 0;
  color: rgba(13, 13, 13, 0.62);
  font-size: 0.94rem;
}

.sss-schedule {
  background:
    radial-gradient(circle at top right, rgba(107, 15, 26, 0.05), transparent 24%),
    #fbfbfb;
}

.sss-schedule-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.sss-calendar-card {
  padding: 22px;
  border: 1px solid rgba(107, 15, 26, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(18, 18, 18, 0.06);
  position: sticky;
  top: 92px;
}

.sss-calendar-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}

.sss-calendar-head span {
  color: var(--sss-primary);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.sss-calendar-head strong {
  color: rgba(13, 13, 13, 0.62);
  font-size: 1rem;
}

.sss-calendar-weekdays,
.sss-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.sss-calendar-weekdays {
  margin-bottom: 10px;
}

.sss-calendar-weekdays span {
  color: rgba(13, 13, 13, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.sss-calendar-grid span {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: rgba(13, 13, 13, 0.8);
  font-size: 0.92rem;
  font-weight: 700;
}

.sss-calendar-grid .is-muted {
  color: rgba(13, 13, 13, 0.34);
}

.sss-calendar-grid .is-highlight {
  background: rgba(107, 15, 26, 0.1);
  color: var(--sss-primary);
}

.sss-calendar-grid .is-selected {
  background: var(--sss-primary);
  color: var(--sss-text);
  box-shadow: 0 10px 24px rgba(107, 15, 26, 0.22);
}

.sss-schedule-tabs {
  margin-bottom: 24px;
}

.sss-day-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.sss-day-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(107, 15, 26, 0.1);
  color: var(--sss-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sss-day-intro h3 {
  margin: 0;
  color: var(--sss-secondary);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
}

.sss-timeline {
  position: relative;
  display: grid;
  gap: 20px;
}

.sss-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 84px;
  width: 2px;
  background: linear-gradient(180deg, rgba(107, 15, 26, 0.3), rgba(107, 15, 26, 0.08));
}

.sss-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.sss-timeline-time {
  position: relative;
  z-index: 1;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--sss-primary);
  color: var(--sss-text);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 24px rgba(107, 15, 26, 0.2);
}

.sss-timeline-card {
  padding: 18px 20px;
  border: 1px solid rgba(107, 15, 26, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 36px rgba(18, 18, 18, 0.06);
}

.sss-timeline-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 10px;
}

.sss-timeline-top h4 {
  margin: 0;
  color: var(--sss-secondary);
  font-size: 1.08rem;
  font-weight: 800;
}

.sss-timeline-card p {
  margin: 0;
  color: rgba(13, 13, 13, 0.66);
  line-height: 1.7;
}

.sss-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sss-tag-logistics { background: rgba(125, 125, 125, 0.14); color: #555; }
.sss-tag-entertainment { background: rgba(120, 73, 191, 0.14); color: #6a35b5; }
.sss-tag-awards { background: rgba(245, 166, 35, 0.18); color: #b87300; }
.sss-tag-hackathon { background: rgba(37, 99, 235, 0.14); color: #1f57c3; }
.sss-tag-conference { background: rgba(107, 15, 26, 0.14); color: var(--sss-primary); }
.sss-tag-break { background: rgba(40, 167, 69, 0.14); color: #1f8a39; }

.sss-schedule-placeholder {
  padding: 36px 28px;
  border: 1px solid rgba(107, 15, 26, 0.1);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 247, 0.96));
  box-shadow: 0 18px 44px rgba(18, 18, 18, 0.06);
  text-align: center;
}

.sss-schedule-placeholder h3 {
  margin: 0;
  color: var(--sss-secondary);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
}

.sss-schedule-placeholder p {
  max-width: 620px;
  margin: 10px auto 0;
  color: rgba(13, 13, 13, 0.66);
  line-height: 1.7;
}

.sss-clubs {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(135deg, #5a0c16 0%, #6b0f1a 52%, #4f0913 100%);
  color: var(--sss-text);
}

.sss-section-intro-light {
  color: rgba(255, 255, 255, 0.78);
}

.sss-clubs .sss-kicker {
  color: rgba(255, 215, 0, 0.82);
}

.sss-clubs .sss-heading-accent {
  background: linear-gradient(90deg, var(--sss-accent), rgba(255, 255, 255, 0.2));
}

.sss-clubs-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 16px;
max-width: 800px;
margin: 0 auto;
}

.sss-club-card {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--sss-primary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  display: flex;

  padding: 12px 18px;

  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.sss-club-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
  filter: brightness(1.02);
}

.sss-club-card span {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  line-height: 1.05;
}

.sss-club-card.is-placeholder {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
}

.sss-club-card:nth-child(2) { transition-delay: 0.03s; }
.sss-club-card:nth-child(3) { transition-delay: 0.06s; }
.sss-club-card:nth-child(4) { transition-delay: 0.09s; }
.sss-club-card:nth-child(5) { transition-delay: 0.12s; }
.sss-club-card:nth-child(6) { transition-delay: 0.15s; }
.sss-club-card:nth-child(7) { transition-delay: 0.18s; }
.sss-club-card:nth-child(8) { transition-delay: 0.21s; }
.sss-club-card:nth-child(9) { transition-delay: 0.24s; }
.sss-club-card:nth-child(10) { transition-delay: 0.27s; }
.sss-club-card:nth-child(11) { transition-delay: 0.3s; }
.sss-club-card:nth-child(12) { transition-delay: 0.33s; }
.sss-club-card:nth-child(13) { transition-delay: 0.36s; }
.sss-club-card:nth-child(14) { transition-delay: 0.39s; }
.sss-club-card:nth-child(15) { transition-delay: 0.42s; }
.sss-club-card:nth-child(16) { transition-delay: 0.45s; }
.sss-club-card:nth-child(17) { transition-delay: 0.48s; }
.sss-club-card:nth-child(18) { transition-delay: 0.51s; }
.sss-club-card:nth-child(19) { transition-delay: 0.54s; }
.sss-club-card:nth-child(20) { transition-delay: 0.57s; }
.sss-club-card:nth-child(21) { transition-delay: 0.6s; }
.sss-club-card:nth-child(22) { transition-delay: 0.63s; }
.sss-club-card:nth-child(23) { transition-delay: 0.66s; }
.sss-club-card:nth-child(24) { transition-delay: 0.69s; }

.sss-prizes {
  background:
    radial-gradient(circle at top center, rgba(255, 215, 0, 0.08), transparent 22%),
    var(--sss-light);
}

.sss-prizes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sss-prize-card {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  padding: 22px 20px;
  border: 1px solid rgba(245, 166, 35, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 235, 0.96));
  box-shadow: 0 18px 42px rgba(18, 18, 18, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sss-prize-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 50%;
  height: 260%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: rotate(18deg);
  transition: transform 0.6s ease;
}

.sss-prize-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 166, 35, 0.34);
  box-shadow: 0 24px 58px rgba(18, 18, 18, 0.12);
}

.sss-prize-card:hover::before {
  transform: translateX(220%) rotate(18deg);
}

.sss-prize-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.26), rgba(245, 166, 35, 0.14));
  color: #b87300;
  font-size: 1.65rem;
  box-shadow: inset 0 0 0 1px rgba(245, 166, 35, 0.18);
  animation: sss-shine-pulse 2.8s ease-in-out infinite;
}

.sss-prize-icon i {
  font-size: 1.55rem;
}

.sss-prize-card h3 {
  margin: 0 0 10px;
  color: var(--sss-secondary);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.sss-prize-card p {
  margin: 0;
  color: rgba(13, 13, 13, 0.7);
  font-size: 0.94rem;
  line-height: 1.65;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sss-prize-card:hover p {
  transform: translateY(-2px);
}

.sss-prize-card:nth-child(2) { transition-delay: 0.04s; }
.sss-prize-card:nth-child(3) { transition-delay: 0.08s; }
.sss-prize-card:nth-child(4) { transition-delay: 0.12s; }
.sss-prize-card:nth-child(5) { transition-delay: 0.16s; }
.sss-prize-card:nth-child(6) { transition-delay: 0.2s; }

.sss-heading-highlight {
  color: var(--sss-primary);
}

.sss-editions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sss-edition-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 24px;
  border-radius: 18px;
  color: var(--sss-text);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 56px rgba(18, 18, 18, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sss-edition-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.5));
  z-index: 0;
}

.sss-edition-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(18, 18, 18, 0.2);
}

.sss-edition-card:hover .sss-edition-overlay {
  transform: scale(1.08);
}

.sss-edition-overlay,
.sss-edition-media,
.sss-edition-top,
.sss-edition-body {
  position: relative;
  z-index: 1;
}

.sss-edition-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.sss-edition-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.sss-edition-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.45s ease;
}

.sss-edition-tourism .sss-edition-overlay {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 215, 0, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.1), rgba(13, 13, 13, 0.58));
}

.sss-edition-sports .sss-edition-overlay {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(107, 15, 26, 0.42)),
    linear-gradient(180deg, #173a73, #0f1f40);
}

.sss-edition-education .sss-edition-overlay {
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 215, 0, 0.2), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(107, 15, 26, 0.38)),
    linear-gradient(180deg, #4f2e69, #22142f);
}

.sss-edition-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sss-edition-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.sss-edition-play {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-size: 1.05rem;
}

.sss-edition-body p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sss-edition-body h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.2rem;
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.sss-edition-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sss-edition-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--sss-accent);
  color: var(--sss-secondary);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.25s ease, filter 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.sss-edition-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.sss-edition-btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--sss-text);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.sss-edition-card:nth-child(2) { transition-delay: 0.05s; }
.sss-edition-card:nth-child(3) { transition-delay: 0.1s; }

.sss-venue-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.sss-venue-map,
.sss-venue-info {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(107, 15, 26, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(18, 18, 18, 0.08);
}

.sss-venue-map {
  min-height: 460px;
}

.sss-venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
}

.sss-venue-info {
  padding: 28px;
}

.sss-venue-label {
  margin: 0 0 10px;
  color: var(--sss-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sss-venue-info h3 {
  margin: 0;
  color: var(--sss-secondary);
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.sss-venue-location {
  margin: 10px 0 0;
  color: var(--sss-primary);
  font-size: 1.05rem;
  font-weight: 700;
}

.sss-venue-address {
  margin: 16px 0 0;
  color: rgba(13, 13, 13, 0.7);
  line-height: 1.8;
}

.sss-venue-points {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.sss-venue-points article {
  padding: 16px 16px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(107, 15, 26, 0.04), rgba(255, 215, 0, 0.06));
  border: 1px solid rgba(107, 15, 26, 0.08);
}

.sss-venue-points strong {
  display: block;
  color: var(--sss-secondary);
  font-size: 0.98rem;
  font-weight: 800;
}

.sss-venue-points p {
  margin: 8px 0 0;
  color: rgba(13, 13, 13, 0.68);
  line-height: 1.7;
}

.sss-venue-cta {
  margin-top: 22px;
  min-width: 190px;
}

.sss-faq {
  background:
    radial-gradient(circle at top center, rgba(107, 15, 26, 0.05), transparent 18%),
    #f7f7f7;
}

.sss-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.sss-faq-item {
  border: 1px solid rgba(107, 15, 26, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(18, 18, 18, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.sss-faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(107, 15, 26, 0.16);
}

.sss-faq-item.is-open {
  border-color: rgba(107, 15, 26, 0.26);
  box-shadow: 0 20px 46px rgba(18, 18, 18, 0.08);
}

.sss-faq-trigger {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--sss-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.sss-faq-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(107, 15, 26, 0.08);
  color: var(--sss-primary);
  font-size: 1.15rem;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.sss-faq-item.is-open .sss-faq-icon {
  transform: rotate(45deg);
  background: var(--sss-primary);
  color: var(--sss-text);
}

.sss-faq-panel {
  padding: 0 22px 20px;
}

.sss-faq-panel p {
  margin: 0;
  color: rgba(13, 13, 13, 0.68);
  line-height: 1.75;
}

.sss-contact {
  background:
    radial-gradient(circle at top center, rgba(255, 215, 0, 0.08), transparent 18%),
    linear-gradient(135deg, #5a0c16 0%, #6b0f1a 50%, #4a0811 100%);
  color: var(--sss-text);
}

.sss-contact-hero {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.sss-contact-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.14);
  color: var(--sss-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sss-contact-hero h2 {
  margin: 18px 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.4rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.sss-contact-hero p {
  margin: 16px auto 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.8;
}

.sss-contact-hero strong {
  display: block;
  margin-top: 16px;
  color: rgba(255, 248, 214, 0.96);
  font-size: 1rem;
  font-weight: 700;
}

.sss-contact-register {
  margin-top: 26px;
  min-width: 210px;
}

.sss-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sss-contact-card {
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  text-align: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.sss-contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.14);
  font-size: 1.7rem;
}

.sss-contact-icon i {
  font-size: 1.5rem;
}

.sss-contact-card h3 {
  margin: 0 0 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.sss-contact-card a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}

.sss-contact-card a:hover {
  color: var(--sss-accent);
}

.sss-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.sss-social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.1rem;
  font-weight: 800;
}

.sss-social-links a:hover {
  transform: translateY(-2px) scale(1.06);
  background: rgba(255, 215, 0, 0.18);
}

.sss-social-copy {
  display: grid;
  gap: 8px;
}

.sss-footer {
  padding: 56px 0 24px;
  background: #0d0d0d;
  color: var(--sss-text);
}

.sss-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.sss-footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.sss-footer-logo img {
  width: 140px;
  height: auto;
}

.sss-footer-logo strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.sss-footer-logo span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.95rem;
}

.sss-footer-links h3,
.sss-footer-connect h3 {
  margin: 0 0 16px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.05em;
}

.sss-footer-links {
  display: grid;
  gap: 10px;
}

.sss-footer-links a,
.sss-footer-connect a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.25s ease, transform 0.25s ease;
}

.sss-footer-links a:hover,
.sss-footer-connect a:hover {
  color: var(--sss-primary-strong);
}

.sss-footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sss-footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.sss-footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 0, 0, 0.48);
  background: rgba(107, 15, 26, 0.18);
}

.sss-footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sss-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.7;
}

.sss-back-to-top {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--sss-text);
  font-size: 1.1rem;
}

.sss-back-to-top:hover {
  background: rgba(255, 215, 0, 0.12);
  color: var(--sss-accent);
}

.sss-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.sss-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sss-hero-badge { animation-delay: 0.12s; }
.sss-hero-title { animation-delay: 0.28s; }
.sss-hero-theme { animation-delay: 0.46s; }
.sss-countdown { animation-delay: 0.64s; }
.sss-event-meta { animation-delay: 0.82s; }
.sss-hero-actions { animation-delay: 1s; }

@keyframes sss-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sss-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--sss-marquee-distance)));
  }
}

@keyframes sss-binary-fall {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(240vh);
  }
}

@keyframes sss-box-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 24px rgba(255, 215, 0, 0.06);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 40px rgba(255, 215, 0, 0.12);
  }
}

@keyframes sss-stat-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes sss-register-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.22);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(255, 215, 0, 0);
  }
}

@keyframes sss-bounce {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.8;
  }
  50% {
    transform: rotate(45deg) translate(6px, 6px);
    opacity: 1;
  }
}

@keyframes sss-soft-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.14);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }
}

@keyframes sss-shine-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: inset 0 0 0 1px rgba(245, 166, 35, 0.18), 0 0 0 0 rgba(255, 215, 0, 0.2);
  }
  50% {
    transform: scale(1.03);
    box-shadow: inset 0 0 0 1px rgba(245, 166, 35, 0.18), 0 0 0 12px rgba(255, 215, 0, 0);
  }
}

@media (max-width: 960px) {
  .sss-nav,
  .desktop-only {
    display: none;
  }

  .sss-menu-toggle {
    display: inline-block;
  }

  .sss-hero-content {
    padding-top: 120px;
  }

  .sss-countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sss-about-top {
    grid-template-columns: 1fr;
  }

  .sss-about-feature {
    grid-template-columns: 1fr;
  }

  .sss-placeholder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sss-schedule-layout {
    grid-template-columns: 1fr;
  }

  .sss-clubs-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sss-prizes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sss-editions-grid {
    grid-template-columns: 1fr;
  }

  .sss-venue-layout {
    grid-template-columns: 1fr;
  }

  .sss-contact-grid {
    grid-template-columns: 1fr;
  }

  .sss-footer-grid {
    grid-template-columns: 1fr;
  }

  .sss-calendar-card {
    position: static;
  }

  .sss-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sss-stat-card:nth-child(2n + 1) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .sss-stat-card:nth-child(2) {
    border-right: 0;
  }

  .sss-stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 640px) {
  .sss-shell {
    width: min(100% - 28px, 1180px);
  }

  .sss-brand-mark {
      height: 40px;
    }

  .sss-brand-wordmark {
      height: 28px;
      max-width: 180px;
    }

  .sss-hero-badge {
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  .sss-hero-theme {
    flex-direction: column;
    gap: 8px;
  }

  .sss-countdown {
    gap: 12px;
  }

  .sss-activity-track {
    animation-duration: 110s;
  }

  .sss-activity-card {
    flex-basis: 280px;
  }

  .sss-tabs {
    flex-direction: column;
  }

  .sss-tab {
    width: 100%;
    text-align: left;
  }

  .sss-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .sss-clubs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sss-prizes-grid {
    grid-template-columns: 1fr;
  }

  .sss-day-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .sss-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .sss-timeline::before {
    left: 50%;
    transform: translateX(-50%);
    top: 24px;
    bottom: 24px;
  }

  .sss-timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sss-timeline-time {
    width: fit-content;
  }

  .sss-count-card {
    padding: 16px 12px;
  }

  .sss-event-meta {
    flex-direction: column;
    gap: 12px;
  }

  .sss-hero-actions {
    width: 100%;
  }

  .sss-btn {
    width: 100%;
  }

  .sss-section {
    padding: 86px 0;
  }

  .sss-stats-bar {
    padding: 24px 0;
  }

  .sss-stat-card {
    padding: 18px 14px;
  }

  .sss-stat-card span {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
