:root {
  --bg: #0b0a13;
  --panel: rgba(16, 14, 28, 0.85);
  --accent: #7cff6b;
  --accent-2: #47c7ff;
  --text: #e6e6f2;
  --muted: #9aa0b5;
  --grid: rgba(255, 255, 255, 0.04);
  --card: rgba(24, 22, 40, 0.9);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(124, 255, 107, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(71, 199, 255, 0.06),
      transparent 30%
    ),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.ab-site-header,
header {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 24px 120px;
}

/* layer cu background */
.ab-site-header::before,
header::before {
  content: "";
  position: absolute;
  inset: -5%;
  z-index: -1;

  background:
    linear-gradient(180deg, rgba(11, 10, 19, 0.3), rgba(11, 10, 19, 0.3)),
    url("../img/wallpaper7.webp") center/cover no-repeat;

  animation: header-bg 15s ease-in-out infinite alternate;
}

@keyframes header-bg {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1.1) translateY(-30px);
  }
}

.ab-no-hero,
.no-hero {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.ab-top-bar,
.top-bar {
  position: fixed;
  top: -6px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 24px);
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #b8c2df;
  z-index: 5;
  padding: 10px 18px;
  background: rgba(11, 10, 19, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.ab-top-bar a,
.top-bar a {
  color: var(--text);
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ab-top-bar i,
.top-bar i {
  padding-top: 1px;
}

.ab-top-bar .ab-top-discord i,
.ab-top-bar .ab-brand-discord,
.top-bar .top-discord i,
.top-bar .brand-discord {
  color: #5865f2;
}

.ab-top-bar .ab-top-youtube i,
.ab-top-bar .ab-brand-youtube .ab-you,
.top-bar .top-youtube i,
.top-bar .brand-youtube .you {
  color: #ff0000;
}

.ab-top-bar .ab-brand-youtube .ab-tube,
.top-bar .brand-youtube .tube {
  color: #ffffff;
}

.ab-nav,
nav {
  position: fixed;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  background: rgba(11, 10, 19, 0.78);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  z-index: 4;
  box-shadow: var(--shadow);
}

.ab-brand,
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ab-logo-img,
.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.ab-brand-name,
.ab-footer-logo-text,
.brand-name,
.footer-logo-text {
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

.ab-brand-name .ab-aliens,
.ab-footer-logo-text .ab-aliens,
.ab-pixel-title .ab-aliens,
.brand-name .aliens,
.footer-logo-text .aliens {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(124, 255, 107, 0.5);
}

.ab-brand-name .ab-builds,
.ab-footer-logo-text .ab-builds,
.ab-pixel-title .ab-builds,
.brand-name .builds,
.footer-logo-text .builds {
  color: #e6e6f2;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.ab-nav-links,
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #c7cce3;
  font-weight: 600;
  flex: 1;
  justify-content: center;
}

.ab-nav-links a,
.nav-links a {
  padding: 10px 8px;
  border-radius: 8px;
  transition:
    color 0.15s ease,
    background 0.15s ease;
}

.ab-nav-links a:hover,
.nav-links a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

.ab-nav-links a.active,
.nav-links a.active {
  color: var(--accent);
  background: rgba(124, 255, 107, 0.08);
  border: 1px solid rgba(124, 255, 107, 0.4);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-cta .btn {
  padding: 12px 18px;
}

.ab-nav-actions,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ab-auth-buttons,
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.25s ease;
}

.ab-auth-buttons.ab-loading,
.auth-buttons.loading {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
}

.ab-auth-buttons.ab-ready,
.auth-buttons.ready {
  opacity: 1;
  transform: translateY(0);
}

.ab-auth-btn,
.auth-btn {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.15s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.ab-auth-btn.ab-auth-btn-ghost,
.auth-btn.ghost {
  border-color: rgba(124, 255, 107, 0.5);
  background: rgba(124, 255, 107, 0.08);
  color: #e8ffe0;
}

.ab-auth-btn.ab-auth-btn-solid,
.auth-btn.solid {
  border: none;
  background: linear-gradient(
    135deg,
    rgba(124, 255, 107, 0.95),
    rgba(71, 199, 255, 0.9)
  );
  color: #0b0a13;
  box-shadow: 0 12px 30px rgba(71, 199, 255, 0.35);
}

.ab-auth-btn:hover,
.auth-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.ab-auth-btn.ab-auth-btn-solid:hover,
.auth-btn.solid:hover {
  background: linear-gradient(
    135deg,
    rgba(124, 255, 107, 1),
    rgba(71, 199, 255, 1)
  );
  border-color: transparent;
}

.login-page {
  padding-top: 120px;
}

.login-page .woocommerce {
  max-width: 720px;
  margin: 0 auto 80px;
  background: rgba(16, 14, 28, 0.82);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

.login-page .woocommerce h2 {
  margin-top: 0;
  font-family: "Press Start 2P", cursive;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #eaf3ff;
}

.login-page .woocommerce form {
  margin: 0;
}

.login-page .woocommerce form .form-row {
  padding: 6px 0;
}

.login-page .woocommerce form .form-row label {
  font-weight: 700;
  color: #cfd5eb;
  margin-bottom: 6px;
  display: inline-block;
}

.login-page .woocommerce input[type="text"],
.login-page .woocommerce input[type="email"],
.login-page .woocommerce input[type="password"] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.login-page .woocommerce .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b9c6d8;
}

.login-page .woocommerce .woocommerce-LostPassword a {
  color: var(--accent);
  font-weight: 700;
}

.login-page .woocommerce .woocommerce-button,
.login-page .woocommerce button.button {
  border: 1px solid rgba(124, 255, 107, 0.5);
  background: linear-gradient(
    135deg,
    rgba(124, 255, 107, 0.18),
    rgba(71, 199, 255, 0.16)
  );
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.login-page .woocommerce .woocommerce-button:hover,
.login-page .woocommerce button.button:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 255, 107, 0.7);
}

.login-page .woocommerce .u-columns {
  display: grid;
  gap: 18px;
}

.login-page .woocommerce .u-columns .u-column1,
.login-page .woocommerce .u-columns .u-column2 {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.login-page .woocommerce .u-columns .u-column2 h2 {
  color: #8fffc1;
}

.login-page .woocommerce .woocommerce-privacy-policy-text {
  color: #b8c2df;
  font-size: 13px;
  line-height: 1.5;
}

.login-page .woocommerce .woocommerce-privacy-policy-text a {
  color: var(--accent);
}

.login-page .woocommerce .woocommerce-message,
.login-page .woocommerce .woocommerce-error {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #e6e6f2;
}
.ab-action-icons,
.action-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.25s ease;
}

.ab-action-icons.ab-loading,
.action-icons.loading {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
}

.ab-action-icons.ab-ready,
.action-icons.ready {
  opacity: 1;
  transform: translateY(0);
}

.ab-icon-btn,
.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.15s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.ab-icon-btn i,
.icon-btn i {
  font-size: 16px;
}

.ab-icon-btn:hover,
.icon-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 255, 107, 0.5);
  background: rgba(124, 255, 107, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.ab-icon-btn .ab-badge,
.icon-btn .badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(124, 255, 107, 1),
    rgba(71, 199, 255, 0.9)
  );
  color: #0b0a13;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

.ab-icon-btn .ab-badge.ab-hidden,
.icon-btn .badge.hidden {
  display: none;
}

.hidden {
  display: none !important;
}

.ab-hidden {
  display: none !important;
}

.ab-nav-search,
.nav-search {
  position: fixed;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 32px));
  z-index: 12;
  background: rgba(11, 10, 19, 0.92);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  padding: 12px;
  backdrop-filter: blur(6px);
  display: none;
}

.ab-nav-search.open,
.nav-search.open {
  display: block;
}

.ab-nav-search-form,
.nav-search-form {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
}

.ab-nav-search input[type="search"],
.nav-search input[type="search"] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 600;
}

