/* ===== CUSTOM PROPERTIES ===== */
:root {
  --bg: #0B0D13;
  --bg-secondary: #11141D;
  --card: #181B26;
  --border: #292D3A;
  --purple: #7C5CFC;
  --purple-hover: #6D4DF2;
  --lavender: #A78BFA;
  --text-heading: #FFFFFF;
  --text-body: #D7D9E0;
  --text-muted: #9296A3;
  --promo-card-bg: #151823;
  --hero-gradient: linear-gradient(180deg, #0B0D13 0%, #151324 100%);
  --cta-gradient: linear-gradient(135deg, #8B6CFF, #6D4DF2);
  --cta-shadow: 0 8px 28px rgba(124, 92, 252, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --container: 1120px;
  --header-h: 64px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

a:focus-visible,
button:focus-visible,
details summary:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
  border-radius: 4px;
}

ul, ol {
  list-style: none;
}

code {
  font-family: var(--font-mono);
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 13, 19, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-heading);
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-link:hover {
  color: var(--text-heading);
}

.logo-icon {
  border-radius: 6px;
}

.logo-text {
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-link {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--text-heading);
  background: rgba(124, 92, 252, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--cta-gradient);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-xs);
  margin-left: 8px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.nav-cta:hover {
  color: #fff;
  box-shadow: var(--cta-shadow);
  transform: translateY(-1px);
}

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

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-body);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--space-lg)) 0 var(--space-xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 13, 19, 0.75) 0%,
    rgba(21, 19, 36, 0.92) 50%,
    rgba(11, 13, 19, 0.98) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-title {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

/* ===== PROMO CARDS ===== */
.promo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  max-width: 820px;
  margin: 0 auto var(--space-lg);
}

.promo-card {
  background: var(--promo-card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.promo-card:hover {
  border-color: var(--purple);
  box-shadow: 0 0 24px rgba(124, 92, 252, 0.12);
  transform: translateY(-2px);
}

.promo-card-top {
  margin-bottom: var(--space-sm);
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(124, 92, 252, 0.15);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.promo-code-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: rgba(11, 13, 19, 0.6);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 12px;
}

.promo-code-text {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: 0.06em;
  user-select: all;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: var(--radius-xs);
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
  position: relative;
}

.copy-btn:hover {
  background: var(--purple-hover);
  transform: scale(1.04);
}

.copy-btn .check-icon {
  display: none;
}

.copy-btn.copied {
  background: #22c55e;
}

.copy-btn.copied .copy-icon {
  display: none;
}

.copy-btn.copied .check-icon {
  display: block;
}

.copy-btn.copied .copy-label {
  display: none;
}

.copy-btn.copied::after {
  content: 'Copied!';
  font-size: 0.8rem;
}

.promo-card-bonus {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== CTA BUTTONS ===== */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
}

.btn-primary {
  background: var(--cta-gradient);
  color: #fff;
  font-size: 1rem;
  padding: 14px 36px;
}

.btn-primary:hover {
  box-shadow: var(--cta-shadow);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text-heading);
  font-size: 1rem;
  padding: 14px 36px;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--purple);
  color: var(--lavender);
  background: rgba(124, 92, 252, 0.06);
}

.btn-sm {
  background: var(--cta-gradient);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 20px;
  white-space: nowrap;
}

.btn-sm:hover {
  box-shadow: var(--cta-shadow);
  transform: translateY(-1px);
  color: #fff;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--space-xl) 0;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
  color: var(--text-body);
  font-size: 1.05rem;
}

.content-block {
  max-width: 780px;
  margin: 0 auto;
}

.content-block p {
  margin-bottom: var(--space-md);
}

.content-block h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.content-block-sm {
  margin-top: var(--space-md);
}

/* ===== STEPS GRID ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  transition: border-color var(--transition), transform var(--transition);
}

.step-card:hover {
  border-color: rgba(124, 92, 252, 0.3);
  transform: translateY(-2px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(124, 92, 252, 0.12);
  color: var(--purple);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 10px;
  margin-bottom: var(--space-sm);
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--space-xs);
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-card-note {
  background: rgba(124, 92, 252, 0.06);
  border-color: rgba(124, 92, 252, 0.2);
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: rgba(124, 92, 252, 0.3);
  transform: translateY(-2px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(124, 92, 252, 0.1);
  border-radius: 12px;
  margin-bottom: var(--space-sm);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--space-xs);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  transition: border-color var(--transition), transform var(--transition);
}

.benefit-card:hover {
  border-color: rgba(124, 92, 252, 0.3);
  transform: translateY(-2px);
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--space-xs);
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== TABLES ===== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.bonus-table,
.codes-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.bonus-table th,
.codes-table th {
  background: var(--card);
  color: var(--text-heading);
  font-weight: 600;
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.bonus-table td,
.codes-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  vertical-align: middle;
}

.bonus-table tr:last-child td,
.codes-table tr:last-child td {
  border-bottom: none;
}

.bonus-table tr:nth-child(even),
.codes-table tr:nth-child(even) {
  background: rgba(24, 27, 38, 0.4);
}

.bonus-table td:first-child {
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.inline-code {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lavender);
  background: rgba(124, 92, 252, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.status-verified {
  color: #22c55e;
  font-weight: 600;
  white-space: nowrap;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: var(--space-lg) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: rgba(124, 92, 252, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md);
  cursor: pointer;
  font-weight: 600;
  color: var(--text-heading);
  font-size: 1rem;
  list-style: none;
  user-select: none;
  transition: background var(--transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  content: '';
}

.faq-question:hover {
  background: rgba(124, 92, 252, 0.04);
}

.faq-question span {
  flex: 1;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--purple);
}

.faq-answer {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  margin: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== UPDATED LINE ===== */
.section-updated {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
}

.updated-line {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo-link {
  margin-bottom: var(--space-sm);
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text-heading);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-lg);
}

.footer-legal {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.25);
  flex-shrink: 0;
}

.footer-legal p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-legal a {
  color: var(--lavender);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.footer-bottom-simple {
  border-top: none;
  padding-top: 0;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-body);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition), border-color var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding-top: calc(var(--space-xl) + var(--header-h));
}

.legal-page .updated-line {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.legal-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.legal-content p {
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

.legal-content li {
  margin-bottom: 6px;
  color: var(--text-body);
}

/* ===== BREADCRUMB ===== */
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.breadcrumb li {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--border);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--lavender);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg) var(--space-md);
  }

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

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

@media (max-width: 768px) {
  :root {
    --space-xl: 48px;
    --space-2xl: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-sm);
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    pointer-events: none;
  }

  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + var(--space-md)) 0 var(--space-lg);
  }

  .promo-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 400px;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .codes-table {
    font-size: 0.85rem;
  }

  .codes-table th,
  .codes-table td {
    padding: 12px 14px;
  }

  .section-cta .btn {
    width: 100%;
    max-width: 400px;
  }

  .legal-page {
    padding-top: calc(var(--space-lg) + var(--header-h));
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.55rem;
  }

  .promo-code-display {
    flex-direction: column;
    gap: 10px;
  }

  .copy-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
  }

  .bonus-table th,
  .bonus-table td {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .codes-table th:nth-child(2),
  .codes-table td:nth-child(2) {
    display: none;
  }
}