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

body {
  font-family: 'Segoe UI', serif;
  background: radial-gradient(circle at 50% 20%, #1b2735 0%, #0b1320 70%);
  color: #f5e6c8;
  overflow-x: hidden;
}

/* Background canvas */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

/* Sections */
section {
  padding: 140px 20px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

/* Hero Fullscreen */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Logo */
.logo {
  font-size: 82px;
  letter-spacing: 10px;
  font-weight: 700;
  color: #ffcf7a;
  text-shadow:
    0 0 10px rgba(255,140,50,0.6),
    0 0 30px rgba(255,100,20,0.4);
  animation: fireGlow 3s ease-in-out infinite alternate;
}

@keyframes fireGlow {
  from {
    text-shadow:
      0 0 8px rgba(255,120,40,0.5),
      0 0 20px rgba(255,80,20,0.3);
  }
  to {
    text-shadow:
      0 0 18px rgba(255,160,60,0.8),
      0 0 40px rgba(255,100,30,0.6);
  }
}

/* Tagline */
.tagline {
  margin-top: 30px;
  font-size: 22px;
  opacity: 0.9;
  letter-spacing: 2px;
  color: #f8e8c0;
}

/* Section Titles */
h2 {
  margin-bottom: 25px;
  font-size: 36px;
  color: #ffd27f;
  text-shadow: 0 0 15px rgba(255,140,50,0.4);
}

p {
  font-size: 19px;
  line-height: 1.8;
  opacity: 0.85;
}

/* Footer */
footer {
  text-align: center;
  padding: 60px;
  font-size: 14px;
  opacity: 0.6;
}
