@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;600;700;900&family=Ma+Shan+Zheng&display=swap');

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

:root {
  --crimson: #8b0000;
  --crimson-dark: #5c0000;
  --crimson-light: #a52a2a;
  --beige: #d4a574;
  --beige-light: #e8c9a0;
  --bg-dark: #1a1a1a;
  --bg-darker: #0d0d0d;
  --bg-card: #222222;
  --text-cream: #f5f5dc;
  --text-muted: #b8b8a8;
  --gold: #c9a962;
  --border: rgba(212, 165, 116, 0.25);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-hover: 0 12px 48px rgba(139, 0, 0, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Serif SC', serif;
  background-color: var(--bg-dark);
  color: var(--text-cream);
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.08) 0px,
    rgba(0, 0, 0, 0.08) 1px,
    transparent 1px,
    transparent 3px
  );
}

a {
  color: var(--beige);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Header ========== */
.site-header {
  background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(13, 13, 13, 0.95) 100%);
  border-bottom: 2px solid var(--crimson);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--crimson);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 28px;
  color: var(--beige-light);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--beige);
  border-radius: 4px;
  opacity: 0.5;
}

.logo-text {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 26px;
  color: var(--beige-light);
  letter-spacing: 2px;
}

.logo-text span {
  color: var(--crimson);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
}

.main-nav a {
  display: block;
  padding: 10px 18px;
  color: var(--text-cream);
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--crimson);
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--beige-light);
  background: rgba(139, 0, 0, 0.15);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 60%;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--beige);
  font-size: 22px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  border-radius: 4px;
}

/* ========== Hero Banner ========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--crimson-dark) 50%, var(--bg-darker) 100%);
  padding: 80px 0 100px;
  text-align: center;
  overflow: hidden;
  border-bottom: 3px solid var(--crimson);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139, 0, 0, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 20px;
  background: repeating-linear-gradient(
    90deg,
    var(--crimson) 0px,
    var(--crimson) 40px,
    var(--crimson-dark) 40px,
    var(--crimson-dark) 80px,
    #3d0000 80px,
    #3d0000 120px,
    var(--crimson-dark) 120px,
    var(--crimson-dark) 160px
  );
  box-shadow: 0 4px 30px rgba(139, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(212, 165, 116, 0.15);
  border: 1px solid var(--beige);
  border-radius: 30px;
  color: var(--beige-light);
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: clamp(36px, 6vw, 64px);
  color: var(--text-cream);
  letter-spacing: 6px;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(139, 0, 0, 0.6);
}

.hero h1 span {
  color: var(--beige-light);
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: 'Noto Serif SC', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--crimson);
  color: var(--text-cream);
  box-shadow: 0 4px 20px rgba(139, 0, 0, 0.4);
}

.btn-primary:hover {
  background: var(--crimson-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 0, 0, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--beige-light);
  border: 2px solid var(--beige);
}

.btn-outline:hover {
  background: var(--beige);
  color: var(--bg-darker);
  transform: translateY(-2px);
}

/* ========== Page Hero ========== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--crimson-dark) 100%);
  padding: 60px 0 80px;
  text-align: center;
  border-bottom: 3px solid var(--crimson);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    var(--crimson) 0px,
    var(--crimson) 30px,
    var(--crimson-dark) 30px,
    var(--crimson-dark) 60px,
    #3d0000 60px,
    #3d0000 90px,
    var(--crimson-dark) 90px,
    var(--crimson-dark) 120px
  );
}

.page-hero h1 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: clamp(30px, 5vw, 48px);
  color: var(--beige-light);
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== Section ========== */
.section {
  padding: 72px 0;
}

.section-title {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--beige-light);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 3px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 48px;
  letter-spacing: 2px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--beige), transparent);
}

.section-divider span {
  color: var(--crimson);
  font-size: 20px;
}

