/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;700;900&display=swap');

:root {
  --primary-color: #e50914;
  --bg-dark: #0f0f0f;
  --bg-darker: #050505;
  --text-light: #f5f5f5;
  --text-muted: #a0a0a0;
  --gold: #d4af37;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Base Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  display: inline-block;
  padding: 18px 40px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}
.btn:hover {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.6);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('./assets/images/hero_bg.png') no-repeat center center/cover;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 0.2) 0%, rgba(15, 15, 15, 0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}
.hero-title {
  font-size: 4.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
  animation: fadeInDown 1s ease;
}
.hero-catch {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}
.hero-cta {
  animation: fadeInUp 1s ease 0.9s forwards;
  opacity: 0;
}

/* Trust Section */
.trust {
  padding: 80px 0;
  background-color: var(--bg-darker);
  text-align: center;
}
.awards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.award-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  max-width: 300px;
  transition: transform 0.3s;
}
.award-item:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}
.award-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
.award-text {
  font-weight: 700;
  color: var(--gold);
}
.trust-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
}

/* Hook Section */
.hook {
  padding: 100px 0;
  background-color: var(--bg-dark);
}
.hook-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hook-title {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}
.hook-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-light);
}

/* Characters Section */
.characters {
  padding: 100px 0;
  background-color: var(--bg-darker);
}
.section-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 60px;
  color: var(--gold);
}
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.char-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 400px;
  cursor: pointer;
}
.char-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.char-card:hover .char-img {
  transform: scale(1.1);
}
.char-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 30px 20px 20px;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.char-card:hover .char-info {
  transform: translateY(0);
}
.char-name {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.char-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}
.char-card:hover .char-desc {
  opacity: 1;
}

/* Core Appeal */
.core-appeal {
  padding: 100px 0;
  background-color: var(--bg-dark);
}
.appeal-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.appeal-item {
  background: rgba(255,255,255,0.03);
  padding: 40px;
  border-left: 5px solid var(--primary-color);
  border-radius: 4px;
}
.appeal-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--gold);
}

/* Closing */
.closing {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(rgba(15,15,15,0.8), rgba(15,15,15,0.8)), url('./assets/images/hero_bg.png') no-repeat center bottom/cover;
}
.closing-text {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 2px 2px 10px #000;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-title { font-size: 3rem; }
  .hero-catch { font-size: 1.8rem; }
  .hook-title { font-size: 2.2rem; }
  .closing-text { font-size: 1.8rem; }
}
