:root {
  --background: #f9f9f9;
  --on-background: #1a1c1c;
  --surface: #f9f9f9;
  --on-surface: #1a1c1c;
  --primary: #b40067;
  --on-primary: #ffffff;
  --primary-container: #df0b81;
  --on-primary-container: #fffbff;
  --secondary: #006e0b;
  --on-secondary: #ffffff;
  --secondary-container: #6afd5f;
  --on-secondary-container: #00730c;
  --tertiary: #5c5c5c;
  --on-tertiary: #ffffff;
  --tertiary-container: #747474;
  --on-tertiary-container: #fcfcfc;
  --secondary-fixed: #75ff68;
  --outline: #8d6f78;
  --primary-fixed-dim: #ffb0cb;
  --tertiary-fixed-dim: #c6c6c6;
  --pink-btn: #FF3399;
  --green-btn: #33CC33;
}

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

body {
  background-color: var(--background);
  color: var(--on-background);
  font-family: 'Space Grotesk', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* Base Utility for arcade feel */
.pixel-border {
  border: 4px solid #000000;
}

.neo-shadow {
  box-shadow: 4px 4px 0px 0px #000000;
}

.neo-shadow-lg {
  box-shadow: 8px 8px 0px 0px #000000;
}

.notched {
  clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0% calc(100% - 8px), 0% 8px);
}

/* Animations */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--sm {
  max-width: 896px;
}

