:root {
  --bg: #0d0d0d;
  --text: #b7bdc7;
  --text-hover: #ffffff;
  --accent: #4db8ff;
  --header-height: 64px;
}
@font-face {
  font-family: "DIN Next LT Pro";
  src: url("fonts/DINNextLTPro-Light.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN Next LT Pro";
  src: url("fonts/DINNextLTPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN Next LT Pro";
  src: url("fonts/DINNextLTPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN Next LT Pro";
  src: url("fonts/DINNextLTPro-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN Next LT Pro";
  src: url("fonts/DINNextLTPro-Black.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN Next LT Pro";
  src: url("fonts/DINNextLTPro-Heavy.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DIN Next LT Pro", Arial, sans-serif;
  background: #111111;
  user-select: none;
}

.container {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.inner-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}
/* ===== HEADER ===== */
.site-header {
  background: #000;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid #b3b6b7;
  position: fixed;
  width: 100%;
  top: 0;
}
.site-header .container {
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Logo (placeholder â€“ replace the <img> src with your own logo) */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 30px;
  display: block;
}
.logo span {
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== NAV ===== */
.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
}
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 100%;
}
.main-nav > ul > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  height: 100%;
  transition: color 0.15s ease;
  cursor: pointer;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.open > a {
  color: #fff;
}
.main-nav > ul > li > a:hover .caret {
  transform: rotate(-135deg);
}
.caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid rgb(255 255 255);
  border-bottom: 2px solid rgb(255 255 255);
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.15s ease;
}
.main-nav > ul > li.open .caret {
  transform: rotate(225deg);
  margin-top: 3px;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #000000;
  opacity: 0;
  visibility: hidden;
}
.main-nav > ul > li:hover .dropdown,
.main-nav > ul > li.open .dropdown {
  opacity: 1;
  visibility: visible;
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: normal;
  text-transform: uppercase;
}
.dropdown a:hover {
  color: #fff;
}

/* ===== RIGHT ACTIONS ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.btn-signup,
.header-actions *:first-child {
  display: inline-block;
  box-shadow: inset 0 0 0 1px #0768af;
  border-radius: 20px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  background: rgba(7, 104, 175, 0.5);
  padding: 7px 15px 5px;
  border: 1px solid transparent;
}
.btn-signup:hover {
  background: rgba(7, 104, 175, 0.7);
  border: 1px solid #0768af;
  box-shadow: inset 0 0 0 2px #0768af;
}
.link-login {
  color: #b3b6b7;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.15s ease;
}
.link-login:hover {
  color: #fff;
}

/* ===== MOBILE MENU TOGGLE (hamburger) ===== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}
.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background: #000;
  user-select: none;
  cursor: grab;
  margin-top: 60px;
}
.hero-slider,
.hero-slider * {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
.hero-slider.dragging {
  cursor: grabbing;
}

/* ===== TRACK (holds all slides side by side, moved with transform) ===== */
.slider-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.5s ease;
  will-change: transform;
}

.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

/* background image, slowly zooming = "animated" background */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  justify-content: center;
  align-items: center;
  display: flex;
}
.main-nav .header-actions {
  display: none;
}
.slide-bg video,
.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* dark gradient over the left side so text stays readable */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.75) 25%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0) 65%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  padding: 0 0 0 70px;
  color: #fff;
  pointer-events: none; /* clicks pass through except on real buttons below */
}
.slide-content > * {
  pointer-events: auto;
}

.badge-logo {
  max-width: 500px;
  margin-bottom: 22px;
}

.slide-text {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 25px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.cta-row {
  display: flex;
  gap: 16px;
}
.btn {
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  border: 1px solid transparent;
  padding: 1em 0;
  border-radius: 24px;
  display: block;
  text-align: center;
  transition: box-shadow 250ms ease-out, border 300ms ease-out,
    background 300ms ease-out;
  font-family: "DIN Next LT Pro", Arial, sans-serif;
  background: rgba(7, 104, 175, 0.5);
  box-shadow: inset 0 0 0 1px #0768af;
  width: 250px;
}
.btn-primary:hover {
  background: #0b4c85;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ===== ARROWS ===== */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.75);
}
.arrow-prev {
  left: 24px;
}
.arrow-next {
  right: 24px;
}

/* ===== BOTTOM CONTROL BAR (arrows are placed inline at bottom like reference) ===== */
.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 22px;
  border-radius: 30px;
}
.ctrl-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
#ctrlPrev {
  transform: rotate(180deg);
}
.dots {
  display: flex;
  gap: 10px;
  flex: 1;
  justify-content: center;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #b3b6b7;
  cursor: pointer;
  padding: 0;
}
.dot.active {
  background: #fff;
  border: #fff;
}