/* ========== Featured Categories ========== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.featured-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
  cursor: pointer;
  display: block;
  color: var(--text-cream);
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.featured-card:hover {
  transform: translateY(-6px);
  border-color: var(--crimson);
  box-shadow: var(--shadow-hover);
  color: var(--beige-light);
}

.featured-card:hover::before {
  transform: scaleX(1);
}

.featured-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--beige-light);
  position: relative;
}

.featured-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--beige);
  border-radius: 50%;
  opacity: 0.4;
}

.featured-card h3 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--text-cream);
}

.featured-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== Poster Grid ========== */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.poster-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.poster-card:hover {
  transform: translateY(-6px);
  border-color: var(--crimson);
  box-shadow: var(--shadow-hover);
}

.poster-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-darker);
}

.poster-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.poster-card:hover .poster-image img {
  transform: scale(1.05);
}

.poster-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--crimson);
  color: var(--text-cream);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.poster-rating {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

.poster-info {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.poster-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-cream);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.poster-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.poster-meta span {
  position: relative;
  padding-right: 10px;
}

.poster-meta span:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: 0;
  color: var(--border);
}

.poster-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========== Filter Tabs ========== */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--text-cream);
  font-size: 14px;
  font-family: 'Noto Serif SC', serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--crimson);
  border-color: var(--crimson);
  color: var(--text-cream);
}

/* ========== Actor Cards ========== */
.actor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.actor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease;
}

.actor-card:hover {
  transform: translateY(-6px);
  border-color: var(--crimson);
  box-shadow: var(--shadow-hover);
}

.actor-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-darker);
  position: relative;
}

.actor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.actor-card:hover .actor-photo img {
  transform: scale(1.05);
}

.actor-info {
  padding: 18px 14px 20px;
}

.actor-info h3 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 20px;
  color: var(--beige-light);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.actor-role {
  font-size: 12px;
  color: var(--crimson);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.actor-works {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== About Page ========== */
.about-hero {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--crimson-dark) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
}

.about-hero h1 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: clamp(36px, 6vw, 56px);
  color: var(--beige-light);
  letter-spacing: 6px;
  margin-bottom: 20px;
  position: relative;
}

.about-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 2;
  position: relative;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 50px;
  bottom: -40px;
  width: 2px;
  background: var(--border);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-year {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige-light);
  font-weight: 700;
  font-size: 16px;
  z-index: 1;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  flex: 1;
}

.timeline-content h3 {
  color: var(--beige-light);
  margin-bottom: 8px;
  font-size: 18px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
}

.team-card:hover {
  border-color: var(--crimson);
  transform: translateY(-4px);
}

.team-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 36px;
  color: var(--beige-light);
  position: relative;
}

.team-avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--beige);
  border-radius: 50%;
  opacity: 0.4;
}

.team-card h3 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 22px;
  color: var(--beige-light);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--crimson);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.team-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ========== Contact Page ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
}

.contact-info h2 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 26px;
  color: var(--beige-light);
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(139, 0, 0, 0.2);
  border: 1px solid var(--crimson);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-label {
  font-size: 13px;
  color: var(--crimson);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  color: var(--text-cream);
}

.contact-value a {
  color: var(--beige);
}

.contact-value a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
}

.contact-form h2 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 26px;
  color: var(--beige-light);
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--beige);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-cream);
  font-family: 'Noto Serif SC', serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--crimson);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background: var(--bg-darker);
  color: var(--text-cream);
}

/* ========== Footer ========== */
.site-footer {
  background: var(--bg-darker);
  border-top: 3px solid var(--crimson);
  padding: 60px 0 0;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 20px;
  color: var(--beige-light);
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--crimson);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--beige);
  padding-left: 4px;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(139, 0, 0, 0.2);
  border: 1px solid var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--crimson);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--beige);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .poster-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .actor-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-darker);
    border-bottom: 2px solid var(--crimson);
    padding: 20px;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .main-nav a {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .poster-grid {
    grid-template-columns: 1fr;
  }

  .actor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .section {
    padding: 48px 0;
  }

  .timeline-item {
    flex-direction: column;
    gap: 16px;
  }

  .timeline-item::before {
    left: 23px;
    top: 56px;
  }
}

@media (max-width: 480px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .actor-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}