/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000000;
  color: #f5f5f5;
  line-height: 1.6;
  padding: 0;
  min-height: 100vh;
  animation: fadeIn 1.2s ease-in;
  scroll-behavior: smooth;
  transition: background 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Header */
header {
  background: #0a0a0a;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.4);
  animation: slideDown 0.8s ease-in-out;
  position: sticky;
  top: 0;
  z-index: 100;
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #e50914;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #ffffffcc;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #e50914;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #e50914;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
  animation: fadeInUp 1.5s ease-in-out;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(229,9,20,0.25) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  z-index: 0;
}

.hero h2 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  color: #e50914;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.25rem;
  color: #cccccc;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.cta {
  margin-top: 2.5rem;
  display: inline-block;
  padding: 1rem 2rem;
  background: #e50914;
  color: #ffffff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
}

.cta:hover {
  background: #ff1a2d;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 25px rgba(229, 9, 20, 0.7);
}

/* Main content */
main {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
  animation: fadeIn 1.2s ease-in-out;
}

section {
  background-color: #111;
  padding: 2rem;
  border-radius: 14px;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 1s forwards;
  animation-delay: 0.3s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(229, 9, 20, 0.3);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #e50914;
}

h3 {
  margin-top: 1.5rem;
  color: #ff5a5f;
  font-weight: 500;
}

ul {
  padding-left: 1.5rem;
  line-height: 1.8;
}

a {
  color: #ff6666;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #0a0a0a;
  color: #aaa;
  font-size: 0.95rem;
  animation: fadeIn 1s ease-in;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
