/* Non-US Home Pages Styles */
:root {
  /* Color variables from color.scss */
  --c-white: #ffffff;
  --c-black: #212121;
  --c-true-black: #000;
  --c-brand-01: #6e46ae;
  --c-brand-02: #3d2462;
  --c-brand-03: #00b6b4;
  --c-accent-02: #b051aa;
  --c-accent-03: #00788c;
  --c-accent-04: #230939;
  --c-accent-05: #e9e7f7;
  --c-accent-05-500: #edebf8;
  --c-accent-05-600: #c6c2db;
  --c-accent-06: #82d296;
  --c-accent-07: #f2b127;
  --c-neutral-100: #f9f9f9;
  --c-neutral-200: #f2f2f2;
  --c-neutral-300: #e6e7e8;
  --c-neutral-400: #e0e0e0;
  --c-neutral-600: #737373;
  --c-neutral-700: #616161;
  --c-neutral-800: #424242;
  --c-background-quinary: #506495;
  --c-text-primary: #212121;
  --c-text-secondary: #424242;
  --c-text-tertiary: #666666;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--c-text-primary);
  background-color: var(--c-accent-04);
}

.yellowBanner {
  background-color: var(--c-accent-07);
  color: var(--c-text-primary);
  padding: 28px 16px;
  text-align: center;
  font-weight: 500;
}

.pageContainer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--c-accent-04);
}

.spacer {
  flex: 1;
}

.mainContent {
  flex: 4;
  padding: 20px 16px;
  text-align: center;
}

.brandSection {
  margin-bottom: 40px;
}

.brandLogo {
  width: 330px;
  height: 60px;
}

.brandPlus {
  margin-bottom: 16px;
  font-size: 90px;
  line-height: 75px;
  color: var(--c-white);
}

.monsterLogoSvg {
  width: 260px;
  height: 60px;
  margin-bottom: 16px;
}

.contentSection {
  max-width: 600px;
  margin: 0 auto;
}

.headline {
  font-size: 24px;
  color: var(--c-white);
  margin-bottom: 24px;
  line-height: 1.4;
}

.headline .highlight {
  color: var(--c-brand-03);
}

.headline .highlight,
.headline a {
  color: var(--c-brand-03);
  text-decoration: none;
}

.headline a:hover {
  text-decoration: underline;
}

.description {
  font-size: 18px;
  color: var(--c-white);
  margin-bottom: 40px;
  line-height: 1.5;
}

.ctaButtons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.ctaButton {
  background-color: var(--c-accent-02);
  color: var(--c-white);
  border: none;
  padding: 7px 12px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.ctaButton:hover {
  background-color: var(--c-brand-01);
}

@media (max-width: 768px) {
  .brandLogo,
  .monsterLogoSvg {
    width: 200px;
    height: 46px;
  }

  .brandPlus {
    font-size: 28px;
  }

  .headline {
    font-size: 20px;
  }

  .description {
    font-size: 16px;
  }

  .ctaButtons {
    flex-direction: column;
    align-items: center;
  }

  .ctaButton {
    width: 100%;
    max-width: 300px;
  }
}
