@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Anton&family=Cinzel:wght@400;600;700;900&family=Noto+Serif+SC:wght@400;600;700;900&display=swap');

:root {
  --oscar-gold-start: #F5C518;
  --oscar-gold-end: #FFD700;
  --midnight-black: #0A0A0A;
  --deep-black: #050505;
  --theater-red: #8B0000;
  --starlight-silver: #C0C0C0;
  --film-coffee: #6B4423;
  --gold-glow: rgba(245, 197, 24, 0.4);
  --gold-text: linear-gradient(135deg, #F5C518 0%, #FFD700 50%, #F5C518 100%);
}

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

body {
  font-family: 'Noto Serif SC', 'Cinzel', serif;
  background: var(--midnight-black);
  color: var(--starlight-silver);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.8) 50%, transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255, 215, 0, 0.6) 50%, transparent),
    radial-gradient(1.5px 1.5px at 80% 20%, rgba(192, 192, 192, 0.7) 50%, transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(255, 255, 255, 0.5) 50%, transparent),
    radial-gradient(1px 1px at 90% 50%, rgba(255, 215, 0, 0.5) 50%, transparent),
    radial-gradient(1.5px 1.5px at 10% 60%, rgba(192, 192, 192, 0.6) 50%, transparent),
    radial-gradient(1px 1px at 70% 40%, rgba(255, 255, 255, 0.7) 50%, transparent),
    radial-gradient(1px 1px at 30% 10%, rgba(255, 215, 0, 0.4) 50%, transparent);
  background-size: 400px 400px;
  animation: starDust 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

@keyframes starDust {
  0% { opacity: 0.3; background-position: 0 0; }
  100% { opacity: 0.7; background-position: 50px 100px; }
}

.film-border-top,
.film-border-bottom {
  position: fixed;
  left: 0;
  width: 100%;
  height: 36px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.film-border-top {
  top: 0;
  border-bottom: 2px solid var(--oscar-gold-start);
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.15);
}

.film-border-bottom {
  bottom: 0;
  border-top: 2px solid var(--oscar-gold-start);
  box-shadow: 0 -4px 20px rgba(245, 197, 24, 0.15);
}

.film-perforations {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: space-around;
}

.film-perforation {
  width: 12px;
  height: 18px;
  background: var(--midnight-black);
  border-radius: 2px;
  border: 1px solid #333;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.8);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.main-wrapper {
  padding: 76px 0 76px 0;
  min-height: 100vh;
}

header {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.92) 100%);
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
  position: sticky;
  top: 36px;
  z-index: 999;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-mark {
  width: 58px;
  height: 58px;
  position: relative;
  background: linear-gradient(145deg, #F5C518 0%, #FFD700 50%, #D4A017 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 15px rgba(245, 197, 24, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.logo-mark::before {
  content: 'MT';
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.logo-mark::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1.5px dashed rgba(10, 10, 10, 0.4);
  border-radius: 4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 900;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
}

.logo-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  color: var(--starlight-silver);
  letter-spacing: 4px;
  opacity: 0.7;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--starlight-silver);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold-text);
  transition: width 0.35s ease;
}

.nav-link:hover {
  color: var(--oscar-gold-end);
  text-shadow: 0 0 20px var(--gold-glow);
}

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

.nav-link.active {
  color: var(--oscar-gold-end);
}

.cta-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--oscar-gold-start) 0%, var(--oscar-gold-end) 100%);
  color: var(--midnight-black);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.3);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(245, 197, 24, 0.5);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background:
    linear-gradient(120deg, transparent 30%, rgba(139, 0, 0, 0.15) 60%, transparent 80%),
    linear-gradient(180deg, transparent 0%, rgba(245, 197, 24, 0.04) 50%, transparent 100%);
  pointer-events: none;
}

.hero-projector {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 300px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.projector-beam {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.8), rgba(255, 255, 255, 0.4), transparent);
  transform-origin: left center;
  animation: beamSweep 6s ease-in-out infinite;
}