.ab-nav-search input[type="search"]:focus-visible,
.nav-search input[type="search"]:focus-visible {
  outline: none;
  border-color: rgba(124, 255, 107, 0.5);
  box-shadow: 0 0 0 2px rgba(124, 255, 107, 0.15);
}

.ab-nav-search .ab-search-submit,
.nav-search .search-submit {
  border: 1px solid rgba(124, 255, 107, 0.6);
  background: linear-gradient(
    135deg,
    rgba(124, 255, 107, 0.2),
    rgba(71, 199, 255, 0.16)
  );
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
}

.ab-nav-search .ab-search-close,
.nav-search .search-close {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

@media (max-width: 720px) {
  .ab-nav-search,
  .nav-search {
    top: 76px;
    width: min(420px, calc(100% - 20px));
  }
  .ab-nav-search-form,
  .nav-search-form {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "input input"
      "submit close";
  }
  .ab-nav-search input[type="search"],
  .nav-search input[type="search"] {
    grid-area: input;
  }
  .ab-nav-search .ab-search-submit,
  .nav-search .search-submit {
    grid-area: submit;
  }
  .ab-nav-search .ab-search-close,
  .nav-search .search-close {
    grid-area: close;
    justify-self: flex-end;
  }
}

.ab-sr-only,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ab-mobile-bar,
.mobile-bar {
  display: none;
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 10px 16px;
  background: rgba(11, 10, 19, 0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ab-mobile-bar .ab-logo-img,
.mobile-bar .logo-img {
  height: 44px;
}

.ab-menu-toggle,
.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 22px;
  transition:
    transform 0.15s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.ab-menu-toggle:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.ab-mobile-menu,
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
  transform: translateY(100%);
  opacity: 0;
  background: rgba(0, 0, 0, 0.45);
}

.ab-mobile-menu.open,
.mobile-menu.open {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}

.ab-mobile-menu .ab-sheet,
.mobile-menu .sheet {
  width: 100%;
  background: rgba(11, 10, 19, 0.96);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.55);
  padding: 24px 20px 32px;
  max-height: calc(100vh - 16px);
  overflow-y: auto;
}

.ab-mobile-menu .ab-sheet-header,
.mobile-menu .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ab-mobile-menu .ab-sheet-links,
.mobile-menu .links {
  display: grid;
  gap: 10px;
}

.ab-mobile-menu .ab-sheet-links a,
.mobile-menu .links a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-align: center;
  font-weight: 600;
}

.ab-mobile-menu .ab-sheet-links a.active,
.mobile-menu .links a.active {
  border-color: rgba(124, 255, 107, 0.5);
  color: var(--accent);
  background: rgba(124, 255, 107, 0.08);
}

.ab-mobile-menu .ab-sheet-links .btn,
.mobile-menu .links .btn {
  width: 100%;
}