/* remove the separate side arrows on small screens to reduce clutter */
@media (max-width: 640px) {
  .slider-arrow {
    display: none;
  }
  .slide-content {
    padding-left: 24px;
    max-width: 90%;
  }
  .slide-text {
    font-size: 16px;
  }
}
.news-section {
  max-width: 1500px;
  margin: 0 auto;
  background-image: radial-gradient(
    40% 20% at 50% 0,
    rgba(104, 104, 104, 0.85),
    #111111
  );
  padding: 50px 0;
}

.news-title {
  color: #fff;
  text-align: center;
  font-size: 34px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 22px;
}

/* ===== TABS ===== */
.news-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  border-top: 1px solid #b3b6b7;
  border-bottom: 1px solid #b3b6b7;
}
.news-tabs li {
  width: 137px;
  height: 70px;
  position: relative;
  font-weight: normal;
  font-size: 20px;
  text-transform: uppercase;
  color: #b3b6b7;
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  z-index: 2;
  border-bottom: 0px solid #0768af;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-tabs li.active,
.news-tabs li:hover {
  color: #ffffff;
  font-weight: 600;
  background-color: rgba(7, 104, 175, 0.2);
  border-bottom: 7px solid #0768af;
}
.news-tabs a {
  color: #8a8f97;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.news-tabs a img {
  width: 100%;
  filter: grayscale(1) brightness(0.65);
}
.news-tabs a:hover,
.news-tabs li.active a,
.news-tabs li:hover a {
  color: #fff;
}

/* ===== CARD GRID ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.news-card {
  position: relative;
  background: radial-gradient(100% 100% at 50.52% 0%, #686868 0%, #000000 100%);
  overflow: hidden;
  text-decoration: none;
  display: block;
  border: 1px solid #1e1e1e;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 520px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}
.news-card:hover .card-body {
  height: 60%;
}

.card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  flex: 1;
}

.card-body {
  padding: 18px 22px 26px;
  position: relative;
  height: 260px;
  transition: all 0.3s ease;
}

.card-date {
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.card-heading {
  line-height: 1.4;
  position: relative;
  font-weight: 600;
  font-size: 20px;
  transition: all 0.3s ease;
  color: #fff;
}

/* accent progress bar that fills blue on hover */
.card-bar {
  height: 4px;
  width: 100%;
  background: #3a3a3a;
  margin-bottom: 12px;
  position: relative;
}
.card-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 14%;
  background: #444;
  transition: background 0.25s ease, width 0.25s ease;
}
.news-card:hover .card-bar::after {
  background: #2f8fe0;
  width: 35%;
}

/* description text, hidden until hover */
.card-desc {
  color: #c3c7cd;
  font-size: 13px;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 14px;
}
.news-card:hover .card-desc {
  max-height: 125px;
  opacity: 1;
}
.news-card:hover .blog-divider-wrapper:before,
.news-card:hover .blog-divider-wrapper *:before,
.news-card:hover .blog-divider-wrapper *:after {
  background-color: rgb(7, 104, 175);
}
.blog-divider-wrapper {
  position: relative;
  width: 100%;
  height: 10px;
  margin: 14px 0px;
  z-index: 0;
}
.blog-divider-wrapper::before {
  content: " ";
  position: absolute;
  top: 0px;
  left: 93%;
  bottom: 0;
  width: 75px;
  height: 1px;
  background-color: #b3b6b7;
  z-index: 1;
  -webkit-transform: rotate(45deg);
  transform-origin: 0% 0%;
  transition: all 0.3s ease;
}
.blog-divider::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 65px;
  height: 10px;
  background-color: #b3b6b7;
  z-index: 1;
  transition: all 0.3s ease;
}
.blog-divider::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 93%;
  height: 1px;
  background-color: #b3b6b7;
  z-index: 1;
  transition: all 0.3s ease;
}

.card-readmore {
  position: relative;
  font-size: 14px;
  margin-top: 20px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 0;
  transition: all 0.3s ease;
  color: #fff;
}
.news-card:hover .card-readmore {
  color: #2f8fe0;
}

