/* ============================================
   BREBES BERES RUN 2026 — IDDS Design System
   Using INA Digital Design System tokens
   ============================================ */

:root {
  /* Brand Colors (Brebes event identity) */
  --bbr-primary: #0956c3;      /* INAgov Blue-500 */
  --bbr-primary-dark: #083575; /* Blue-700 */
  --bbr-primary-light: #ebf3ff; /* Blue-100 */
  --bbr-accent: #f66a09;       /* Orange-500 */
  --bbr-accent-light: #fff3eb; /* Orange-100 */
  --bbr-success: #00b925;      /* Green-600 */
  
  /* IDDS Neutral */
  --bbr-bg: #fff;
  --bbr-bg-alt: #f8f8f7;
  --bbr-bg-tertiary: #f5f5f5;
  --bbr-text: #1f1f1f;
  --bbr-text-secondary: #525252;
  --bbr-text-tertiary: #a3a3a3;
  --bbr-stroke: #e5e5e5;
  --bbr-stroke-strong: #d4d4d4;
  
  /* Spacing */
  --bbr-space-xs: 4px;
  --bbr-space-sm: 8px;
  --bbr-space-md: 16px;
  --bbr-space-lg: 24px;
  --bbr-space-xl: 32px;
  --bbr-space-2xl: 48px;
  --bbr-space-3xl: 64px;
  --bbr-space-4xl: 96px;
  
  /* Radius (IDDS) */
  --bbr-radius-sm: 0.375rem;
  --bbr-radius-md: 0.5rem;
  --bbr-radius-lg: 0.75rem;
  --bbr-radius-xl: 1rem;
  
  /* Shadows (IDDS) */
  --bbr-shadow-sm: 0 0.0625rem 0.125rem rgba(10,13,18,0.06), 0 0.0625rem 0.1875rem rgba(10,13,18,0.1);
  --bbr-shadow-md: 0 0.25rem 0.375rem -0.125rem rgba(10,13,18,0.03), 0 0.75rem 1rem -0.25rem rgba(10,13,18,0.08);
  --bbr-shadow-lg: 0 0.5rem 1rem -0.25rem rgba(10,13,18,0.08), 0 1.5rem 2rem -0.5rem rgba(10,13,18,0.12);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--bbr-text);
  background: var(--bbr-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* CONTAINER */
.bbr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--bbr-space-lg);
}

/* LABEL */
.bbr-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bbr-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--bbr-space-sm);
}

/* HEADING */
.bbr-heading {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--bbr-text);
  margin-bottom: var(--bbr-space-xl);
}
.bbr-heading--center { text-align: center; }

/* SECTION */
.bbr-section {
  padding: var(--bbr-space-4xl) 0;
}
.bbr-section--alt {
  background: var(--bbr-bg-alt);
}

/* ============================================
   HEADER
   ============================================ */
.bbr-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.bbr-header--scrolled {
  border-bottom-color: var(--bbr-stroke);
  background: rgba(255,255,255,0.95);
}
.bbr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.bbr-header__brand {
  display: flex;
  align-items: center;
  gap: var(--bbr-space-sm);
}
.bbr-header__logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.bbr-header__title {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--bbr-text);
}
.bbr-header__title small {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--bbr-text-secondary);
}
.bbr-header__nav {
  display: flex;
  gap: var(--bbr-space-xs);
}
.bbr-header__nav a {
  padding: 6px 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--bbr-text-secondary);
  border-radius: var(--bbr-radius-sm);
  transition: all 0.15s ease;
}
.bbr-header__nav a:hover {
  color: var(--bbr-text);
  background: var(--bbr-bg-tertiary);
}
.bbr-header__cta {
  font-size: 0.8125rem;
  padding: 6px 16px;
}
.bbr-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.bbr-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--bbr-text);
  border-radius: 2px;
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .bbr-header__nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bbr-bg);
    border-bottom: 1px solid var(--bbr-stroke);
    padding: var(--bbr-space-md);
    flex-direction: column;
    gap: var(--bbr-space-xs);
    box-shadow: var(--bbr-shadow-lg);
  }
  .bbr-header__nav--open {
    display: flex;
  }
  .bbr-header__nav a {
    padding: 10px 12px;
    font-size: 0.875rem;
  }
  .bbr-header__cta { display: none; }
  .bbr-menu-toggle { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.bbr-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.bbr-hero__bg {
  position: absolute;
  inset: 0;
}
.bbr-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bbr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9,86,195,0.88) 0%,
    rgba(8,53,117,0.75) 40%,
    rgba(0,0,0,0.6) 100%
  );
}
.bbr-hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  color: #fff;
}
.bbr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: var(--bbr-space-lg);
}
.bbr-hero__title {
  margin-bottom: var(--bbr-space-lg);
}
.bbr-hero__title-top {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  opacity: 0.8;
  margin-bottom: -4px;
}
.bbr-hero__title-main {
  display: block;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.bbr-hero__title-sub {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  opacity: 0.9;
}
.bbr-hero__tagline {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.85;
  max-width: 480px;
  margin-bottom: var(--bbr-space-xl);
}
.bbr-hero__actions {
  display: flex;
  gap: var(--bbr-space-md);
  flex-wrap: wrap;
  margin-bottom: var(--bbr-space-3xl);
}
.bbr-hero__actions .ina-ss-btn--primary {
  background: #fff;
  color: var(--bbr-primary);
  border: none;
}
.bbr-hero__actions .ina-ss-btn--primary:hover {
  background: var(--bbr-primary-light);
}
.bbr-hero__actions .ina-ss-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.bbr-hero__actions .ina-ss-btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* COUNTDOWN */
.bbr-countdown {
  display: flex;
  gap: var(--bbr-space-md);
}
.bbr-countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}
.bbr-countdown__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--bbr-radius-md);
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.bbr-countdown__label {
  font-size: 0.6875rem;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .bbr-hero__content { padding: 100px var(--bbr-space-lg) 60px var(--bbr-space-2xl); }
  .bbr-hero__actions { flex-direction: column; gap: var(--bbr-space-sm); }
  .bbr-hero__actions .ina-ss-btn { width: 100%; justify-content: center; }
  .bbr-countdown { gap: var(--bbr-space-sm); }
  .bbr-countdown__num { width: 52px; height: 52px; font-size: 1.25rem; }
}