.ab-mobile-menu .ab-sheet-actions {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.ab-mobile-menu .ab-auth-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ab-mobile-menu .ab-auth-buttons .ab-auth-btn {
  text-align: center;
  padding: 12px 14px;
}

.ab-mobile-menu .ab-auth-buttons .ab-auth-account {
  grid-column: 1 / -1;
}

.ab-mobile-menu .ab-action-icons {
  justify-content: center;
  gap: 12px;
}

.ab-mobile-menu .ab-action-icons .ab-icon-btn {
  width: 48px;
  height: 48px;
}

.ab-hero,
.hero {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  text-align: center;
  display: grid;
  gap: 18px;
}

.ab-hero .ab-hero-subtitle,
.hero .subtitle {
  font-size: 15px;
  letter-spacing: 2px;
  color: #c3c8e0;
  opacity: 0;
  transform: translateY(-28px);
  animation: abHeroSubtitleDrop 0.9s cubic-bezier(0.2, 0.78, 0.24, 1) 0.05s both;
  will-change: transform, opacity;
}

.ab-pixel-title,
.pixel-title {
  font-family: "Press Start 2P", cursive;
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(124, 255, 107, 0.5);
  letter-spacing: 2px;
}

.ab-pixel-title {
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: none;
  text-shadow: none;
  margin: 0;
}

.ab-hero .ab-pixel-title,
.hero .pixel-title {
  opacity: 0;
  transform: scale(0.82) translateY(18px);
  animation: abHeroDepthZoom 1.05s cubic-bezier(0.16, 0.84, 0.26, 1) 0.18s both;
  will-change: transform, opacity;
}

.ab-hero p,
.hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #cfd5eb;
  line-height: 1.5;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  animation: abHeroDepthZoom 1.05s cubic-bezier(0.16, 0.84, 0.26, 1) 0.32s both;
  will-change: transform, opacity;
}

.ab-hero-actions,
.actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.ab-hero .ab-hero-actions .btn,
.hero .actions .btn {
  opacity: 0;
  transform: translateY(34px);
  animation: abHeroActionsRise 0.9s cubic-bezier(0.2, 0.78, 0.24, 1) 0.5s both;
  will-change: transform, opacity;
}

.ab-hero .ab-hero-actions .btn:nth-child(2),
.hero .actions .btn:nth-child(2) {
  animation-delay: 0.62s;
}

.ab-hero-content {
  display: grid;
  gap: 18px;
  justify-items: center;
  position: relative;
  z-index: 2;
}

.ab-hero-visuals {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  display: block;
  pointer-events: none;
  z-index: 1;
}

.ab-hero-visual {
  display: flex;
  align-items: flex-end;
}

.ab-hero-visual-left {
  position: absolute;
  top: 110px;
  left: 200px;
  justify-content: flex-start;
  align-items: flex-start;
}

.ab-hero-visual-right {
  justify-content: flex-end;
}

.ab-hero-island,
.ab-hero-dragon {
  height: auto;
  filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.45));
  will-change: transform;
}

.ab-hero-island {
  width: min(380px, 38vw);
  animation: abIslandFloat 6.5s ease-in-out infinite;
}

.ab-hero-dragon {
  width: min(440px, 44vw);
  animation: abDragonFloat 7.4s ease-in-out infinite;
}

@keyframes abIslandFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes abDragonFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes abHeroSubtitleDrop {
  0% {
    opacity: 0;
    transform: translateY(-36px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes abHeroDepthZoom {
  0% {
    opacity: 0;
    transform: scale(0.82) translateY(24px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes abHeroActionsRise {
  0% {
    opacity: 0;
    transform: translateY(34px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  border: 1px solid var(--border);
  padding: 14px 22px;
  background: linear-gradient(
    135deg,
    rgba(124, 255, 107, 0.16),
    rgba(71, 199, 255, 0.12)
  );
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid rgba(124, 255, 107, 0.5);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

.ab-hero-actions .btn {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border-radius: 999px;
  padding: 12px 26px;
  background: linear-gradient(
    180deg,
    rgba(124, 255, 107, 0.2),
    rgba(124, 255, 107, 0.06)
  );
  border: 1px solid rgba(124, 255, 107, 0.6);
  color: #ecfff1;
  text-shadow: 0 0 12px rgba(124, 255, 107, 0.6);
  box-shadow:
    0 0 14px rgba(124, 255, 107, 0.35),
    0 12px 28px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  letter-spacing: 0.2px;
}

.ab-hero-actions .btn::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -10px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at center,
    rgba(124, 255, 107, 0.75),
    rgba(124, 255, 107, 0) 70%
  );
  filter: blur(6px);
  opacity: 0.85;
  pointer-events: none;
  z-index: -1;
}

.ab-hero-actions .btn.secondary {
  background: linear-gradient(
    180deg,
    rgba(71, 199, 255, 0.22),
    rgba(71, 199, 255, 0.06)
  );
  border-color: rgba(71, 199, 255, 0.65);
  color: #eaf8ff;
  text-shadow: 0 0 12px rgba(71, 199, 255, 0.6);
  box-shadow:
    0 0 14px rgba(71, 199, 255, 0.35),
    0 12px 28px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ab-hero-actions .btn.secondary::after {
  background: radial-gradient(
    ellipse at center,
    rgba(71, 199, 255, 0.8),
    rgba(71, 199, 255, 0) 70%
  );
}

.ab-hero-actions .btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 0 20px rgba(124, 255, 107, 0.5),
    0 18px 40px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.ab-hero-actions .btn.secondary:hover {
  box-shadow:
    0 0 20px rgba(71, 199, 255, 0.5),
    0 18px 40px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.section {
  position: relative;
  z-index: 2;
  padding: 110px 24px;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size:
    120px 120px,
    120px 120px;
  opacity: 0.3;
  z-index: 0;
}

.free-page {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(124, 255, 107, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(71, 199, 255, 0.06),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.01) 40%,
      transparent 40%
    ),
    var(--bg);
}

.section .inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

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

/* Portfolio neon accents */
#portfolio::before {
  background-image:
    radial-gradient(
      circle at 12% 8%,
      rgba(124, 255, 107, 0.14),
      transparent 45%
    ),
    radial-gradient(
      circle at 86% 90%,
      rgba(71, 199, 255, 0.12),
      transparent 50%
    ),
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size:
    cover,
    cover,
    140px 140px,
    140px 140px;
  background-repeat: no-repeat;
  background-blend-mode: screen, screen, normal, normal;
}

#portfolio::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0px,
    rgba(255, 255, 255, 0.07) 2px,
    transparent 2px,
    transparent 70px
  );
  opacity: 0.16;
  mix-blend-mode: screen;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.85)
  );
  z-index: 0;
}

.section-title {
  text-align: center;
  display: grid;
  gap: 10px;
  margin-bottom: 48px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  justify-content: center;
}

.label::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.label::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-title h1,
.section-title h2 {
  margin: 0;
  font-family: "Press Start 2P", cursive;
  font-size: clamp(20px, 3vw, 28px);
}

.section-title p {
  max-width: 780px;
  margin: 0 auto;
  color: #c4c9e1;
  line-height: 1.6;
}

.stats-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 10px 16px;
}

.stat strong {
  display: block;
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 6px;
  font-family: "Press Start 2P", cursive;
  letter-spacing: 1px;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section.why::before {
  background-image: none;
}

.why-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 520px;
  background:
    linear-gradient(
      90deg,
      rgba(11, 10, 19, 0.88) 0%,
      rgba(11, 10, 19, 0.65) 40%,
      rgba(11, 10, 19, 0.2) 100%
    ),
    url("../img/aliensb.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.why-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 10, 19, 0.1),
    rgba(11, 10, 19, 0.35)
  );
  pointer-events: none;
}

.why-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 60px 46px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.why-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-right .why-card {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.why-right .why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-left {
  max-width: 520px;
  display: grid;
  gap: 16px;
  align-content: center;
}

.why-left .hand {
  font-size: 32px;
}

.why-left .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 700;
  color: #fff;
  box-shadow: var(--shadow);
}

.why-left h3 {
  margin: 0;
  font-family: "Press Start 2P", cursive;
  font-size: clamp(22px, 4vw, 30px);
  letter-spacing: 1px;
}

.why-left p {
  margin: 0;
  color: #e5e7f2;
  line-height: 1.65;
  font-size: 16px;
}

.why-left .btn {
  width: fit-content;
  padding: 12px 18px;
}

.free-page {
  padding: 150px 16px 0;
}

body.ab-adblock-locked {
  overflow: hidden !important;
}

body.ab-adblock-locked > *:not(.ab-adblock-overlay) {
  pointer-events: none !important;
  user-select: none !important;
  filter: blur(2px) grayscale(0.2);
}

.ab-adblock-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(6, 7, 12, 0.84);
  backdrop-filter: blur(8px);
}

body.ab-adblock-locked .ab-adblock-overlay {
  display: flex;
}

.ab-adblock-card {
  width: min(560px, 100%);
  background: rgba(14, 13, 25, 0.98);
  border: 1px solid rgba(124, 255, 107, 0.35);
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6);
  padding: 24px 22px;
  text-align: center;
  display: grid;
  gap: 12px;
}