/* ===== VIEW ALL BUTTON ===== */
.view-all-wrap {
  text-align: center;
  margin-top: 40px;
}
.btn-view-all {
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.1;
  border: 1px solid transparent;
  padding: 1em 0;
  border-radius: 24px;
  margin: auto;
  display: block;
  text-align: center;
  transition: box-shadow 250ms ease-out, border 300ms ease-out,
    background 300ms ease-out;
  box-shadow: inset 0 0 0 1px #ffffff;
  font-family: "DIN Next LT Pro", Arial, sans-serif;
  font-weight: 600;
  width: 250px;
}
.btn-view-all:hover {
  background: rgba(7, 104, 175, 0.7);
  border: 1px solid #0768af;
  box-shadow: inset 0 0 0 2px #0768af;
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-tabs {
    flex-wrap: wrap;
    gap: 18px;
  }
}

.banner {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
}
.banner .inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-image {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  width: 100%;
  background-size: cover;
}

/* dark gradient so text stays readable, direction flips per layout */
.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.overlay-left-dark {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 30%,
    rgb(0 0 0 / 8%) 70%,
    rgb(0 0 0) 97%
  );
}
.overlay-right-dark {
  background: linear-gradient(
    270deg,
    rgb(0 0 0) 33%,
    rgba(0, 0, 0, 0.4) 62%,
    rgb(0 0 0) 100%
  );
}

.banner-content {
  position: relative;
  z-index: 3;
  padding: 40px 60px;
  color: #fff;
  max-width: 480px;
}

.banner-content.align-right {
  margin-left: auto;
  text-align: left;
}

.banner-eyebrow {
  text-transform: uppercase;
  color: #0768af;
  font-size: 48px;
  line-height: 1em;
  font-weight: 600;
  margin: 0;
}

.banner1 .banner-eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 3%;
  font-size: 24px;
  color: #fff;
}

.banner-text {
  font-size: 24px;
  margin: 0 0 15px;
  color: #e6e8eb;
}

.btn-outline {
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.1;
  border: 1px solid transparent;
  padding: 1em 0;
  border-radius: 24px;
  display: block;
  text-align: center;
  transition: box-shadow 250ms ease-out, border 300ms ease-out,
    background 300ms ease-out;
  box-shadow: inset 0 0 0 1px #ffffff;
  font-weight: 600;
  width: 225px;
}
.btn-outline:hover {
  background: rgba(7, 104, 175, 0.7);
  border: 1px solid #0768af;
  box-shadow: inset 0 0 0 2px #0768af;
}

/* ===== BANNER 2 extra: teams list ===== */
.teams-panel {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 70px;
  margin-left: 60px;
  color: #fff;
}
.teams-col h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.teams-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.teams-col li {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #ffffff;
}

@media (max-width: 900px) {
  .banner {
    min-height: auto;
    padding: 40px 0;
    flex-direction: column;
  }
  .banner-image {
    opacity: 0.35;
  }
  .overlay-left-dark,
  .overlay-right-dark {
    background: rgba(0, 0, 0, 0.6);
  }
  .banner-content {
    max-width: 100%;
    padding: 0 24px;
  }
  .teams-panel {
    flex-direction: column;
    margin-left: 0;
    padding: 24px;
    gap: 24px;
  }
}

