

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

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #100425;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.site-header {
  background-color: #100425;
  padding: 24px 42px;
  position: relative;
  z-index: 100;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #ffffff;
}

.header-logo img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 32px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.header-nav a:hover {
  opacity: 0.7;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.hamburger img {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: url(/wp-content/themes/ormyrbrand/assets/images/menu.png) center center / cover no-repeat;
  z-index: 200;
  flex-direction: column;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-nav.is-open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

/* Header bar inside the overlay: logo + close icon */
.mobile-nav-header {
  background: #120427;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

/* Centered nav links block */
.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 96px;
}

.mobile-nav-links a {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mobile-nav-links a:hover {
  opacity: 0.7;
}

.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.site-footer {
  background-color: #100425;
  padding: 42px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-social img {
  width: 24px;
  height: 24px;
}

.footer-copyright {
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #FE6167 0%, #EA0B7F 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 12px;
  border: 0.5px solid #FE6167;
  box-shadow:
    0px 4px 20px 0px rgba(223, 21, 111, 0.8),
    inset 0px 2px 4px 0px rgba(255, 255, 255, 0.6),
    inset 0px -4px 4px 0px rgba(106, 19, 0, 0.6);
  letter-spacing: 0.06em;
  cursor: pointer;
  text-shadow: 0px 0px 4px rgba(14, 3, 16, 0.5);
  transition: opacity 0.2s, transform 0.1s;
  white-space: nowrap;
  max-width: 358px;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.glass-card {
  background: linear-gradient(90deg, rgba(234, 11, 127, 0.2) 0%, rgba(50, 125, 252, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px 90px 12px 12px;
  box-shadow: inset 1.2px 1.1px 0.8px 0px #F8FAF0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px;
}

.rounded-img {
  border-radius: 0 90px 0 90px;
  box-shadow: 0px 2px 12px 0px rgba(223, 21, 111, 0.8);
}

.section {
  padding: 96px 42px;
}

.section-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
}

.section-heading--center {
  text-align: center;
}

.body-text {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
  color: #ffffff;
}

.body-text + .body-text {
  margin-top: 24px;
}

.body-text--center {
  text-align: center;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: start;
}

.img-col {
  flex-shrink: 0;
}

.text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.full-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.feature-card {
  background: linear-gradient(90deg, rgba(234, 11, 127, 0.2) 0%, rgba(50, 125, 252, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px 90px 12px 12px;
  box-shadow: inset 1.2px 1.1px 0.8px 0px #F8FAF0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.card-body {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
  color: #ffffff;
}

.features-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-top: 24px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.testimonial-card {
  background: linear-gradient(90deg, rgba(234, 11, 127, 0.2) 0%, rgba(50, 125, 252, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px 90px 12px 12px;
  box-shadow: inset 1.2px 1.1px 0.8px 0px #F8FAF0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-card:nth-child(1),
.testimonial-card:nth-child(2) {
  grid-column: span 3;
}

.testimonial-card:nth-child(3),
.testimonial-card:nth-child(4),
.testimonial-card:nth-child(5) {
  grid-column: span 2;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.stars {
  width: 100px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.testimonial-quote {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
  color: #ffffff;
}

@media (max-width: 900px) {
  
  .site-header {
    padding: 12px;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo-text {
    font-size: 24px;
  }

  
  .section {
    padding: 48px 12px;
  }

  .section-heading {
    font-size: 36px;
  }

  .body-text {
    font-size: 20px;
  }

  
  .two-col-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .img-col img {
    width: 100%;
    height: auto;
    max-height: 410px;
    object-fit: cover;
    border-radius: 0 90px 0 90px;
  }

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

  .card-title {
    font-size: 20px;
  }

  .card-body {
    font-size: 20px;
  }

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

  .testimonial-card:nth-child(1),
  .testimonial-card:nth-child(2),
  .testimonial-card:nth-child(3),
  .testimonial-card:nth-child(4),
  .testimonial-card:nth-child(5) {
    grid-column: span 1;
  }

  .reviewer-name {
    font-size: 20px;
  }

  .testimonial-quote {
    font-size: 20px;
  }

  
  .site-footer {
    padding: 42px 12px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }

  .footer-nav a {
    font-size: 20px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 8px;
    font-size: 18px;
  }

  .footer-copyright {
    font-size: 16px;
  }

  
  .btn-primary {
    font-size: 20px;
    padding: 16px 32px;
  }
}

.game-detail-section {
  background: linear-gradient(177.129deg, #100425 2%, rgba(50, 125, 252, 0.5) 50%, #100425 98%);
  padding: 96px 42px;
}

.game-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-areas:
    "media  info"
    "ctrl   info";
  gap: 24px;
  align-items: start;
}

.game-media {
  grid-area: media;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.game-controls {
  grid-area: ctrl;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.game-right {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.game-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0 90px 0 90px;
  box-shadow: 0px 2px 12px 0px rgba(223, 21, 111, 0.8);
}

.btn-play {
  display: block;
  width: 100%;
  text-align: center;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}

.game-desc {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
  color: #ffffff;
}

.game-desc + .game-desc {
  margin-top: 0;
}

.game-section-heading {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.feature-list {
  list-style: disc;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #ffffff;
}

.how-to-list {
  list-style: decimal;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #ffffff;
}

.feature-list li,
.how-to-list li {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.item-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.item-desc {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
  color: #ffffff;
}

.game-para {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
  color: #ffffff;
}

@media (max-width: 900px) {
  .game-detail-section {
    padding: 48px 12px;
  }

  .game-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "info"
      "ctrl";
  }

  .game-title {
    font-size: 36px;
  }

  .game-desc,
  .game-para,
  .item-title,
  .item-desc,
  .game-section-heading {
    font-size: 20px;
  }
}

.policy-section {
  background: linear-gradient(177.129deg, #100425 2%, rgba(50, 125, 252, 0.5) 50%, #100425 98%);
  padding: 96px 42px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-subhead {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
  color: #ffffff;
}

.policy-list {
  list-style: disc;
  padding-left: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #ffffff;
}

.policy-list li {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .policy-section {
    padding: 48px 12px;
  }

  .policy-subhead,
  .policy-list li {
    font-size: 20px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 32px 42px;
  background: #0e0320;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}

.cookie-banner__text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #ffffff;
}

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

.cookie-banner__accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: linear-gradient(180deg, #FE6167 0%, #EA0B7F 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 0.5px solid #FE6167;
  border-radius: 12px;
  box-shadow:
    0px 4px 20px 0px rgba(223, 21, 111, 0.8),
    inset 0px 2px 4px 0px rgba(255, 255, 255, 0.6),
    inset 0px -4px 4px 0px rgba(106, 19, 0, 0.6);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}

.cookie-banner__accept:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-banner__learn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: rgba(120, 100, 130, 0.5);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(200, 180, 210, 0.4);
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-banner__learn:hover {
  background: rgba(140, 120, 150, 0.6);
}

@media (max-width: 900px) {
  .cookie-banner {
    padding: 24px 16px;
    gap: 16px;
  }

  .cookie-banner__title {
    font-size: 28px;
  }

  .cookie-banner__text {
    font-size: 16px;
  }

  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookie-banner__accept,
  .cookie-banner__learn {
    font-size: 18px;
    text-align: center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(234, 11, 127, 0.25);
}

.testimonial-card {
  transition: transform 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.rounded-img {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.rounded-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(223, 21, 111, 0.5);
}

.header-logo {
  transition: opacity 0.2s;
}

.header-logo:hover {
  opacity: 0.8;
}

.footer-nav a {
  transition: opacity 0.2s, color 0.2s;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.mobile-nav-links a {
  position: relative;
  transition: opacity 0.2s;
}

.mobile-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #FE6167;
  transition: width 0.3s ease, left 0.3s ease;
}

.mobile-nav-links a:hover::after {
  width: 100%;
  left: 0;
}