.ab-adblock-card h2 {
  margin: 0;
  font-size: clamp(20px, 4vw, 30px);
  color: #ecfff1;
}

.ab-adblock-card p {
  margin: 0;
  color: #cfd5eb;
  line-height: 1.55;
}

.ab-adblock-card .btn {
  justify-self: center;
}

.portfolio-page {
  padding: 130px 16px 0;
  position: relative;
  overflow: hidden;
}

.portfolio-page .section::before {
  display: none;
}

.policy-page .section::before {
  display: none;
}

.portfolio-page::before,
.portfolio-page::after {
  content: "";
  position: absolute;
  inset: -40px;
  pointer-events: none;
  background-repeat: repeat;
  opacity: 0.25;
  animation: lineShift 18s linear infinite;
}

.portfolio-page::before {
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06) 0px,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px,
    transparent 120px
  );
}

.portfolio-page::after {
  background-image: repeating-linear-gradient(
    180deg,
    rgba(124, 255, 107, 0.15) 0px,
    rgba(124, 255, 107, 0.15) 1px,
    transparent 1px,
    transparent 140px
  );
  animation-duration: 22s;
  animation-direction: reverse;
}

@keyframes lineShift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(60px, 60px, 0);
  }
}

.policy-page {
  padding: 130px 16px 0;
  position: relative;
  overflow: hidden;
}

.policy-inner {
  max-width: 1000px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
}

.policy-embed {
  display: none;
}

.policy-content {
  background: rgba(11, 10, 19, 0.92);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  display: grid;
  gap: 10px;
}

.policy-content h3 {
  margin: 32px 0 8px;
  font-size: 22px;
}

.policy-content h4 {
  margin: 12px 0 4px;
  font-size: 16px;
}

.policy-content p {
  margin: 0;
  color: #cfd5eb;
  line-height: 1.6;
}

.policy-links {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-weight: 700;
}

.policy-updated {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #cfd5eb;
  font-weight: 700;
}

.policy-updated.align-right {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 12px;
}

.policy-links a {
  color: var(--accent);
  border: 1px solid rgba(124, 255, 107, 0.4);
  border-radius: 8px;
  padding: 6px 10px;
  background: rgba(124, 255, 107, 0.08);
}

.policy-page .section-title {
  position: relative;
}

.policy-page::before,
.policy-page::after {
  content: "";
  position: absolute;
  inset: -60px;
  pointer-events: none;
  background-repeat: repeat;
  opacity: 0.18;
  animation: lineShift 10s linear infinite;
  z-index: 0;
}

.policy-page::before {
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0px,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px,
    transparent 140px
  );
}

.policy-page::after {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(124, 255, 107, 0.1) 0px,
    rgba(124, 255, 107, 0.1) 1px,
    transparent 1px,
    transparent 140px
  );
  animation-direction: reverse;
  animation-duration: 14s;
}

.policy-index {
  background: rgba(11, 10, 19, 0.92);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 10px;
  position: sticky;
  top: 90px;
  height: fit-content;
  align-self: start;
  z-index: 6;
}

.policy-index h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #fff;
}