/* ============================================
   ABOUT
   ============================================ */
.bbr-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bbr-space-3xl);
  align-items: center;
}
.bbr-about__text p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--bbr-text-secondary);
  margin-bottom: var(--bbr-space-xl);
}
.bbr-about__stats {
  display: flex;
  gap: var(--bbr-space-xl);
}
.bbr-about__stat {
  display: flex;
  flex-direction: column;
}
.bbr-about__stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--bbr-primary);
}
.bbr-about__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--bbr-text-tertiary);
}
.bbr-about__visual {
  position: relative;
}
.bbr-about__img {
  border-radius: var(--bbr-radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.bbr-about__tag {
  position: absolute;
  bottom: -16px;
  left: var(--bbr-space-lg);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bbr-bg);
  border: 1px solid var(--bbr-stroke);
  border-radius: var(--bbr-radius-md);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--bbr-text);
  box-shadow: var(--bbr-shadow-md);
}
.bbr-about__tag i {
  color: var(--bbr-primary);
}

@media (max-width: 768px) {
  .bbr-about { grid-template-columns: 1fr; gap: var(--bbr-space-2xl); }
  .bbr-about__visual { order: -1; }
  .bbr-about__stats { gap: var(--bbr-space-lg); }
}

/* ============================================
   CATEGORIES
   ============================================ */
.bbr-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--bbr-space-lg);
  max-width: 720px;
  margin: 0 auto var(--bbr-space-3xl);
}
.bbr-category {
  background: var(--bbr-bg);
  border: 1px solid var(--bbr-stroke);
  border-radius: var(--bbr-radius-xl);
  padding: var(--bbr-space-xl);
  transition: all 0.2s ease;
}
.bbr-category:hover {
  box-shadow: var(--bbr-shadow-lg);
  border-color: var(--bbr-stroke-strong);
}
.bbr-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--bbr-space-md);
}
.bbr-category__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bbr-primary-light);
  color: var(--bbr-primary);
  border-radius: var(--bbr-radius-md);
  font-size: 1.25rem;
}
.bbr-category__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--bbr-primary);
  color: #fff;
}
.bbr-category__price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--bbr-text);
  margin-bottom: var(--bbr-space-md);
}
.bbr-category__price small {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--bbr-text-tertiary);
}
.bbr-category__list {
  display: flex;
  flex-direction: column;
  gap: var(--bbr-space-sm);
  margin-bottom: var(--bbr-space-lg);
}
.bbr-category__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--bbr-text-secondary);
}
.bbr-category__list li i {
  color: var(--bbr-primary);
  font-size: 0.875rem;
}
.bbr-category__cta {
  width: 100%;
  justify-content: center;
}

@media (max-width: 480px) {
  .bbr-categories { grid-template-columns: 1fr; }
}

/* INCLUDES */
.bbr-includes {
  background: var(--bbr-bg);
  border: 1px solid var(--bbr-stroke);
  border-radius: var(--bbr-radius-xl);
  padding: var(--bbr-space-xl);
  max-width: 720px;
  margin: 0 auto;
}
.bbr-includes__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: var(--bbr-space-md);
  display: flex;
  align-items: center;
  gap: 6px;
}
.bbr-includes__title i { color: var(--bbr-accent); }
.bbr-includes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bbr-space-sm);
}
.bbr-includes__grid span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--bbr-text-secondary);
  padding: 6px 0;
}
.bbr-includes__grid span i {
  color: var(--bbr-success);
  font-size: 0.875rem;
}

