/* Base Styles - CCCB Tenim 17 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

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

html, body {
  height: 100%;
  overflow: hidden;
  font-family: var(--font-family);
  background: var(--bg);
  color: var(--fg);
}

/* Viewport wrapper - scales stage to fit */
#viewport {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

/* Stage fixed 1280x720 */
#stage {
  width: var(--stage-w);
  height: var(--stage-h);
  position: relative;
  background: var(--bg);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .06);
}

/* Subtle flares */
#stage::before,
#stage::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

#stage::before {
  top: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(47, 76, 229, .07) 0%, transparent 70%);
}

#stage::after {
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(200, 200, 200, .06) 0%, transparent 70%);
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  padding: var(--pad-top) var(--pad-x) calc(var(--pad-bottom) + 48px);
  display: none;
  flex-direction: column;
  overflow-y: auto;
  z-index: 1;
}

.slide.active {
  display: flex;
}

.wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Typography */
.kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
}

h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
}

h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

ul {
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

li {
  margin: 5px 0;
}

b {
  color: var(--fg);
  font-weight: 600;
}

/* Accents */
.accent {
  color: #2F4CE5;
}

.accent-bg {
  background: rgba(47, 76, 229, .12);
}

.accent-pink {
  color: var(--accent-pink);
}

/* Links */
a {
  color: var(--fg);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Print */
@media print {
  #viewport {
    position: static;
    display: block;
  }
  #stage {
    width: 100%;
    height: auto;
    transform: none !important;
    box-shadow: none;
  }
  .slide {
    position: static;
    display: flex !important;
    page-break-after: always;
  }
  footer, .nav-btn {
    display: none;
  }
}