.policy-index a {
  display: block;
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--accent);
  font-weight: 700;
  background: rgba(124, 255, 107, 0.08);
  border: 1px solid rgba(124, 255, 107, 0.25);
  transition:
    transform 0.15s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.policy-index a:hover {
  transform: translateX(2px);
  border-color: rgba(124, 255, 107, 0.5);
}

/* Contact */
.contact-page {
  padding: 130px 16px 0;
}

.contact-inner {
  max-width: 1100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
}

.contact-card {
  background: rgba(11, 10, 19, 0.92);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: #dfe2f1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.captcha-placeholder {
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 12px;
  color: #cfd5eb;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.form-status {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #dfe2f1;
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.contact-status {
  margin: 18px 0;
}

.form-status-wide {
  max-width: 100%;
}

.form-status p {
  margin: 0;
  font-weight: 500;
}

.form-status.is-success {
  border-color: rgba(124, 255, 107, 0.5);
  background: rgba(124, 255, 107, 0.08);
  color: #e6ffe9;
}

.form-status.is-error {
  border-color: rgba(255, 119, 119, 0.5);
  background: rgba(255, 119, 119, 0.08);
  color: #ffe1e1;
}

.recaptcha-slot {
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  display: inline-block;
}

.recaptcha-note {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2px;
}

.contact-panel h3 {
  margin: 0 0 8px;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: #dfe2f1;
  transition:
    transform 0.15s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.contact-links a i {
  width: 18px;
  text-align: center;
}

.contact-links a:hover {
  transform: translateX(2px);
  border-color: rgba(124, 255, 107, 0.5);
  color: var(--accent);
}
.free-layout {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 12px;
  margin: 0 auto;
  padding: 0 10px;
}

.ab-panel-top {
  margin: 0 auto 14px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--border);
  border-radius: 10px;
  color: var(--muted);
  text-align: center;
  padding: 12px;
  font-weight: 700;
}

.ab-panel-left,
.ab-panel-right {
  position: sticky;
  top: 90px;
  align-self: start;
  background: rgba(15, 14, 27, 0.9);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  padding: 10px;
  color: #d7dcf2;
  text-align: center;
  min-height: 620px;
  min-width: 180px;
  display: grid;
  place-items: center;
  font-weight: 700;
  z-index: 5;
  opacity: 1;
  visibility: visible;
}

.ab-panel-left .adsbygoogle,
.ab-panel-right .adsbygoogle {
  width: min(100%, 180px) !important;
  min-width: 160px;
  min-height: 600px !important;
  margin: 0 auto;
}

@media (min-width: 1360px) {
  .free-layout {
    grid-template-columns: 220px 1fr 220px;
  }
  .ab-panel-left,
  .ab-panel-right {
    min-width: 200px;
  }
  .ab-panel-left .adsbygoogle,
  .ab-panel-right .adsbygoogle {
    width: min(100%, 200px) !important;
    min-width: 180px;
  }
}

.free-hero .section-title {
  margin-bottom: 20px;
  text-align: center;
}

.free-hero .section-title h1,
.free-hero .section-title h2 {
  font-size: clamp(22px, 4vw, 30px);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.free-hero .section-title h1::after,
.free-hero .section-title h2::after {
  content: "";
  display: block;
  margin: 8px auto 0;
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 255, 107, 0.8),
    transparent
  );
  box-shadow: 0 0 12px rgba(124, 255, 107, 0.5);
}

.free-hero .section-title .btn {
  margin: 10px auto 0;
  padding: 10px 24px;
  font-size: 14px;
  width: fit-content;
}

.free-hero .section-title p {
  font-size: 15px;
}

.free-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  justify-items: center;
}

.free-card {
  background:
    radial-gradient(
      circle at 20% 15%,
      rgba(124, 255, 107, 0.06),
      transparent 40%
    ),
    #0f0e1b;
  border: 1px solid rgba(124, 255, 107, 0.22);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.55);
  display: grid;
  grid-template-rows: 190px auto;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    border-color 0.2s ease;
  content-visibility: auto;
  contain-intrinsic-size: 350px 420px;
}

.free-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 255, 107, 0.4);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.6);
}

.free-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
}

.free-thumb {
  position: relative;
}

.free-thumb .info-badge {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 0.1px solid rgb(255 255 255 / 45%);
  background: rgba(15, 14, 27, 0.65);
  display: grid;
  place-items: center;
  color: #dfffe0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.free-thumb .info-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 255, 107, 0.6);
  background: rgba(15, 14, 27, 0.85);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.free-thumb .info-badge i {
  font-size: 14px;
}

.edition-pills {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 4px 4px;
  background: rgba(15, 14, 27, 0.7);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  font-size: xx-small;
}

.free-meta {
  padding: 12px;
  display: grid;
  gap: 14px;
  text-align: center;
}

.free-meta h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: 0.4px;
  justify-self: center;
}

.free-meta h3::after {
  content: "";
  display: block;
  margin: 8px auto 0;
  width: 60px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 255, 107, 0.8),
    transparent
  );
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: #b9c6d8;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.version-row {
  justify-content: center;
}

.meta-badge {
  background: rgba(124, 255, 107, 0.08);
  border: 1px solid rgba(124, 255, 107, 0.3);
  border-radius: 8px;
  padding: 4px 8px;
  font-weight: 700;
  line-height: 1.2;
  color: #dfffe0;
}

.meta-badge.editions {
  color: var(--accent);
  border-color: rgba(124, 255, 107, 0.45);
  background: rgba(124, 255, 107, 0.12);
}

.meta-badge.version-badge {
  flex-shrink: 0;
}

.meta-badge.edition {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
}

.meta-badge.java {
  background: rgba(139, 94, 60, 0.18);
  border-color: rgba(139, 94, 60, 0.35);
  color: #f1e2d1;
}

