@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --primary: #d4af37;
  --secondary: #b8860b;
  --accent: #ffd700;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-600: #525252;
  --gray-900: #171717
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  color: var(--gray-900);
  background: var(--gray-50)
}

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

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 50
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px
}

.brand-logo {
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary);
  text-decoration: none
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-900)
}

.primary-nav {
  display: flex;
  gap: 3rem
}

.nav-item {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  padding: 1rem
}

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

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem 0;
    opacity: 0;
    visibility: hidden
  }

  .primary-nav.active {
    opacity: 1;
    visibility: visible
  }
}

.hero-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 10rem 0;
  text-align: center
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2.5rem
}

.hero-subtitle {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, .9)
}

.platforms-section {
  padding: 8rem 0
}

.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  margin-bottom: 5rem
}

.platform-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 32px;
  padding: 3.5rem;
  max-width: 1000px;
  margin: 0 auto
}

.platform-item:hover {
  box-shadow: 0 30px 80px rgba(55, 65, 81, .1);
  transform: translateY(-8px)
}

.platform-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem
}

.platform-logo {
  width: 72px;
  height: 72px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center
}

.platform-logo img {
  width: 48px
}

.platform-info h3 {
  font-size: 1.5rem;
  font-weight: 800
}

.platform-features {
  margin-bottom: 2.5rem
}

.feature-item {
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem
}

.feature-item::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800
}

.platform-offer {
  background: rgba(55, 65, 81, .05);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2.5rem
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 1.75rem 3rem;
  border-radius: 16px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  display: block
}

.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 5rem 0 2rem
}

.footer-content {
  text-align: center;
  margin-bottom: 3rem
}

.footer-logos {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem
}

.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem
}

.footer-logos img {
  height: 40px;
  opacity: 0.5;
  transition: all .4s
}

.footer-logos img:hover {
  opacity: 1;
  transform: scale(1.1)
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem
}

.footer-link {
  color: rgba(255, 255, 255, .7);
  text-decoration: none
}

.content-section {
  padding: 8rem 0
}

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

.content-container h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 3rem
}

.content-container h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 3rem 0 1.5rem
}

.content-container p {
  margin-bottom: 1.5rem;
  color: var(--gray-600)
}

.content-container a {
  color: var(--primary);
  font-weight: 600
}

.age-badge {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 2rem 0;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
}

.age-badge::before {
  content: "🔞";
  font-size: 1.4rem;
  display: inline-block;
}

.age-badge-large {
  font-size: 1.4rem;
  padding: 1rem 1.5rem;
  border-radius: 16px;
}

.footer-logos .age-badge {
  margin: 0;
  font-size: 1rem;
  padding: 0.6rem 1rem;
}