/* Reset & Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: white;
  font-family: 'Segoe UI', sans-serif;
}

/* Flame Section */
.flame-section {
  position: relative;
  height: 200vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
}

/* Flame SVG */
.flame-svg {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  transform: translateY(0%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Content */
.flame-content {
  position: relative;
  z-index: 2;
  padding-bottom: 6rem;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.3s ease;
}

.flame-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  color: black;
}