.meta-badge.bedrock {
  background: rgba(130, 138, 150, 0.18);
  border-color: rgba(130, 138, 150, 0.35);
  color: #d9dee6;
}

.meta-editions {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

.free-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.free-actions.dual {
  justify-content: center;
}

.free-actions .btn {
  padding: 10px 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  border: 1px solid rgba(124, 255, 107, 0.25);
  background: rgba(124, 255, 107, 0.08);
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
  color: #ffffff;
}

.free-actions .btn i {
  font-size: 16px;
  font-weight: 800;
  display: block;
}

.free-actions .btn.icon-only {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 10px;
  color: #ffffff;
}

.free-actions .btn.icon-only span {
  display: none;
}

.free-actions .action-solid {
  background: linear-gradient(
    135deg,
    rgba(124, 255, 107, 0.22),
    rgba(124, 255, 107, 0.12)
  );
  border-color: rgba(124, 255, 107, 0.45);
  color: #ffffff;
}

.free-actions .action-ghost {
  background: rgba(124, 255, 107, 0.06);
}

.free-actions .action-outline {
  background: linear-gradient(
    135deg,
    rgba(71, 199, 255, 0.18),
    rgba(71, 199, 255, 0.1)
  );
  border-color: rgba(71, 199, 255, 0.45);
  color: #ffffff;
}

.free-actions .action-disabled {
  background: rgba(148, 154, 170, 0.12);
  border-color: rgba(148, 154, 170, 0.35);
  color: #b8bcc8;
  box-shadow: none;
  position: relative;
  cursor: not-allowed;
  pointer-events: none;
}

.free-actions .action-disabled::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 2px;
  background: rgba(178, 182, 195, 0.75);
  transform: rotate(-8deg);
}

.free-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.free-actions .action-disabled:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(148, 154, 170, 0.35);
}

.download-page .download-card {
  margin: 0 auto;
  max-width: 520px;
  background: rgba(11, 10, 19, 0.92);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  display: grid;
  gap: 12px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.download-page .download-card .btn {
  width: fit-content;
  margin: 0 auto;
}

.free-actions .action-solid:hover {
  border-color: rgba(124, 255, 107, 0.6);
  background: linear-gradient(
    135deg,
    rgba(124, 255, 107, 0.28),
    rgba(124, 255, 107, 0.14)
  );
}

.free-actions .action-outline:hover {
  border-color: rgba(71, 199, 255, 0.7);
  background: linear-gradient(
    135deg,
    rgba(71, 199, 255, 0.28),
    rgba(71, 199, 255, 0.14)
  );
  box-shadow: 0 12px 24px rgba(35, 120, 160, 0.35);
}

.btn.ghost {
  background: transparent;
  border: 1px dashed var(--border);
}

@media (max-width: 1200px) {
  .free-layout {
    grid-template-columns: 160px 1fr 160px;
  }
  .ab-panel-left .adsbygoogle,
  .ab-panel-right .adsbygoogle {
    width: min(100%, 160px) !important;
    min-width: 140px;
  }
}

@media (max-width: 900px) {
  .free-layout {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
  .ab-panel-left,
  .ab-panel-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .free-layout {
    grid-template-columns: 1fr !important;
    justify-items: stretch;
  }
  .ab-panel-left,
  .ab-panel-right {
    display: none !important;
  }
  .ab-panel-top {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .free-actions {
    grid-template-columns: 1fr;
  }
  .free-card {
    grid-template-rows: 160px auto;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  }
}
.why-right {
  display: grid;
  gap: 16px;
  align-content: center;
}

.why-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  color: #fff;
  box-shadow: var(--shadow);
}

.why-card .num {
  font-family: "Press Start 2P", cursive;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
  opacity: 0.9;
}

.why-card strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.8px;
}

.why-card span {
  color: #e5e7f2;
  font-size: 15px;
  line-height: 1.5;
}

.gallery {
  position: relative;
  height: clamp(270px, 34vw, 410px);
  display: block;
  perspective: 1200px;
  overflow: hidden;
}

.gallery figure {
  position: absolute;
  top: 0;
  left: 50%;
  width: 32%;
  min-width: 220px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #121020;
  box-shadow: var(--shadow);
  transition:
    transform 0.45s ease,
    opacity 0.35s ease,
    box-shadow 0.45s ease,
    z-index 0.35s ease;
  transform-origin: center center;
  transform: translateX(-50%);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.35s ease;
}

.gallery figure.active {
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.62);
  opacity: 1;
}

.gallery figure.side {
  opacity: 0.7;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.gallery figure.side img {
  filter: saturate(0.62) brightness(0.72) contrast(0.9);
}

/* Portfolio page grid */
.portfolio-page .section .inner {
  max-width: 1500px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 6px;
  align-items: stretch;
  justify-items: center;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(16, 14, 28, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease;
  aspect-ratio: 16 / 9;
  width: min(100%, 360px);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.portfolio-card figcaption {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
}

.portfolio-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.lightbox-content {
  position: relative;
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d0c17;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  display: grid;
  grid-template-rows: 1fr auto;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #080711;
}

.lightbox-caption {
  padding: 12px 16px;
  color: #e8ebff;
  border-top: 1px solid var(--border);
  display: none;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  display: grid;
  place-items: center;
}

.shop-section {
  padding-left: 0;
  padding-right: 0;
}

#shop .inner {
  max-width: none;
  width: 100%;
  padding: 0;
}

.shop-body {
  display: grid;
  grid-template-columns: minmax(320px, 42%) 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  padding: 0 40px;
}

.shop-left .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.shop-left h2 {
  font-family: "Press Start 2P", cursive;
  font-size: clamp(22px, 4vw, 32px);
  margin: 10px 0 14px;
  letter-spacing: 1px;
}

.shop-left p {
  color: #d8dcee;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 640px;
}

.shop-left .btn {
  margin-top: 12px;
  padding: 14px 18px;
}

.device-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1600px;
  width: 100%;
}

.device-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 60%,
      rgba(124, 255, 107, 0.62),
      transparent 48%
    ),
    radial-gradient(
      circle at 78% 30%,
      rgba(71, 199, 255, 0.52),
      transparent 52%
    );
  filter: blur(6px);
  mix-blend-mode: screen;
  z-index: 0;
}