@media (max-width: 480px) {
  .bbr-includes__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   SCHEDULE / TIMELINE
   ============================================ */
.bbr-sched-tabs {
  justify-content: center;
  margin-bottom: var(--bbr-space-xl);
}
.bbr-timeline {
  max-width: 560px;
  margin: 0 auto;
}
.bbr-timeline--hidden { display: none; }
.bbr-timeline__item {
  display: flex;
  align-items: flex-start;
  gap: var(--bbr-space-md);
  padding-bottom: var(--bbr-space-lg);
  position: relative;
}
.bbr-timeline__item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 59px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: var(--bbr-stroke);
}
.bbr-timeline__time {
  flex-shrink: 0;
  width: 52px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bbr-text-secondary);
  text-align: right;
  padding-top: 2px;
}
.bbr-timeline__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bbr-stroke-strong);
  border: 2px solid var(--bbr-bg);
  box-shadow: 0 0 0 2px var(--bbr-stroke);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.bbr-timeline__item--flag .bbr-timeline__dot {
  background: var(--bbr-primary);
  box-shadow: 0 0 0 2px var(--bbr-primary);
}
.bbr-timeline__content {
  flex: 1;
}
.bbr-timeline__title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bbr-text);
}
.bbr-timeline__item--flag .bbr-timeline__title {
  font-weight: 700;
  color: var(--bbr-primary);
}

/* ============================================
   VENUE
   ============================================ */
.bbr-venue {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--bbr-space-lg);
  background: var(--bbr-bg);
  border: 1px solid var(--bbr-stroke);
  border-radius: var(--bbr-radius-xl);
  overflow: hidden;
}
.bbr-venue__map {
  min-height: 320px;
}
.bbr-venue__info {
  padding: var(--bbr-space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bbr-venue__info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--bbr-space-sm);
}
.bbr-venue__info p {
  font-size: 0.875rem;
  color: var(--bbr-text-secondary);
  margin-bottom: var(--bbr-space-md);
}
.bbr-venue__meta {
  display: flex;
  flex-direction: column;
  gap: var(--bbr-space-sm);
}
.bbr-venue__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--bbr-text-tertiary);
}
.bbr-venue__meta i {
  color: var(--bbr-primary);
}

@media (max-width: 768px) {
  .bbr-venue { grid-template-columns: 1fr; }
  .bbr-venue__map { min-height: 240px; }
}

/* ============================================
   GALLERY
   ============================================ */
.bbr-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bbr-space-md);
}
.bbr-gallery__item {
  position: relative;
  border-radius: var(--bbr-radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.bbr-gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.bbr-gallery__item:hover img {
  transform: scale(1.03);
}
.bbr-gallery__item--tall img {
  height: 100%;
  min-height: 456px;
}
.bbr-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--bbr-space-md);
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .bbr-gallery { grid-template-columns: repeat(2, 1fr); }
  .bbr-gallery__item--tall { grid-column: span 1; }
  .bbr-gallery__item--tall img { min-height: 220px; }
}

/* ============================================
   SPONSORS
   ============================================ */
.bbr-sponsors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--bbr-space-md);
}
.bbr-sponsors__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--bbr-stroke);
  border-radius: var(--bbr-radius-md);
  padding: 12px;
  transition: all 0.15s ease;
  overflow: hidden;
}
.bbr-sponsors__item:hover {
  border-color: var(--bbr-primary);
  box-shadow: 0 2px 12px rgba(27,94,32,0.12);
}

/* ============================================
   CONTACT
   ============================================ */
.bbr-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bbr-space-md);
  max-width: 720px;
  margin: 0 auto;
}
.bbr-contact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--bbr-space-xl);
  background: var(--bbr-bg);
  border: 1px solid var(--bbr-stroke);
  border-radius: var(--bbr-radius-xl);
  text-align: center;
  transition: all 0.2s ease;
}
.bbr-contact__card:hover {
  box-shadow: var(--bbr-shadow-md);
  border-color: var(--bbr-primary);
}
.bbr-contact__card i {
  font-size: 1.5rem;
  color: var(--bbr-primary);
  margin-bottom: var(--bbr-space-sm);
}
.bbr-contact__card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.bbr-contact__card span {
  font-size: 0.8125rem;
  color: var(--bbr-text-secondary);
}