.projector-beam::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(90deg, transparent 0%, rgba(245, 197, 24, 0.06) 20%, rgba(255, 215, 0, 0.12) 50%, rgba(245, 197, 24, 0.06) 80%, transparent 100%);
  transform: perspective(500px) rotateX(2deg);
  filter: blur(8px);
}

.projector-beam:nth-child(2) {
  animation-delay: -2s;
  opacity: 0.5;
}

.projector-beam:nth-child(3) {
  animation-delay: -4s;
  opacity: 0.3;
}

@keyframes beamSweep {
  0%, 100% { transform: translateY(-50%) rotate(-3deg); opacity: 0.6; }
  50% { transform: translateY(-50%) rotate(3deg); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 820px;
}

.oscar-silhouette {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 460px;
  opacity: 0.08;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--oscar-gold-end);
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 2px;
  background: rgba(245, 197, 24, 0.05);
}

.hero-eyebrow::before {
  content: '◆';
  font-size: 8px;
}

.hero-eyebrow::after {
  content: '◆';
  font-size: 8px;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: 2px;
}

.hero-title .gold {
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 60px var(--gold-glow);
  display: block;
}

.hero-title .white {
  color: #fff;
  display: block;
  font-family: 'Anton', sans-serif;
  letter-spacing: 6px;
  font-size: 0.45em;
  margin-top: 8px;
  opacity: 0.9;
}

.hero-desc {
  font-size: 18px;
  color: rgba(192, 192, 192, 0.85);
  line-height: 1.9;
  margin-bottom: 44px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.secondary-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  padding: 12px 32px;
  background: transparent;
  color: var(--oscar-gold-end);
  border: 2px solid rgba(245, 197, 24, 0.5);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.secondary-btn:hover {
  background: rgba(245, 197, 24, 0.1);
  border-color: var(--oscar-gold-end);
  box-shadow: 0 0 25px rgba(245, 197, 24, 0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(245, 197, 24, 0.15);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  font-weight: 900;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(192, 192, 192, 0.6);
}

.section {
  padding: 100px 0;
  position: relative;
}

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

.section-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--oscar-gold-end);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.section-desc {
  font-size: 17px;
  color: rgba(192, 192, 192, 0.75);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.9;
}

.section-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0 0 0;
}

.section-decoration .line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oscar-gold-start), transparent);
}

.section-decoration .diamond {
  color: var(--oscar-gold-start);
  font-size: 12px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.gold-card {
  position: relative;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: 8px;
  padding: 40px 32px;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.gold-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--oscar-gold-start), var(--oscar-gold-end), var(--oscar-gold-start));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.gold-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.04), transparent);
  transition: left 0.6s ease;
}

.gold-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(245, 197, 24, 0.1);
}

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

.gold-card:hover::after {
  left: 100%;
}

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(145deg, rgba(245, 197, 24, 0.15), rgba(255, 215, 0, 0.05));
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.card-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--oscar-gold-end);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.card-desc {
  font-size: 15px;
  color: rgba(192, 192, 192, 0.8);
  line-height: 1.85;
}

.card-badge {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--theater-red);
  background: rgba(139, 0, 0, 0.15);
  padding: 4px 12px;
  border-radius: 2px;
  margin-top: 20px;
  border: 1px solid rgba(139, 0, 0, 0.3);
}

.clapperboard-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 80px 0;
}

.clapperboard-divider .clap {
  font-size: 28px;
  opacity: 0.3;
  animation: clapRotate 4s ease-in-out infinite;
}

@keyframes clapRotate {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.clapperboard-divider .clap-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.3), transparent);
  max-width: 300px;
}

.theater-curtain {
  position: relative;
  background:
    linear-gradient(180deg, rgba(139, 0, 0, 0.12) 0%, transparent 50%, rgba(139, 0, 0, 0.12) 100%);
  padding: 100px 0;
}

.theater-curtain::before,
.theater-curtain::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
}

.theater-curtain::before {
  left: 0;
  background: linear-gradient(90deg, rgba(139, 0, 0, 0.2) 0%, transparent 100%);
}

