:root {
  --primary-color: #d32f2f; /* Energetic red/orange for "burn" */
  --secondary-color: #fbc02d; /* Bright yellow */
  --text-color: #333333;
  --bg-color: #fff8e1; /* Very light warm background */
  --white: #ffffff;
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

/* Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes fireGlow {
  0% { box-shadow: 0 0 5px rgba(211, 47, 47, 0.3); }
  50% { box-shadow: 0 0 20px rgba(211, 47, 47, 0.7); }
  100% { box-shadow: 0 0 5px rgba(211, 47, 47, 0.3); }
}

header {
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--primary-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideInLeft 0.8s ease-out;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-style: italic;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  transition: color var(--transition-speed);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.btn, .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff5722 100%);
  color: var(--white) !important;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover, .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(211, 47, 47, 0.4);
}

.btn-fire {
  animation: fireGlow 2.5s infinite;
}

main {
  padding: 60px 0;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #ffebee 100%);
  border-radius: 8px;
  margin-bottom: 60px;
  animation: slideInRight 1s ease-out;
  box-shadow: 0 10px 30px rgba(211,47,47,0.05);
  border: 1px solid #ffcdd2;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  color: #424242;
}

article {
  background: var(--white);
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  border-top: 5px solid var(--primary-color);
}

h1, h2, h3 {
  color: #b71c1c;
  margin-bottom: 20px;
  margin-top: 40px;
  font-weight: 700;
}

h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-top: 0;
}

h2 {
  font-size: 2.2rem;
  border-bottom: 2px solid #ffecb3;
  padding-bottom: 10px;
  display: inline-block;
}

h3 {
  font-size: 1.7rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 20px;
  font-size: 1.15rem;
  color: #555;
}

ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #555;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  border-left: 4px solid var(--secondary-color);
}

.blog-card:nth-child(even) {
    border-left: 4px solid var(--primary-color);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  animation: float 3s ease-in-out infinite;
}

.blog-card h3 {
  margin-top: 0;
  font-size: 1.5rem;
  line-height: 1.3;
}

.blog-card p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 25px;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: color var(--transition-speed);
}

.read-more:hover {
  color: #b71c1c;
  text-decoration: underline;
}

.related-posts {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
  background-color: #fafafa;
  padding: 40px;
  border-radius: 8px;
}

.related-posts h3 {
  margin-top: 0;
}

.cta-section {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  padding: 60px;
  text-align: center;
  border-radius: 8px;
  margin: 50px 0;
  border: 2px solid #ef9a9a;
}

.cta-section h2 {
  margin-top: 0;
  border-bottom: none;
  color: var(--primary-color);
  font-size: 2.5rem;
}

footer {
  background-color: #212121;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 60px 0;
  margin-top: 80px;
  border-top: 5px solid var(--primary-color);
}

footer a {
  color: var(--secondary-color);
  text-decoration: none;
}

footer p {
  font-size: 1rem;
  margin-bottom: 12px;
}