@media (max-width: 480px) {
  .bbr-contact { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.bbr-footer {
  background: var(--bbr-text);
  color: rgba(255,255,255,0.7);
  padding: var(--bbr-space-xl) 0 var(--bbr-space-lg);
}
.bbr-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--bbr-space-md);
}
.bbr-footer__left {
  display: flex;
  align-items: center;
  gap: var(--bbr-space-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.bbr-footer__logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.bbr-footer__right {
  display: flex;
  gap: var(--bbr-space-sm);
}
.bbr-footer__right a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: all 0.15s ease;
}
.bbr-footer__right a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.bbr-footer__copy {
  font-size: 0.75rem;
  text-align: center;
  opacity: 0.5;
}

/* ============================================
   FLOATING WA
   ============================================ */
.bbr-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bbr-success);
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  box-shadow: var(--bbr-shadow-lg);
  transition: all 0.2s ease;
}
.bbr-float:hover {
  transform: scale(1.08);
  box-shadow: 0 0.5rem 1.5rem rgba(0,185,37,0.35);
}

/* ============================================
   INA-SS BUTTON OVERRIDES
   ============================================ */
.ina-ss-btn--primary {
  background: var(--bbr-primary);
  color: #fff;
  border: 1px solid var(--bbr-primary);
}
.ina-ss-btn--primary:hover {
  background: var(--bbr-primary-dark);
}
.ina-ss-btn--outline {
  background: transparent;
  color: var(--bbr-primary);
  border: 1px solid var(--bbr-stroke);
}
.ina-ss-btn--outline:hover {
  border-color: var(--bbr-primary);
  color: var(--bbr-primary);
}
.ina-ss-btn--lg {
  height: 48px;
  padding: 0 24px;
  font-size: 0.9375rem;
  font-weight: 600;
}
.ina-ss-btn--md {
  height: 40px;
  padding: 0 16px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.ina-ss-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--bbr-radius-md);
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
  white-space: nowrap;
}

/* ============================================
   EXPERIENCE
   ============================================ */
.bbr-experience__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--bbr-space-2xl);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--bbr-text-secondary);
}
.bbr-experience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bbr-space-lg);
}
.bbr-experience__card {
  background: var(--bbr-bg);
  border: 1px solid var(--bbr-stroke);
  border-radius: var(--bbr-radius-xl);
  padding: var(--bbr-space-xl);
  transition: all 0.2s ease;
}
.bbr-experience__card:hover {
  box-shadow: var(--bbr-shadow-md);
}
.bbr-experience__card--main {
  border-color: var(--bbr-primary);
  box-shadow: 0 0 0 1px var(--bbr-primary);
}
.bbr-experience__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bbr-bg-tertiary);
  color: var(--bbr-text-secondary);
  border-radius: var(--bbr-radius-md);
  font-size: 1.25rem;
  margin-bottom: var(--bbr-space-md);
}
.bbr-experience__icon--main {
  background: var(--bbr-primary-light);
  color: var(--bbr-primary);
}
.bbr-experience__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--bbr-space-md);
}
.bbr-experience__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bbr-experience__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--bbr-text-secondary);
  line-height: 1.4;
}
.bbr-experience__list li i {
  color: var(--bbr-success);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 768px) {
  .bbr-experience { grid-template-columns: 1fr; }
}

/* ============================================
   MERCHANDISE (Jersey & Medali)
   ============================================ */
.bbr-merch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--bbr-space-xl);
}
.bbr-merch__item {
  background: var(--bbr-bg);
  border: 1px solid var(--bbr-stroke);
  border-radius: var(--bbr-radius-xl);
  overflow: hidden;
  transition: all 0.2s ease;
}
.bbr-merch__item:hover {
  box-shadow: var(--bbr-shadow-lg);
}
.bbr-merch__img {
  background: var(--bbr-bg-tertiary);
  padding: var(--bbr-space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bbr-merch__img img {
  max-height: 280px;
  width: auto;
  object-fit: contain;
}
.bbr-merch__info {
  padding: var(--bbr-space-lg);
}
.bbr-merch__info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--bbr-space-sm);
}
.bbr-merch__info p {
  font-size: 0.8125rem;
  color: var(--bbr-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--bbr-space-md);
}
.bbr-merch__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--bbr-success);
  color: #fff;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.bbr-merch__tag i {
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .bbr-merch { grid-template-columns: 1fr; }
}

/* ============================================
   COMING SOON
   ============================================ */
.bbr-coming-soon {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: var(--bbr-space-3xl) var(--bbr-space-lg);
}
.bbr-coming-soon__icon {
  margin-bottom: var(--bbr-space-xl);
}
.bbr-coming-soon__icon svg {
  opacity: 0.9;
}
.bbr-coming-soon__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bbr-primary);
  margin-bottom: var(--bbr-space-md);
}
.bbr-coming-soon__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--bbr-text-secondary);
  margin-bottom: var(--bbr-space-xl);
}