.theater-curtain::after {
  right: 0;
  background: linear-gradient(270deg, rgba(139, 0, 0, 0.2) 0%, transparent 100%);
}

.film-reels {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 60px 0;
}

.film-reel {
  width: 120px;
  height: 120px;
  border: 6px solid var(--film-coffee);
  border-radius: 50%;
  position: relative;
  animation: reelSpin 20s linear infinite;
}

.film-reel:nth-child(2) {
  animation-direction: reverse;
  animation-duration: 25s;
}

.film-reel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: var(--midnight-black);
  border-radius: 50%;
  border: 3px solid var(--film-coffee);
}

.film-reel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background:
    radial-gradient(circle, transparent 36%, var(--film-coffee) 36%, var(--film-coffee) 42%, transparent 42%),
    conic-gradient(
      from 0deg,
      transparent 0deg 30deg, var(--film-coffee) 30deg 60deg,
      transparent 60deg 90deg, var(--film-coffee) 90deg 120deg,
      transparent 120deg 150deg, var(--film-coffee) 150deg 180deg,
      transparent 180deg 210deg, var(--film-coffee) 210deg 240deg,
      transparent 240deg 270deg, var(--film-coffee) 270deg 300deg,
      transparent 300deg 330deg, var(--film-coffee) 330deg 360deg
    );
  opacity: 0.7;
  border-radius: 50%;
}

@keyframes reelSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center top, rgba(245, 197, 24, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: 4px;
  position: relative;
  z-index: 2;
}

.page-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 8px;
  color: rgba(192, 192, 192, 0.6);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(192, 192, 192, 0.5);
  position: relative;
  z-index: 2;
}

.page-breadcrumb a {
  color: var(--oscar-gold-start);
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-breadcrumb a:hover {
  color: var(--oscar-gold-end);
}

.page-breadcrumb .sep {
  color: var(--oscar-gold-start);
  opacity: 0.5;
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: 15px;
  color: rgba(192, 192, 192, 0.85);
  border-bottom: 1px dashed rgba(245, 197, 24, 0.1);
}

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

.feature-list li::before {
  content: '▸';
  color: var(--oscar-gold-start);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card {
  position: relative;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.98), rgba(5, 5, 5, 0.99));
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 12px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--oscar-gold-start);
  transform: scale(1.05);
  box-shadow:
    0 25px 70px rgba(245, 197, 24, 0.15),
    0 0 80px rgba(245, 197, 24, 0.08);
}

.pricing-card.featured::before {
  content: 'VIP 推荐';
  position: absolute;
  top: 24px;
  right: -40px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--oscar-gold-start), var(--oscar-gold-end));
  color: var(--midnight-black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 6px 50px;
  font-weight: 700;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 197, 24, 0.5);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-name {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--starlight-silver);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.pricing-price {
  font-family: 'Anton', sans-serif;
  font-size: 64px;
  font-weight: 900;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 24px 0;
}

.pricing-price .currency {
  font-size: 28px;
  vertical-align: top;
  margin-right: 4px;
}

.pricing-price .period {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  color: rgba(192, 192, 192, 0.6);
  background: none;
  -webkit-text-fill-color: rgba(192, 192, 192, 0.6);
  letter-spacing: 2px;
}

.news-card {
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(245, 197, 24, 0.12);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 197, 24, 0.35);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

.news-image {
  height: 220px;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.1), rgba(139, 0, 0, 0.08));
  position: relative;
  overflow: hidden;
}

.news-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(245, 197, 24, 0.04) 30px, rgba(245, 197, 24, 0.04) 32px);
}

.news-content {
  padding: 28px;
}

.news-tag {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--oscar-gold-start);
  background: rgba(245, 197, 24, 0.1);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.news-title {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.news-card:hover .news-title {
  color: var(--oscar-gold-end);
}

.news-date {
  font-size: 13px;
  color: rgba(192, 192, 192, 0.5);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

.news-excerpt {
  font-size: 14px;
  color: rgba(192, 192, 192, 0.7);
  line-height: 1.8;
  margin: 16px 0;
}

.contact-form-wrapper {
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: 12px;
  padding: 48px;
}

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

.form-group label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--oscar-gold-start);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 6px;
  color: #fff;
  font-family: 'Noto Serif SC', serif;
  font-size: 15px;
  transition: all 0.35s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--oscar-gold-start);
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.1);
  background: rgba(5, 5, 5, 0.95);
}

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