.monitor {
  position: relative;
  width: 88%;
  aspect-ratio: 16 / 9.5;
  background: #0f1020;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
  transform: rotateY(-12deg) rotateX(2deg) translateX(10px);
  transition: transform 0.2s ease;
  z-index: 1;
  animation: monitorFloat 7s ease-in-out infinite alternate;
}

.monitor::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(124, 255, 107, 0.08),
    rgba(71, 199, 255, 0.06)
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

.monitor .screen {
  position: absolute;
  inset: 6px;
  background: url("../img/store_display.webp") center/cover no-repeat;
  border-radius: 12px;
  overflow: hidden;
}

@keyframes monitorFloat {
  0% {
    transform: rotateY(-12deg) rotateX(2deg) translateX(10px) translateY(0);
  }
  50% {
    transform: rotateY(-10deg) rotateX(3deg) translateX(6px) translateY(-8px);
  }
  100% {
    transform: rotateY(-14deg) rotateX(1deg) translateX(12px) translateY(6px);
  }
}

.phone {
  position: absolute;
  width: 26%;
  aspect-ratio: 9 / 16;
  background: #0b0c18;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  transform: translate(-130%, 14%) rotateY(16deg) rotateX(10deg);
  z-index: 2;
  animation: phoneFloat 6.5s ease-in-out infinite alternate;
}

.phone::after {
  content: "";
  position: absolute;
  inset: 10px 8px;
  background: url("../img/mobile_display.webp") center/cover no-repeat;
  border-radius: 16px;
}

@keyframes phoneFloat {
  0% {
    transform: translate(-130%, 14%) rotateY(16deg) rotateX(10deg) translateY(0);
  }
  50% {
    transform: translate(-128%, 12%) rotateY(18deg) rotateX(8deg)
      translateY(-10px);
  }
  100% {
    transform: translate(-132%, 16%) rotateY(15deg) rotateX(12deg)
      translateY(8px);
  }
}

@media (max-width: 960px) {
  .ab-top-bar,
  .top-bar {
    display: none;
  }
  .ab-nav,
  nav {
    display: none;
  }
  .ab-mobile-bar,
  .mobile-bar {
    display: flex;
  }
  .ab-hero,
  .hero {
    padding-top: 40px;
    gap: 12px;
    width: 100%;
  }
  .ab-hero-content {
    gap: 16px;
  }
  .ab-hero-visuals {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }
  .ab-hero-visual-left,
  .ab-hero-visual-right {
    justify-content: center;
  }
  .ab-hero-dragon {
    display: none;
  }
  .ab-hero-island {
    width: min(300px, 72vw);
  }
  .ab-hero-dragon {
    width: min(320px, 76vw);
  }
  .ab-pixel-title,
  .pixel-title {
    font-size: clamp(22px, 7vw, 30px);
    letter-spacing: 1px;
  }
  .ab-pixel-title {
    letter-spacing: 0.5px;
  }
  .ab-hero .ab-hero-subtitle,
  .hero .subtitle {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .ab-hero p,
  .hero p {
    max-width: 92%;
    font-size: 14px;
    line-height: 1.5;
  }
  .section {
    padding: 80px 18px;
  }
  .gallery {
    height: clamp(220px, 50vw, 320px);
  }
  .gallery figure {
    width: 70%;
  }
  .section .inner {
    max-width: 100%;
  }
  .shop-body {
    grid-template-columns: 1fr;
    padding: 0 22px;
  }
  .monitor {
    width: 100%;
    transform: rotateY(-4deg);
  }
  .phone {
    position: absolute;
    width: 32%;
    right: 8%;
    transform: translate(10%, 18%) rotateY(10deg);
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .why-content,
  .why-card {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Testimonials */
#testimonials {
  overflow: hidden;
}

.testimonials {
  position: relative;
  overflow: hidden;
  padding-top: 10px;
}

.testimonial-track {
  position: relative;
  height: 240px;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(380px, 90%);
  padding: 18px;
  background: rgba(24, 22, 40, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  transform: translateX(-50%);
  transition:
    transform 0.5s ease,
    opacity 0.45s ease,
    box-shadow 0.5s ease,
    z-index 0.3s ease;
}

.testimonial .author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
}

.stars {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  font-weight: 700;
  color: #eaeefd;
  margin: 0 auto;
}

.rating-badge .stars-badge {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}

.heart-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-image: url("https://img.icons8.com/fluency/48/pixel-heart.png");
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
}

.controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.circle-btn:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.ab-footer,
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px 20px;
  background: #0a0814;
}

.ab-footer-wrap,
.footer-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  align-items: start;
}

.ab-footer-brand,
.footer-brand {
  display: grid;
  gap: 12px;
}

.ab-footer-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.ab-footer-logo .ab-logo-img,
.footer-logo .logo-img {
  height: 60px;
  width: auto;
}

.ab-footer-logo-text,
.footer-logo-text {
  font-size: 18px;
}

.ab-footer-brand p,
.footer-brand p {
  margin: 0;
  color: #c2c7de;
  line-height: 1.6;
}

.ab-social,
.social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ab-social a,
.social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.15s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.ab-social a i,
.social a i {
  color: #c2c7de;
  font-size: 15px;
}

