:root {
  --primary-color: #ec4415;
  --bg-dark: #121212;
  --text-dark: #ffffff;
  --bg-light: #ffffff;
  --text-light: #000000;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #ffffff;
  color: black;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  transition: background-color 0.3s, color 0.3s;
  overflow-x: hidden;
}

[data-theme="light"] body {
  background-color: var(--bg-light);
  color: var(--text-light);
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
  position: relative;
  z-index: 2;
}

h1 {
  color: var(--primary-color);
  font-size: 36px;
  margin-bottom: 20px;
  animation: slideInLeft 1s ease forwards;
}

p, ul li {
  font-size: 18px;
  margin-bottom: 15px;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

ul {
  padding-left: 25px;
}

ul li {
  list-style-type: disc;
}

a {
  color: var(--primary-color);
  text-decoration: underline;
}

.back-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: scale(1.05);
}

/* Sections */
.section {
  margin-bottom: 60px;
  animation: fadeInUp 1.2s ease;
}

/* Glowing BG Animation */
.glow-bg {
  position: fixed;
  top: -20%;
  left: -20%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, #00000030 0%, transparent 70%);
  z-index: 0;
  animation: pulseGlow 5s infinite ease-in-out;
}

/* Animations */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.1);
  }
}

/* Light Mode Support */
[data-theme="light"] .back-btn {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

[data-theme="light"] .back-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}