.contact-info-card {
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: 12px;
  padding: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(245, 197, 24, 0.08);
}

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

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, rgba(245, 197, 24, 0.15), rgba(255, 215, 0, 0.05));
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-info-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(192, 192, 192, 0.5);
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.case-study {
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(245, 197, 24, 0.12);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.case-poster {
  height: 320px;
  background:
    linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(245, 197, 24, 0.08)),
    linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.8));
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.case-poster::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 4px;
  pointer-events: none;
}

.case-year {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  color: rgba(245, 197, 24, 0.35);
  font-weight: 900;
}

.case-category {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--theater-red);
  background: rgba(139, 0, 0, 0.25);
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid rgba(139, 0, 0, 0.4);
}

.case-title {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.case-info {
  padding: 32px;
}

.case-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.case-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(192, 192, 192, 0.7);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.5px;
}

.case-meta-item::before {
  content: '●';
  color: var(--oscar-gold-start);
  font-size: 6px;
}

.case-desc {
  font-size: 15px;
  color: rgba(192, 192, 192, 0.75);
  line-height: 1.85;
}

footer {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.98) 0%, rgba(10, 10, 10, 0.99) 100%);
  border-top: 1px solid rgba(245, 197, 24, 0.15);
  padding: 80px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(192, 192, 192, 0.65);
  line-height: 1.9;
  margin: 24px 0;
}

.footer-heading {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--oscar-gold-end);
  margin-bottom: 28px;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--oscar-gold-start), transparent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(192, 192, 192, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--oscar-gold-start);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--oscar-gold-end);
  padding-left: 4px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(245, 197, 24, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(192, 192, 192, 0.45);
  letter-spacing: 1px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 520px;
  background:
    linear-gradient(135deg, rgba(245, 197, 24, 0.05), rgba(139, 0, 0, 0.04)),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(245, 197, 24, 0.12);
  border-radius: 6px;
  pointer-events: none;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--oscar-gold-start), rgba(245, 197, 24, 0.1));
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -35px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--midnight-black);
  border: 3px solid var(--oscar-gold-start);
  box-shadow: 0 0 15px var(--gold-glow);
}

.timeline-year {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  font-weight: 900;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.timeline-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 14px;
  color: rgba(192, 192, 192, 0.7);
  line-height: 1.8;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  margin-bottom: 100px;
  padding: 48px;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.6), rgba(10, 10, 10, 0.8));
  border: 1px solid rgba(245, 197, 24, 0.12);
  border-radius: 14px;
}

.product-showcase:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}

.product-showcase:nth-child(even) .product-showcase-image {
  order: 2;
}

.product-showcase:nth-child(even) .product-showcase-content {
  order: 1;
}

.product-showcase-image {
  height: 360px;
  background:
    linear-gradient(135deg, rgba(245, 197, 24, 0.08), rgba(139, 0, 0, 0.05)),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(245, 197, 24, 0.03) 40px, rgba(245, 197, 24, 0.03) 42px);
  border-radius: 10px;
  border: 1px solid rgba(245, 197, 24, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-showcase-image .resolution-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--theater-red);
  opacity: 0.85;
  letter-spacing: 2px;
}

.product-showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag-label {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--oscar-gold-start);
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .product-showcase,
  .product-showcase:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .product-showcase:nth-child(even) .product-showcase-image {
    order: 0;
  }
  .product-showcase:nth-child(even) .product-showcase-content {
    order: 0;
  }
  nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
  .section {
    padding: 70px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat-number {
    font-size: 32px;
  }
  .contact-form-wrapper {
    padding: 32px 24px;
  }
  .pricing-card.featured {
    transform: scale(1);
  }
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-btn,
  .secondary-btn {
    text-align: center;
  }
}
