@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700;900&family=ZCOOL+KuaiLe&display=swap');

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

:root {
  --primary: #ff9800;
  --primary-dark: #f57c00;
  --primary-light: #ffb74d;
  --secondary: #ffc107;
  --secondary-light: #ffd54f;
  --cream: #fff8e1;
  --cream-dark: #ffecb3;
  --text: #3e2723;
  --text-light: #5d4037;
  --text-muted: #8d6e63;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(255, 152, 0, 0.12);
  --shadow-md: 0 6px 24px rgba(255, 152, 0, 0.18);
  --shadow-lg: 0 12px 40px rgba(255, 152, 0, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(255, 193, 7, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 10%, rgba(255, 152, 0, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 236, 179, 0.4) 0%, transparent 60%);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 80%;
  background:
    repeating-conic-gradient(
      from 0deg at 50% 0%,
      rgba(255, 193, 7, 0.06) 0deg,
      transparent 3deg,
      transparent 15deg
    );
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'ZCOOL KuaiLe', 'Noto Sans SC', sans-serif;
  color: var(--text);
  line-height: 1.3;
  font-weight: 400;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===== Header & Navigation ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.95) 0%, rgba(255, 193, 7, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.nav-brand .brand-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.nav-menu a {
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
  text-shadow: none;
}

.nav-toggle {
  display: none;
  background: var(--white);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.35) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  background: var(--white);
  color: var(--primary-dark);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--text);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(255, 152, 0, 0.2);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary-dark);
}

/* ===== Sections ===== */
.section {
  padding: 70px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* ===== Movie Cards ===== */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.movie-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  border: 1px solid rgba(255, 193, 7, 0.15);
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.movie-card .poster {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.movie-card .poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.movie-card .rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.movie-card .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(62, 39, 35, 0.85);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  backdrop-filter: blur(4px);
}

.movie-card .info {
  padding: 20px;
}

.movie-card .info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text);
}

.movie-card .info .meta {
  display: flex;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.movie-card .info .desc {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card .watch-btn {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  text-align: center;
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: all var(--transition);
}

.movie-card .watch-btn:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

/* ===== Category Nav ===== */
.category-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 0 auto;
  max-width: 1000px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.category-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.category-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--text);
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Topic / Features ===== */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.topic-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 193, 7, 0.2);
  transition: all var(--transition);
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.topic-card .topic-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.topic-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text);
}

.topic-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.topic-card .topic-meta {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== Filter Bar ===== */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 10px 22px;
  border: 2px solid var(--primary-light);
  background: var(--white);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

/* ===== Ranking List ===== */
.ranking-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.ranking-tab {
  padding: 12px 28px;
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all var(--transition);
  font-family: inherit;
}

.ranking-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ranking-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-left: 4px solid var(--secondary);
}

.ranking-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.ranking-item .rank {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'ZCOOL KuaiLe', sans-serif;
}

.ranking-item:nth-child(1) .rank {
  background: linear-gradient(135deg, #ff6f00, #ff3d00);
}

.ranking-item:nth-child(2) .rank {
  background: linear-gradient(135deg, #f57c00, #ff6f00);
}

.ranking-item:nth-child(3) .rank {
  background: linear-gradient(135deg, #ffa000, #f57c00);
}

.ranking-item .ranking-info {
  flex: 1;
}

.ranking-item .ranking-info h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--text);
}

.ranking-item .ranking-info p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.ranking-item .ranking-score {
  text-align: right;
}

.ranking-item .ranking-score .score {
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 1.8rem;
  color: var(--primary-dark);
  line-height: 1;
}

.ranking-item .ranking-score .score-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== About / Info Cards ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--secondary);
  transition: all var(--transition);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.info-card .info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text);
}

.info-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.info-card ul li {
  padding: 8px 0;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 193, 7, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card ul li::before {
  content: '☀';
  color: var(--primary);
  font-size: 0.9rem;
}

.info-card ul li:last-child {
  border-bottom: none;
}

/* ===== Contact Form ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.contact-info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.contact-info p {
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 20px;
}

.contact-info .contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.contact-info .contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info .contact-list li:last-child {
  border-bottom: none;
}

.contact-info .contact-list .ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info .contact-list .ci-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.contact-info .contact-list .ci-value {
  font-size: 1rem;
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--cream);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.15);
}

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

/* ===== Viewing Guide ===== */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.guide-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.guide-card .step {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 1.3rem;
}

.guide-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.guide-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== Age Recommendation ===== */
.age-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.age-item {
  padding: 10px 20px;
  background: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  color: var(--text-light);
  transition: all var(--transition);
  cursor: pointer;
}

.age-item.active,
.age-item:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--secondary) 100%);
  color: var(--text);
  padding: 60px 0 0;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-col p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.92rem;
}

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

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

.footer-col ul li a {
  color: var(--text-light);
  font-size: 0.92rem;
  transition: all var(--transition);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 1.4rem;
  color: var(--text);
}

.footer-brand .brand-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(62, 39, 35, 0.15);
  margin-top: 40px;
  padding: 24px 0;
  text-align: center;
  color: var(--text-light);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.2);
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav {
    padding: 12px 16px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    box-shadow: var(--shadow-md);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    color: var(--text);
    padding: 12px 20px;
    border-radius: var(--radius-md);
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    background: var(--cream);
    color: var(--primary-dark);
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .section {
    padding: 50px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .contact-info,
  .contact-form {
    padding: 28px 24px;
  }

  .ranking-item {
    padding: 16px;
    flex-wrap: wrap;
  }

  .ranking-item .ranking-score {
    width: 100%;
    text-align: left;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

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

  .container {
    padding: 0 16px;
  }
}