.site-footer {
  position: relative;
  background: radial-gradient(circle at top, #2c2c2c 0%, #0a0a0a 60%);
  padding: 60px 60px 0;
  overflow: hidden;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col h4 {
  color: #fff;
  font-weight: 500;
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ===== social icons ===== */
.social-icons {
  display: flex;
  gap: 14px;
}
.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.social-icons a:hover {
  background: #fff;
  color: #0a0a0a;
}
.social-icons svg {
  width: 24px;
  aspect-ratio: 1;
  fill: currentColor;
}
.banner .banner-text {
  font-size: 20px;
  width: 300px;
}
/* certification badge */
.cert-badge {
  margin-top: 70px;
  width: 66px;
}
.cert-badge img {
  display: block;
  width: 100%;
}

/* ===== link columns ===== */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #9198a1;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #fff;
}
.footer-links svg {
  width: 16px;
  aspect-ratio: 1;
  fill: currentColor;
  opacity: 0.8;
}

.privacy-icon {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border-radius: 3px;
  padding: 1px 4px;
  margin-left: 4px;
}
.privacy-icon img {
  width: 35px;
  background: url(../../../content/dam/atvi/activision/atvi-touchui/activision/common/footer/check-x.png)
    center center no-repeat;
  background-size: contain;
}

/* ===== back to top ===== */
.back-to-top {
  text-align: center;
  color: #c7cad0;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
}
.back-to-top .circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #666;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}
.back-to-top:hover .circle {
  background: #fff;
  color: #0a0a0a;
}

/* ===== brand block ===== */
.footer-brand {
  text-align: center;
  margin: 70px 0 50px;
  position: relative;
  z-index: 2;
}
.footer-flag {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background-color: #abc;
  background-image: url(source/flags.webp);
  width: 22px;
  height: 12px;
  background-size: auto 12px;
  background-position: 0px 0px;
}
.footer-logo {
  width: 214px;
  margin: 25px auto 14px;
  display: block;
}
.footer-logo-placeholder {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-copyright {
  font-weight: normal;
  color: #ffffff;
  font-size: 12px;
  line-height: 14.4px;
}

/* ===== decorative bottom lines ===== */
.footer-lines {
  height: 120px;
  width: 100%;
  background: #0a0a0a;
  overflow: hidden;
}
.footer-lines svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================================================
 MOBILE OVERRIDES (<=900px)
 Added to make the site fully responsive on phones, matching
 the client's mobile design reference.
 ============================================================ */
@media (max-width: 900px) {
  .footer-lines svg {
    width: 1000px;
  }
  /* ----- HEADER / HAMBURGER NAV ----- */
  .site-header .container {
    gap: 12px;
    justify-content: center;
    position: relative;
  }
  .site-header .container > .header-actions {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    order: -1;
  }

  .site-footer {
    background: #000;
  }
  .main-nav {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    flex: none;
  }
  .main-nav.open {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 0 20px;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 10px 0;
  }
  .main-nav > ul > li {
    height: auto;
    padding: 0 20px;
    border-bottom: 1px solid #222;
    flex-direction: column;
    align-items: start;
  }
  .main-nav > ul > li > a {
    height: auto;
    padding: 16px 0;
    width: 100%;
    justify-content: space-between;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    background: transparent;
    min-width: 0;
    transition: max-height 0.3s ease;
  }
  .main-nav > ul > li.open .dropdown {
    max-height: 400px;
  }
  .header-actions {
    gap: 10px;
  }

  /* ----- HERO SLIDER ----- */
  .slide-bg video,
  .slide-bg img {
    height: 100%;
    width: auto;
  }
  .hero-slider {
    height: 520px;
  }
  .slide-content {
    align-items: center;
    text-align: center;
    padding: 0 24px;
    max-width: 100%;
  }
  .badge-logo {
    max-width: 260px;
    margin: 0 auto 18px;
  }
  .slide-text {
    font-size: 16px;
  }
  .cta-row {
    flex-direction: row;
    width: 100%;
    gap: 12px;
  }
  .btn {
    width: 100%;
  }
  .slider-controls {
    padding: 15px 24px;
    gap: 14px;
    justify-content: center;
    width: calc(100% - 48px);
  }

  /* ----- NEWS TABS -> MOBILE DROPDOWN ----- */
  .news-section {
    background: #000000;
  }
  .news-tabs {
    flex-direction: column;
    border: 1px solid #b3b6b7;
    position: relative;
    margin: 0;
    padding: 0;
    border-left: 0;
    border-right: 0;
  }
  .news-tabs li {
    display: none;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 24px 40px 24px 20px;
    justify-content: flex-start;
    text-align: left;
    background: transparent !important;
    border-bottom: 1px solid #222 !important;
  }
  .news-tabs li:last-child {
    border-bottom: none !important;
  }
  .news-tabs li.active {
    display: flex;
  }
  .news-tabs.open li {
    display: flex;
  }
  .news-tabs::after {
    content: "";
    position: absolute;
    top: 24px;
    right: 20px;
    width: 9px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    pointer-events: none;
  }
  .news-tabs.open::after {
    transform: rotate(225deg);
    top: 20px;
  }

  /* ----- NEWS CARDS: show full content, no hover-only reveal on touch ----- */
  .news-card .card-body,
  .news-card:hover .card-body {
    height: auto;
  }
  .news-card .card-desc,
  .news-card:hover .card-desc {
    max-height: none;
    opacity: 1;
  }
  .news-card .card-bar::after,
  .news-card:hover .card-bar::after {
    background: #2f8fe0;
    width: 35%;
  }
  .news-card .blog-divider-wrapper:before,
  .news-card .blog-divider-wrapper *:before,
  .news-card .blog-divider-wrapper *:after {
    background-color: rgb(7, 104, 175);
  }

  /* ----- BANNERS: image on top, centered content below ----- */
  .banner {
    display: block;
    min-height: auto;
    padding: 0;
  }
  .banner .inner-container {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .banner-image {
    position: relative;
    inset: auto;
    height: 220px;
    width: 100%;
  }
  .main-nav .header-actions {
    display: flex;
    margin-top: 30px;
  }
  .overlay-left-dark,
  .overlay-right-dark {
    display: none;
  }
  .banner-content {
    max-width: 100%;
    padding: 28px 24px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .banner-eyebrow.accent {
    font-size: 36px;
  }
  .banner-text {
    font-size: 17px;
  }
  .teams-panel {
    position: relative;
    flex-direction: row;
    justify-content: center;
    margin: 0;
    gap: 30px;
    padding: 0 20px 32px;
    margin-top: 30px;
  }
  .teams-col h3 {
    text-align: center;
    font-size: 22px;
    width: 100%;
    position: absolute;
    left: 0;
    top: -40px;
  }

  /* ----- FOOTER: centered, reordered so the cert badge sits near the bottom ----- */
  .footer-top {
    align-items: stretch;
    text-align: center;
  }
  .footer-col {
    width: 100%;
  }
  .social-icons {
    justify-content: center;
  }
  .cert-badge {
    margin: 30px auto 0;
  }
  .footer-links a {
    justify-content: center;
  }

  .footer-col:first-child {
    display: contents;
  }
  .footer-col:first-child h4 {
    order: 1;
  }
  .footer-col:first-child .social-icons {
    order: 1;
  }
  .footer-col:first-child .cert-badge {
    order: 5;
  }
  .footer-col:nth-of-type(2) {
    order: 2;
  }
  .footer-col:nth-of-type(3) {
    order: 3;
  }
  .footer-col:nth-of-type(4) {
    order: 4;
  }
  .back-to-top {
    display: none;
  }
}

.login-card {
  width: 100%;
  max-width: 414px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0)
    ),
    rgba(17, 17, 17, 0.8);
  border-radius: 8px;
  padding: 40px 40px 34px;
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.login-logo {
  max-width: 260px;
  margin: 0 auto 24px;
  display: block;
}

.login-title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 18px;
  text-wrap-style: pretty;
}

.title-divider {
  width: 100%;
  max-width: 420px;
  height: 2px;
  background: #2085cf;
  margin: 0 auto 26px;
}

.field-group {
  text-align: left;
  margin-bottom: 18px;
}
.field-label {
  display: block;
  color: #f3f4f5;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}
.field-input-wrap {
  position: relative;
}
.field-input {
  width: 100%;
  background: #1b1b1b;
  border: 1px solid #3c4147;
  border-radius: 2px;
  padding: 8px;
  color: #f3f4f5;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease;
  font-weight: 400;
  font-family: "DIN Next LT Pro";
  height: 40px;
}
.field-input::placeholder {
  color: #717478;
}
.field-input:focus {
  border-color: #79838d;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #c7cad0;
  display: flex;
  align-items: center;
  padding: 4px;
}
.password-toggle svg {
  width: 20px;
  height: 20px;
}
.password-toggle .eye-off {
  display: none;
}
.password-toggle.showing .eye {
  display: none;
}
.password-toggle.showing .eye-off {
  display: block;
}

.btn-signin {
  width: 100%;
  background: #24272a;
  color: #919aa2;
  border: none;
  border-radius: 8px;
  padding: 15px 0;
  font-size: 17px;
  font-weight: 600;
  text-transform: none;
  cursor: pointer;
  margin: 8px 0 20px;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: "DIN Next LT Pro";
}
.btn-signin.ready {
  background: linear-gradient(180deg, rgba(7, 104, 175, 0.6), #0768af), #111;
  color: #fff;
  cursor: pointer;
}
.btn-signin.ready:hover {
  background: #0768af;
}

.help-link {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  margin-bottom: 22px;
}
.help-link:hover {
  color: #fff;
}

.or-text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
}

/* ===== PLATFORM SIGN-IN GRID (placeholders â€” swap icons/links) ===== */
.platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  place-content: center center;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.platform-btn {
  width: 56px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-items: center;
  grid-gap: 10px;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid #3c4147;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
}
.platform-btn:hover {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1)
  );
}

.signup-text {
  color: #e6e8eb;
  font-size: 16px;
}
.signup-text a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}
.signup-text a:hover {
  color: #0d8fff;
}

/* ===== FOOTER LINKS ===== */
.login-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 50px 0 30px;
  max-width: 900px;
}
.login-footer-links a {
  color: #f3f4f5;
  font-size: 17px;
  font-weight: 500;
  text-decoration: underline;
}
.login-footer-links a:hover {
  color: #fff;
}