/* Header */
.header {
  height: 88px;
  background-color: var(--surface);
  border-bottom: 4px solid var(--on-background);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.header__logo {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.header__menu {
  display: none;
  gap: 32px;
  align-items: center;
}

.header__menu a {
  font-size: 18px;
  font-weight: 700;
  padding: 0 8px;
}

.header__menu a:hover {
  background-color: var(--primary);
  color: var(--on-primary);
}

.header__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.header__coin-badge {
  display: none;
  background-color: var(--secondary-container);
  color: var(--on-secondary-container);
  font-weight: bold;
  padding: 4px 16px;
}

.btn--menu {
  display: block;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
}

.btn--menu svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 88px;
  left: 0;
  width: 100%;
  background: var(--surface);
  border-bottom: 4px solid black;
  display: none;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  z-index: 40;
}

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

.mobile-nav a {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid #eee;
}

/* Main content */
.main-content {
  margin-top: 88px;
  flex-grow: 1;
}

/* Buttons */
.btn {
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  transition: transform 0.1s, box-shadow 0.1s;
}

.btn:active {
  box-shadow: 0px 0px 0px 0px #000000 !important;
}

.btn--insert {
  background-color: var(--primary-container);
  color: var(--on-primary-container);
  padding: 8px 24px;
}
.btn--insert:active { transform: translate(4px, 4px) !important; }

.btn--pink {
  background-color: var(--pink-btn);
  color: white;
  font-weight: 800;
  font-size: 20px;
  padding: 16px 32px;
  letter-spacing: 0.05em;
}
.btn--pink:active { transform: translate(8px, 8px) !important; }

.btn--green {
  background-color: var(--green-btn);
  color: black;
  font-weight: 800;
  font-size: 20px;
  padding: 16px 32px;
  letter-spacing: 0.05em;
}
.btn--green:active { transform: translate(8px, 8px) !important; }

/* Hero Section */
.hero {
  background-color: var(--surface);
  padding: 80px 24px;
  border-bottom: 4px solid var(--on-background);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero__title {
  font-size: 48px;
  line-height: 52px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  font-style: italic;
  margin-bottom: 24px;
}

.hero__title span {
  color: var(--primary-container);
}

.hero__subtitle {
  font-size: 18px;
  line-height: 28px;
  color: var(--tertiary);
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

/* Marquee */
.marquee {
  background-color: var(--on-background);
  padding: 16px 0;
  overflow: hidden;
  border-bottom: 4px solid var(--on-background);
}

.marquee__content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee__text {
  color: var(--secondary-container);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 16px;
}

/* Features Grid */
.features {
  padding: 64px 24px;
}

.features__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Mission Card */
.mission-card {
  background-color: #ffffff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mission-card__icon {
  background-color: var(--primary);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
}

.mission-card__title {
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mission-card__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--tertiary);
}

.mission-card__link {
  margin-top: 32px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Economy Card */
.economy-card {
  background-color: var(--secondary-container);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.economy-card__content {
  flex: 1;
}

.economy-card__title {
  font-size: 32px;
  line-height: 36px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.economy-card__text {
  font-size: 18px;
  line-height: 28px;
  color: #000;
  margin-bottom: 24px;
}

.economy-card__stats {
  display: flex;
  gap: 16px;
}

.stat-box {
  background-color: #fff;
  padding: 16px;
  text-align: center;
  flex: 1;
}

.stat-box__value {
  font-size: 32px;
  font-weight: 700;
}

.stat-box__label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.economy-card__image-box {
  background-color: #000;
  width: 100%;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.economy-card__image-box span {
  background-color: #fff;
  padding: 16px;
  font-size: 32px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}

/* Featured Demo */
.featured-demo {
  background-color: #fff;
  overflow: hidden;
}

.featured-demo__header {
  background-color: var(--surface);
  border-bottom: 4px solid #000;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-demo__title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-demo__dots {
  display: flex;
  gap: 8px;
}

.featured-demo__dot {
  width: 16px;
  height: 16px;
}

.featured-demo__image-wrapper {
  position: relative;
  height: 250px;
}

.featured-demo__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.featured-demo__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-demo:hover .featured-demo__overlay {
  opacity: 1;
}

.featured-demo__play-btn {
  background-color: var(--secondary-container);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-demo__play-icon {
  font-size: 40px;
  color: #000;
  font-variation-settings: 'FILL' 1;
}

.featured-demo__status {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background-color: #000;
  padding: 16px;
}

.featured-demo__status p {
  color: var(--secondary-container);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: pulse 2s infinite;
}

/* Simulators */
.simulators {
  margin-top: 32px;
}

.simulators__title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.simulators__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.simulator-card {
  background-color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.simulator-card__image-box {
  background-color: var(--surface);
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.simulator-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.simulator-card__title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.simulator-card__btn {
  background-color: var(--secondary-container);
  padding: 16px;
  text-align: center;
  width: 100%;
}
.simulator-card__btn:active { transform: translate(4px, 4px) !important; box-shadow: 0px 0px 0px 0px #000000 !important; }

.simulators__browse {
  margin-top: 48px;
  text-align: center;
}

.simulators__browse a {
  display: inline-block;
  background-color: var(--primary-container);
  color: white;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: transform 0.1s, box-shadow 0.1s;
}
.simulators__browse a:active { transform: translate(8px, 8px) !important; box-shadow: 0px 0px 0px 0px #000000 !important; }

/* FAQ Section */
.faq-section {
  background-color: var(--primary-container);
  padding: 80px 24px;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
}

.faq-section__title {
  font-size: 36px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: white;
}

.faq-item__summary {
  padding: 24px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}

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

.faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__content {
  padding: 24px;
  border-top: 4px solid black;
  color: var(--tertiary);
  font-size: 18px;
  line-height: 28px;
}

.faq-section__more {
  margin-top: 32px;
  text-align: center;
}

.faq-section__more a {
  display: inline-block;
  background-color: white;
  color: black;
  padding: 16px 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: transform 0.1s, box-shadow 0.1s;
}
.faq-section__more a:active { transform: translate(4px, 4px) !important; box-shadow: 0px 0px 0px 0px #000000 !important; }

/* Reviews Section */
.reviews-section {
  padding: 80px 24px;
}

.reviews-section__title {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 64px;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.review-card {
  break-inside: avoid;
  margin-bottom: 32px;
  background-color: white;
  padding: 24px;
}

.review-card__stars {
  display: flex;
  gap: 4px;
  color: var(--secondary-container);
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 16px;
  line-height: 24px;
  font-style: italic;
  margin-bottom: 24px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
}

.review-card__name {
  font-weight: 700;
  text-transform: uppercase;
}

.review-card__date {
  font-size: 14px;
  color: var(--tertiary);
  font-weight: 700;
}

/* Footer */
.footer {
  background-color: black;
  color: white;
  border-top: 8px solid var(--pink-btn);
  padding: 48px 0 24px 0;
  font-family: monospace;
}

.footer a:hover {
  color: var(--pink-btn);
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.footer__brand-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--pink-btn);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer__brand-text {
  font-size: 14px;
  color: #999;
  margin-bottom: 16px;
}

.footer__warning {
  background-color: var(--pink-btn);
  color: black;
  padding: 4px 8px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
}

.footer__title {
  color: var(--pink-btn);
  font-weight: bold;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 16px;
}

.footer__input {
  background-color: #111;
  border: 2px solid var(--pink-btn);
  color: white;
  padding: 8px;
  outline: none;
  width: 100%;
  margin-bottom: 8px;
}

.footer__submit {
  background-color: var(--green-btn);
  color: black;
  font-weight: bold;
  padding: 8px;
  text-transform: uppercase;
  width: 100%;
}
.footer__submit:hover { background-color: white; }

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.compliance-badge {
  border: 2px solid #555;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: bold;
}

.footer__disclaimer {
  font-size: 10px;
  color: #777;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.footer__corporate {
  border-top: 2px solid var(--pink-btn);
  padding-top: 24px;
  margin-bottom: 32px;
  font-size: 12px;
  color: #999;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  filter: grayscale(1) invert(1) brightness(2);
}

.footer__logo {
  height: 32px;
}

.footer__copyright {
  font-size: 10px;
  color: #777;
  text-align: center;
}

/* Internal pages generic container */
.page-container {
  padding: 64px 24px;
}

.page-container h1 {
  margin-bottom: 32px;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-container p {
  margin-bottom: 16px;
  color: var(--tertiary);
  font-size: 18px;
  line-height: 28px;
}

.page-container h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 32px;
}

.page-container ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.page-container li {
  margin-bottom: 8px;
  color: var(--tertiary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin-top: 32px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px;
  font-family: inherit;
  font-size: 16px;
}

/* Media Queries for Desktop */
@media (min-width: 768px) {
  .header__menu { display: flex; }
  .btn--menu { display: none; }
  .header__coin-badge { display: flex; }
  .btn--insert { display: block; }
  
  .hero__title { font-size: 80px; line-height: 84px; }
  .hero__actions { flex-direction: row; }
  
  .features__grid { display: grid; grid-template-columns: repeat(12, 1fr); }
  .mission-card { grid-column: span 4; }
  .economy-card { grid-column: span 8; flex-direction: row; }
  .featured-demo-card { grid-column: span 12; }
  .simulators-section { grid-column: span 12; }
  
  .economy-card__image-box { max-width: 300px; height: 256px; }
  .featured-demo__image-wrapper { height: 500px; }
  .featured-demo__play-icon { font-size: 60px; }
  
  .simulators__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { display: block; column-count: 2; }
  
  .footer__grid { display: grid; grid-template-columns: repeat(12, 1fr); }
  .footer__brand-col { grid-column: span 4; }
  .footer__nav-col { grid-column: span 2; }
  .footer__legal-col { grid-column: span 2; }
  .footer__newsletter-col { grid-column: span 4; }
  
  .footer__bottom { flex-direction: row; }
  .footer__copyright { text-align: right; }
}

@media (min-width: 1024px) {
  .reviews-grid { column-count: 3; }
}

@media (max-width: 767px) {
  .btn--insert { display: none; }
  
  .container { padding: 0 16px; }
  
  .hero { padding: 48px 16px; }
  .hero__title { font-size: 36px; line-height: 40px; }
  .hero__subtitle { font-size: 16px; margin-bottom: 32px; }
  
  .features { padding: 32px 16px; }
  .features__grid { gap: 16px; }
  
  .mission-card { padding: 24px; }
  .mission-card__title { font-size: 24px; line-height: 28px; }
  
  .economy-card { padding: 24px; gap: 24px; }
  .economy-card__title { font-size: 24px; line-height: 28px; }
  .economy-card__stats { flex-direction: column; gap: 8px; width: 100%; }
  .stat-box { width: 100%; padding: 12px; }
  .stat-box__value { font-size: 24px; }
  
  .featured-demo__header { padding: 12px; }
  .featured-demo__title { font-size: 18px; }
  .featured-demo__image-wrapper { height: 200px; }
  .featured-demo__play-btn { padding: 24px; }
  .featured-demo__play-icon { font-size: 32px; }
  .featured-demo__status { bottom: 16px; left: 16px; padding: 12px; }
  .featured-demo__status p { font-size: 12px; }
  
  .simulators__title { font-size: 24px; margin-bottom: 24px; }
  .simulator-card { padding: 16px; }
  .simulator-card__image-box { height: 160px; }
  
  .faq-section { padding: 48px 16px; }
  .faq-section__title { font-size: 24px; margin-bottom: 32px; }
  .faq-item__summary { font-size: 18px; padding: 16px; }
  .faq-item__content { font-size: 16px; padding: 16px; }
  
  .reviews-section { padding: 48px 16px; }
  .reviews-section__title { font-size: 24px; margin-bottom: 32px; }
  .review-card { padding: 16px; }
  
  .footer { padding: 32px 0 24px 0; }
  .footer__brand-title { font-size: 20px; }
  .compliance-badges { justify-content: center; }
  .compliance-badge { font-size: 10px; padding: 2px 8px; }
}

/* Modal Styles */
.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.modal__content {
  background-color: var(--surface);
  padding: 32px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  color: var(--on-surface);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal__title {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
}
.modal__text {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}

/* Subpage specific styles */
.hero-page {
    padding: 160px 24px 100px 24px;
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 8px solid var(--pink-btn);
    position: relative;
}
.hero-page__title {
    font-size: 56px;
    color: white;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 4px 4px 0px #000, 8px 8px 0px var(--primary);
    line-height: 1.1;
}
.hero-page__desc {
    font-size: 20px;
    color: var(--secondary-container);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 700;
    text-shadow: 2px 2px 0px #000;
}
.page-card {
    background-color: white;
    padding: 48px;
    margin-top: -64px;
    position: relative;
    z-index: 10;
    margin-bottom: 64px;
}

.page-content h1 {
    font-size: 36px;
    color: var(--on-background);
    text-transform: uppercase;
    border-bottom: 4px solid black;
    padding-bottom: 16px;
    margin-bottom: 32px;
}
.page-content h2 {
    font-size: 28px;
    text-transform: uppercase;
    margin-top: 48px;
    margin-bottom: 24px;
    background-color: #000;
    color: var(--secondary-container);
    display: inline-block;
    padding: 8px 16px;
    transform: skew(-5deg);
    border: 2px solid var(--secondary-container);
    box-shadow: 4px 4px 0px 0px var(--primary);
}
.page-content h3 {
    font-size: 24px;
    color: var(--on-background);
    margin-top: 32px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 800;
}
.page-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 24px;
    font-weight: 500;
}
.page-content ul {
    margin-left: 24px;
    margin-bottom: 32px;
    list-style-type: square;
}
.page-content ul li {
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 16px;
    padding-left: 8px;
}

/* Beautiful Policy Ordered List */
.page-content ol {
    list-style-type: none;
    counter-reset: policy-counter;
    margin-left: 0;
    margin-top: 48px;
}
.page-content ol li {
    counter-increment: policy-counter;
    position: relative;
    margin-bottom: 48px;
    background: var(--surface);
    padding: 32px 32px 32px 64px;
    border: 4px solid black;
    box-shadow: 6px 6px 0px 0px rgba(0,0,0,1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.page-content ol li:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0px 0px var(--primary);
}
.page-content ol li strong {
    display: block;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 800;
}
.page-content ol li::before {
    content: counter(policy-counter);
    position: absolute;
    left: -24px;
    top: -24px;
    width: 56px;
    height: 56px;
    background-color: var(--secondary-container);
    color: black;
    font-weight: 800;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid black;
    box-shadow: 4px 4px 0px 0px rgba(0,0,0,1);
    transform: rotate(-10deg);
}

@media (max-width: 767px) {
    .hero-page { padding: 120px 16px 80px 16px; }
    .hero-page__title { font-size: 32px; }
    .page-card { padding: 24px; margin-top: -32px; }
    .page-content ol { margin-top: 32px; }
    .page-content ol li { padding: 32px 16px 24px 32px; margin-left: 16px; margin-bottom: 32px; }
    .page-content ol li::before { left: -16px; width: 40px; height: 40px; font-size: 20px; top: -16px; }
}
/* Coins Page Custom Layout */
.economy-intro {
    background: #fff;
    border: 8px solid #000;
    padding: 48px;
    margin-top: -64px;
    position: relative;
    z-index: 10;
    margin-bottom: 64px;
}
.economy-intro__title {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 32px;
}
.economy-intro__title span {
    color: var(--pink-btn);
    display: block;
}
.economy-intro__grid {
    display: flex;
    gap: 48px;
}
.economy-intro__left {
    flex: 1;
}
.economy-intro__left-text {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 700;
    margin-bottom: 32px;
}
.highlight-green {
    background: var(--secondary-container);
    padding: 2px 6px;
    color: #000;
}
.economy-intro__right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}
.economy-intro__right-bg {
    position: absolute;
    top: -48px;
    right: -24px;
    font-size: 160px;
    font-weight: 800;
    color: #f0f0f0;
    z-index: 0;
    line-height: 1;
    pointer-events: none;
}
.economy-info-box {
    background: #fff;
    border: 4px solid #000;
    padding: 24px;
    position: relative;
    z-index: 1;
}
.economy-info-box--green {
    background: var(--secondary-container);
}
.economy-info-box__title {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}
.economy-info-box__title .material-symbols-outlined {
    color: var(--pink-btn);
}
.economy-info-box--green .economy-info-box__title .material-symbols-outlined {
    color: #000;
}
.economy-info-box__text {
    font-size: 14px;
    color: #444;
    font-weight: 500;
    line-height: 1.5;
}
.economy-info-box--green .economy-info-box__text {
    color: #000;
    font-weight: 700;
}
.disclaimer-box {
    background: #1a1a1a;
    color: #fff;
    padding: 24px;
}
.disclaimer-box__title {
    color: var(--secondary-container);
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: 0.05em;
}
.disclaimer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    font-weight: 500;
}

.subscriptions {
    margin-bottom: 80px;
}
.subs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}
.subs-header__label {
    background: #ffebf5;
    color: var(--pink-btn);
    padding: 4px 12px;
    font-weight: 800;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 8px;
}
.subs-header__title {
    font-size: 32px;
    font-weight: 800;
}
.subs-header__note {
    text-align: right;
    font-size: 12px;
    color: #888;
    font-weight: 700;
}

.subs-grid {
    display: flex;
    gap: 24px;
}
.sub-card {
    flex: 1;
    border: 8px solid #000;
    background: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 8px 8px 0px 0px #000;
}
.sub-card--highlight {
    border-color: var(--pink-btn);
}
.sub-card__popular {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink-btn);
    color: #fff;
    padding: 8px 16px;
    font-weight: 800;
    font-size: 14px;
    border: 4px solid #000;
    white-space: nowrap;
}
.sub-card__header {
    padding: 24px;
    text-align: left;
    border-bottom: 4px solid #000;
}
.sub-card__header--highlight {
    background: #fdf5f9;
}
.sub-card__header--green {
    background: #eaffea;
}
.sub-card__title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: monospace;
    letter-spacing: -0.05em;
}
.sub-card__title--pink { color: var(--pink-btn); }
.sub-card__title--green { color: var(--secondary); }
.sub-card__price {
    font-size: 36px;
    font-weight: 800;
}
.sub-card__price span {
    font-size: 14px;
    color: #666;
}
.sub-card__body {
    padding: 24px;
    flex: 1;
}
.sub-card__list {
    list-style: none;
    margin-bottom: 24px;
}
.sub-card__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 700;
}
.sub-card__list li.disabled {
    color: #aaa;
    text-decoration: line-through;
}
.sub-card__list .material-symbols-outlined {
    color: var(--secondary-container);
    font-size: 20px;
}
.sub-card__list li.disabled .material-symbols-outlined {
    color: #aaa;
}
.sub-card__action {
    padding: 0 24px 24px 24px;
    margin-top: auto;
}
.sub-card__btn {
    width: 100%;
    display: block;
    text-align: center;
    border: 4px solid #000;
    padding: 16px;
    font-weight: 800;
    font-size: 18px;
    transition: transform 0.1s;
    text-decoration: none;
    cursor: pointer;
}
.sub-card__btn:active { transform: translate(4px, 4px); box-shadow: none; }
.sub-card__btn--white { background: #fff; color: #000; }
.sub-card__btn--pink { background: var(--pink-btn); color: #fff; }
.sub-card__btn--green { background: var(--secondary-container); color: #000; }

@media (max-width: 767px) {
    .economy-intro__title { font-size: 32px; }
    .economy-intro__grid { flex-direction: column; gap: 32px; }
    .economy-intro__right { grid-template-columns: 1fr; }
    .subs-grid { flex-direction: column; gap: 48px; }
    .subs-header { flex-direction: column; align-items: flex-start; }
    .subs-header__note { text-align: left; margin-top: 16px; }
    .economy-intro__right-bg { font-size: 100px; right: 0; }
}

@media (max-width: 1024px) {
    .economy-intro__grid { flex-direction: column; gap: 32px; }
    .subs-grid { flex-direction: column; gap: 48px; }
    .economy-intro__right { grid-template-columns: 1fr; }
}

.material-icon {
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
}