.ab-social a:hover,
.social a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.ab-footer-links h4,
.footer-links h4 {
  margin: 0 0 12px;
  font-family: "Press Start 2P", cursive;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
}

.ab-link-columns,
.link-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px 24px;
}

.ab-link-columns a,
.link-columns a {
  color: #c2c7de;
  font-size: 14px;
  line-height: 1.8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 4px 6px;
  text-align: center;
  display: block;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.ab-link-columns a:hover,
.link-columns a:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.ab-footer-bottom,
.footer-bottom {
  max-width: 1280px;
  margin: 28px auto 0;
  color: #6f748e;
  font-size: 13px;
  text-align: center;
}

.ab-cookie-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 11000;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.ab-cookie-toggle {
  width: 72px;
  height: 72px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  animation: abCookieFloat 2.8s ease-in-out infinite;
}

.ab-cookie-widget.is-open .ab-cookie-toggle {
  animation: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ab-cookie-toggle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.4));
}

.ab-cookie-popup {
  width: min(340px, calc(100vw - 28px));
  background: rgba(11, 10, 19, 0.98);
  border: 1px solid rgba(124, 255, 107, 0.35);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  padding: 14px 14px 12px;
  display: none;
  gap: 12px;
  position: relative;
}

.ab-cookie-popup[hidden] {
  display: none !important;
}

.ab-cookie-widget.is-open .ab-cookie-popup {
  display: grid;
}

.ab-cookie-popup p {
  margin: 0;
  color: #d8dcee;
  line-height: 1.5;
  font-size: 14px;
  padding-right: 26px;
}

.ab-cookie-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: transparent;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
}

.ab-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ab-cookie-actions .btn {
  padding: 10px 12px;
}

body.ab-consent-pending {
  overflow: hidden !important;
}

body.ab-consent-pending > *:not(.ab-consent-gate) {
  pointer-events: none !important;
  user-select: none !important;
  filter: blur(3px) grayscale(0.18);
}

.ab-consent-gate {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background:
    radial-gradient(circle at top, rgba(124, 255, 107, 0.12), transparent 38%),
    rgba(6, 7, 12, 0.9);
  backdrop-filter: blur(10px);
}

.ab-consent-gate:not([hidden]) {
  display: flex;
}

.ab-consent-card {
  width: min(720px, 100%);
  display: grid;
  gap: 14px;
  padding: 28px 26px;
  border-radius: 20px;
  border: 1px solid rgba(124, 255, 107, 0.28);
  background: linear-gradient(180deg, rgba(18, 19, 32, 0.98), rgba(10, 11, 20, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.58);
}

.ab-consent-badge {
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 255, 107, 0.35);
  background: rgba(124, 255, 107, 0.1);
  color: #caffc6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ab-consent-card h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
  color: #f5f7ff;
}

.ab-consent-card p {
  margin: 0;
  color: #d8dcee;
  line-height: 1.65;
}

.ab-consent-note {
  font-size: 14px;
  color: #b8bfd7;
}

.ab-consent-note a {
  color: #9cff83;
}

.ab-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.ab-consent-actions .btn {
  min-height: 48px;
}

@keyframes abCookieFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

.ab-footer-divider,
.footer-divider {
  width: 34ch;
  max-width: 90%;
  margin: 24px auto 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(124, 255, 107, 0.1),
    rgba(124, 255, 107, 0.4),
    rgba(124, 255, 107, 0.1)
  );
  box-shadow: 0 0 18px rgba(124, 255, 107, 0.45);
}

@media (max-width: 720px) {
  .ab-site-header {
    min-height: 100vh;
    padding: 120px 16px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .testimonial-track {
    height: 260px;
  }
  .ab-nav {
    position: static;
    transform: none;
    width: 100%;
    border-radius: 0;
  }
  .ab-hero-actions {
    gap: 10px;
  }
  .section {
    padding: 70px 16px;
  }
  .why-content {
    padding: 32px 20px;
  }
  .gallery {
    height: clamp(220px, 55vw, 320px);
  }
  .shop-body {
    padding: 0 12px;
  }
  .device-stage {
    min-height: 420px;
  }
  .ab-footer-wrap {
    grid-template-columns: 1fr;
  }
  .ab-link-columns {
    grid-template-columns: 1fr;
  }
  .ab-cookie-widget {
    right: 12px;
    bottom: 12px;
  }
  .ab-cookie-toggle {
    width: 64px;
    height: 64px;
  }
  .ab-consent-card {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .ab-consent-actions {
    flex-direction: column;
  }
  .ab-consent-actions .btn {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-page {
    padding: 82px 0 0;
  }

  .contact-page .section {
    padding: 24px 0 56px;
  }

  .contact-page .inner.contact-inner {
    padding: 0 16px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .policy-page {
    padding: 82px 0 0;
  }

  .policy-page .section {
    padding: 24px 0 56px;
  }

  .policy-page .inner.policy-inner {
    padding: 0 16px;
  }

  .policy-index {
    position: static;
    top: auto;
    z-index: auto;
  }

  .policy-updated.align-right {
    position: static;
    display: inline-flex;
    margin-top: 10px;
  }
}

@media (max-width: 720px) {
  .ab-site-header.ab-no-hero {
    min-height: 0;
    padding: 0;
    display: block;
    background: transparent;
  }

  .contact-page {
    padding-top: 74px;
  }

  .contact-page .section {
    padding-top: 16px;
  }

  .policy-page {
    padding-top: 74px;
  }

  .policy-page .section {
    padding-top: 16px;
  }

  .policy-content h3 {
    font-size: 18px;
    margin-top: 20px;
  }

  .policy-updated.align-right {
    display: flex;
    width: fit-content;
    margin: 8px auto 0;
    padding: 4px 10px;
    font-size: 11px;
    justify-content: center;
  }
}