.login-flag {
  font-size: 20px;
  margin-bottom: 16px;
}

.login-brand-logo {
  max-width: 200px;
  display: block;
  margin: 0 auto 14px;
}

.login-copyright {
  color: #c7cad0;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 520px) {
  .login-card {
    padding: 32px 22px 28px;
  }
  .login-footer-links {
    gap: 14px 20px;
  }
}
.login-page {
  background-image: radial-gradient(
    876px 48.33% at 50% 0,
    rgba(104, 104, 104, 0.8) 0,
    rgba(17, 17, 17, 0.8) 100%
  );
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 30px;
}
.acc-container > {
}
.account-body-div {
  margin-top: 60px;
  background: #fff;
}

/* ===== TOP HEADER (reuses the site header style, light-on-dark) ===== */
.site-header {
  background: #000;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.acc-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.site-header .logo img {
  height: 30px;
  display: block;
  margin-right: 30px;
}
.site-header nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.site-header nav {
  flex: 1;
}
.site-header nav a {
  color: #a9a6a1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
.site-header nav a:hover {
  color: #fff;
}
.site-header .flag {
  font-size: 20px;
}

/* ===== PAGE LAYOUT ===== */
.account-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 40px 80px;
  position: relative;
  flex-direction: row;
  display: flex;
}
.panel-tabs {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 5%;
}
.account-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  padding-bottom: 16px;
  margin-bottom: 30px;
}
.account-name {
  font-size: 25px;
  font-weight: normal;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
  font-family: "Roboto", Arial, sans-serif;
  border-bottom: 1px solid #c4c4c4;
  width: 100%;
  padding: 10px 0;
}

/* profile completion ring */
.completion-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ring-wrap {
  position: relative;
  width: 110px;
  height: 110px;
}
.ring-wrap svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring-bg {
  fill: none;
  stroke: #e5e5e5;
  stroke-width: 6;
}
.ring-progress {
  fill: none;
  stroke: #e8720c;
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dasharray 0.4s ease;
}
.ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: #333333b3;
}
.ring-caption {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #555;
}

/* ===== LAYOUT: SIDEBAR + CONTENT ===== */
.account-body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}

.account-sidebar {
  width: 30%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sidebar-tab {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0px;
  font-weight: 00;
  margin-bottom: 7px;
  cursor: pointer;
  background-color: #ffffff;
  border: 1px solid #444;
  padding: 15px 0;
  text-transform: uppercase;
}
.sidebar-tab.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.account-content {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.content-title {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: "Roboto", Arial, sans-serif;
  border-bottom: 1px solid #c4c4c4;
  width: 100%;
  padding: 10px 0;
}

/* ===== LINKED ACCOUNTS PANELS ===== */
.accounts-panel {
  background: #1a1a1a;
  overflow: hidden;
  margin-bottom: 36px;
}
.panel-header {
  background: #2e2e2e;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 30px;
  font-family: Montserrat, "open sans", Arial, Helvetica, sans-serif;
  flex-wrap: wrap;
}
.provider-icon span,
.provider-icon svg {
  width: 100px !important;
  height: 60px !important;
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center 0;
  padding: 5px;
}
.provider-icon span {
  background-image: url("source/gaming-logo-sprite_360_v6.png");
}
.provider-icon span.span2provider {
  background-image: url("source/social-logo-sprite.png");
  background-repeat: no-repeat;
  background-size: 42%;
}
.panel-header svg {
  width: 20px;
  height: 20px;
  fill: #ccc;
}
.panel-header .info-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #999;
  color: #999;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.panel-subtext {
  color: #ffffff99;
  font-size: 12px;
  font-weight: 400;
  margin-left: 40px;
  width: 100%;
}

.account-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid #fff;
}
.account-row:last-child {
  border-bottom: none;
}

.provider-icon {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.provider-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.account-label {
  flex: 1;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
}

.btn-link {
  width: 150px;
  height: 40px;
  color: #fff;
  background-color: #1e9ffd;
  border: 1px solid #1e9ffd;
  border-radius: 8px;
  padding: 0 5px;
  transition: 0.4s all;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  display: flex;
  font-weight: 400;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 12px;
  gap: 10px;
}
.btn-link:hover {
  background-color: #000;
  border-color: #fff;
}
.btn-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.verify-code-input.input-error {
  border-color: #e05252;
}

.verify-code-error {
  color: #ff6b6b;
  font-size: 12.5px;
  text-align: left;
  margin: -14px 0 16px;
}
/* ===== FOOTER ===== */
.site-footer-acc {
  background: #161616;
  color: #9198a1;
  padding: 40px 40px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footercontainer {
  max-width: 1277px;
  width: 75%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: self-start;
  gap: 24px;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col a {
  color: #7f7f7f;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}
.footer-links-col a:hover {
  text-decoration: none;
  color: #ffe500;
  font-weight: bold;
}

.footer-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-badges img {
  height: 100px;
}
.footer-badges img.footer-logo {
  height: 31px;
  width: auto;
  margin: 0;
}

.footer-copyright {
  width: 100%;
  text-align: left;
  font-size: 12px;
  color: #767b82;
  padding-top: 18px;
}

/* ===== FORM PANEL (Basic Info / Preferences / Privacy tabs) ===== */
.form-panel {
  max-width: 480px;
}
.form-row {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
  color: #333;
}
.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  color: #111;
}
.form-input:focus {
  outline: none;
  border-color: #2f8fe0;
}

.form-row-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.form-row-inline .form-label {
  margin-bottom: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider-toggle {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.slider-toggle::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.switch input:checked + .slider-toggle {
  background: #2f8fe0;
}
.switch input:checked + .slider-toggle::before {
  transform: translateX(20px);
}

/* ===== TAB PANELS ===== */
.tab-panel[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .account-body {
    flex-direction: column;
  }
  .account-sidebar {
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .sidebar-tab {
    flex: 1;
  }
  .account-heading {
    flex-direction: column;
    gap: 20px;
  }
  .btn-link {
    width: 110px;
    justify-content: center;
    padding: 15px;
  }
  .btn-link img {
    display: none;
  }
  .account-label {
    flex: 1;
    font-size: 11px;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .panel-tabs,
  .account-page {
    flex-direction: column;
    align-items: center;
    padding: 7px;
  }
  .acc-container {
    width: 100%;
    justify-content: center;
  }
  .provider-icon {
    scale: 0.6;
  }
}
.account-stats {
  width: 15%;
}

/* ===== EMAIL VERIFY NOTICE ===== */
.verify-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffbf2;
  border: 1px solid #f0d9a6;
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 30px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  max-width: 900px;
}
.verify-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #e8a622;
  color: #e8a622;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.verify-notice a {
  color: #111;
}

/* ===== PANEL ===== */
.accounts-panel {
  background: #1a1a1a;
  overflow: hidden;
  margin-bottom: 36px;
  max-width: 900px;
}
.panel-header svg {
  width: 20px;
  height: 20px;
  fill: #ccc;
}

/* ===== INFO ROWS ===== */
.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid #333;
}
.info-row:last-child {
  border-bottom: none;
}

.info-row-text {
  display: flex;
  flex-direction: row;
  gap: 4px;
  min-width: 0;
}
.info-label {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: 150px;
}
.info-value {
  color: #d8dade;
  font-size: 17px;
  word-break: break-word;
}

.btn-edit {
  background-color: #1a1a1a;
  color: #fff;
  font-family: Montserrat, "open sans", Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  border: 1px solid #d2d2d2;
  border-radius: 8px;
  transition: background-color 0.4s, border-color 0.4s;
  display: flex;
  align-items: center;
  gap: 7px;
  width: 140px;
  height: 45px;
  justify-content: center;
}
.btn-edit:hover {
  background-color: #1e9ffd;
  border-color: #1e9ffd;
}
.btn-edit svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

@media (max-width: 600px) {
  .btn-edit {
    width: 90px;
    font-size: 12px;
    flex-shrink: 0;
  }
  .btn-edit img {
    display: none;
  }
  .info-value {
    font-size: 15px;
  }
  .info-row-text {
    flex-direction: column;
  }
}
/* =========================================================
 ACCOUNT VERIFICATION MODAL (Basic Info -> Birthday "Show")
 ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  padding: 20px;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.verify-modal {
  width: 460px;
  background: #1a1a1a;
  padding: 32px 28px;
  text-align: center;
  transform: translateY(-10px);
  transition: transform 0.2s ease;
}
.modal-overlay.open .verify-modal {
  transform: translateY(0);
}

.verify-modal-title {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.verify-shield {
  width: 30px;
  height: 46px;
  margin: 0 auto 20px;
  color: #3b9dff;
}
.verify-shield img {
  width: 100%;
  height: auto;
  fill: currentColor;
}

.verify-modal-text {
  color: #d8dade;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.verify-code-label {
  color: #d8dade;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 12px;
}

.verify-code-input {
  width: 60%;
  background: #ffffff;
  border: 1px solid #555;
  border-radius: 3px;
  padding: 6px 14px;
  color: #000;
  font-size: 14px;
  text-align: center;
  letter-spacing: 2px;
  outline: none;
  margin-bottom: 22px;
}
.verify-code-input::placeholder {
  color: #777;
  letter-spacing: normal;
}
.verify-code-input:focus {
  border-color: #3b9dff;
}

.btn-verify-primary {
  width: 250px;
  background: #2f8fe0;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 14px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0 auto;
  margin-bottom: 14px;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  text-decoration: none;
}
.btn-verify-primary:hover {
  background: #fff;
  color: #000;
}
.btn-verify-primary:disabled {
  background: #1f5f96;
  cursor: default;
  opacity: 0.85;
}

.btn-verify-cancel {
  width: 250px;
  background: #3a3a3a;
  color: #e6e8eb;
  border: none;
  border-radius: 3px;
  padding: 14px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: inherit;
  margin: 0 auto;
}
.btn-verify-cancel:hover {
  background: #4a4a4a;
}

/* small spinner shown on the primary button while "sending" */
.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn-verify-primary.loading .btn-spinner {
  display: inline-block;
}
.btn-verify-primary.loading .btn-label {
  opacity: 0.85;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.verify-step {
  display: none;
}
.verify-step.active {
  display: block;
}

.pref-email-block {
  margin-bottom: 30px;
}
.pref-email-label {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.pref-email-value {
  color: #111;
  font-size: 16px;
}

.pref-panel {
  max-width: 900px;
}
.pref-intro-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 30px;
  color: #fff;
  background: #0d0d0d;
}
.pref-intro-icon {
  width: 34px;
  height: 34px;
  color: #ccc;
  flex-shrink: 0;
}
.pref-intro-row p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.pref-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 30px;
  background-size: cover;
  background-position: center;
  border-top: 1px solid #2a2a2a;
}
.pref-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 40%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 0;
}
.pref-row .switch,
.pref-row-label {
  position: relative;
  z-index: 1;
}
.pref-row-label {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.pref-unsub-wrap {
  text-align: center;
  margin-top: 36px;
}
.btn-unsubscribe {
  background: #2f8fe0;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: inherit;
}
.btn-unsubscribe:hover {
  background: #1f78c4;
}

@media (max-width: 600px) {
  .pref-row {
    padding: 18px 20px;
  }
  .pref-intro-row {
    padding: 18px 20px;
  }
}

/* ===== PRIVACY & SECURITY TAB ===== */
.privacy-panel {
  max-width: 900px;
}
.privacy-panel-body {
  padding: 26px 30px;
  color: #d8dade;
}

.password-mask {
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.btn-privacy-action {
  display: inline-block;
  width: 270px;
  background: #2f8fe0;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}
.btn-privacy-action:hover {
  background: #1f78c4;
}

.tfa-intro {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
}
.tfa-intro-icon {
  width: 22px;
  height: 22px;
  color: #ccc;
  flex-shrink: 0;
}

.tfa-desc {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 26px;
}

.tfa-method-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid #2a2a2a;
}
.tfa-method-title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.tfa-method-sub {
  font-size: 13px;
  color: #a9adb3;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #999;
  color: #999;
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
  cursor: help;
}

.privacy-legal-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: #c3c7cd;
  margin: 0 0 28px;
}

.privacy-select-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.privacy-select-row label {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 180px;
  flex-shrink: 0;
}
.privacy-select {
  background: #2e2e2e;
  color: #fff;
  border: 1px solid #444;
  border-radius: 2px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  min-width: 200px;
  cursor: pointer;
}

.deactivate-section {
  max-width: 900px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-top: 20px;
}
.deactivate-title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin: 0 0 16px;
}
.deactivate-text {
  font-size: 13.5px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 14px;
}
.deactivate-text a {
  color: #111;
  font-weight: 600;
}
.deactivate-note {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .privacy-panel-body {
    padding: 20px;
  }
  .tfa-method-row {
    flex-wrap: wrap;
  }
  .btn-privacy-action {
    width: 100%;
    text-align: center;
  }
  .privacy-select-row label {
    width: 100%;
  }
  .privacy-select {
    width: 100%;
  }
}
