@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
}

* {
  scroll-behavior: smooth;
  line-height: 1.3;
}

.wrapper {
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.container {
  padding: 0 10px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==== HEADER ==== */
.glx-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(15, 12, 25, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(0, 200, 255, 0.2);
  z-index: 100;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

.glx-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 2rem;
}

/* ==== BRAND ==== */
.glx-brand__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  color: #fafafa;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.glx-brand__name span {
  color: #00eaff;
  font-weight: 500;
}

/* ==== MENU ==== */
.glx-menu__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
  margin: 0;
}

.glx-menu__item {
  position: relative;
  color: #c7c7c7;
  font-size: 1.05rem;
  text-decoration: none;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.glx-menu__item:hover,
.glx-menu__item.current {
  color: #ffffff;
}

.glx-menu__item::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#00eaff), color-stop(un, rgba(0, 0, 119, 0.7333333333)));
  background: linear-gradient(90deg, #00eaff, rgba(0, 0, 119, 0.7333333333) un);
  -webkit-transition: width 0.25s ease-in-out;
  transition: width 0.25s ease-in-out;
}

.glx-menu__item:hover::after,
.glx-menu__item.current::after {
  width: 100%;
}

/* ==== BURGER BUTTON ==== */
.glx-burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 26px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.glx-burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #e0e0e0;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.glx-burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.glx-burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #00e5ff;
  border-radius: 2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* === BURGER ANIMATION WHEN ACTIVE === */
.glx-burger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

.glx-burger.active span:nth-child(2) {
  opacity: 0;
}

.glx-burger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .glx-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 110;
  }
  .glx-menu {
    position: fixed;
    top: 0;
    right: -100%; /* меню спрятано за экран */
    width: 70%;
    height: 100vh;
    background: rgb(14, 18, 30);
    backdrop-filter: blur(15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: right 0.4s ease;
    transition: right 0.4s ease;
    z-index: 100;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  /* меню открыто */
  .glx-menu.active {
    right: 0;
  }
  .glx-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .glx-menu__item {
    font-size: 1.5rem;
    color: #00e5ff;
    -webkit-transition: color 0.3s, text-shadow 0.3s;
    transition: color 0.3s, text-shadow 0.3s;
  }
  .glx-menu__item:hover,
  .glx-menu__item.current {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
  }
  /* бургер-анимация */
  .glx-burger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
            transform: rotate(45deg) translate(5px, 5px);
  }
  .glx-burger.active span:nth-child(2) {
    opacity: 0;
  }
  .glx-burger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
            transform: rotate(-45deg) translate(5px, -5px);
  }
}
/* === HERO SECTION - PlayMatrix Style === */
.glx-hero {
  padding: 7rem 0 6rem;
  background: radial-gradient(circle at top left, #0e0f1d, #05060a);
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glx-hero__inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.glx-hero__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 55%;
          flex: 1 1 55%;
  z-index: 2;
}

.glx-hero__headline {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  background: -webkit-gradient(linear, left top, right top, from(#00f6ff), to(#a34bff));
  background: linear-gradient(90deg, #00f6ff, #a34bff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.glx-hero__description {
  font-size: 1.15rem;
  color: #bcbcbc;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

/* === BUTTONS === */
.glx-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.glx-btn--primary {
  background: linear-gradient(135deg, #00e5ff, #0066ff);
  -webkit-box-shadow: 0 4px 15px rgba(0, 102, 255, 0.35);
          box-shadow: 0 4px 15px rgba(0, 102, 255, 0.35);
  color: #fff;
}

.glx-btn--primary:hover {
  -webkit-transform: translateY(-2px) scale(1.03);
          transform: translateY(-2px) scale(1.03);
}

.glx-btn--ghost {
  border: 2px solid #00e5ff;
  color: #00e5ff;
  margin-left: 1rem;
}

.glx-btn--ghost:hover {
  background: rgba(0, 229, 255, 0.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* === STATS === */
.glx-hero__stats {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 35%;
          flex: 1 1 35%;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.glx-stat {
  padding: 1.5rem;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 14px;
  text-align: center;
  -webkit-transition: border-color 0.3s ease, -webkit-transform 0.25s ease;
  transition: border-color 0.3s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, border-color 0.3s ease;
  transition: transform 0.25s ease, border-color 0.3s ease, -webkit-transform 0.25s ease;
}

.glx-stat:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.35);
}

.glx-stat strong {
  display: block;
  font-size: 1.75rem;
  color: #ffffff;
}

.glx-stat span {
  display: block;
  font-size: 0.95rem;
  color: #a9a9a9;
  margin-top: 0.3rem;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .glx-hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .glx-hero__headline {
    font-size: 2.3rem;
  }
  .glx-btn {
    display: block;
    margin: 1rem auto;
    width: 75%;
  }
  .glx-hero__stats {
    width: 100%;
  }
}
/* ---------- Top Games Section ---------- */
.glx-top-games {
  padding: 5rem 0;
  background: radial-gradient(circle at top right, #0a0a15, #08080d);
}

.glx-top-games .glx-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1rem;
}

.glx-section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00e5ff;
  text-align: center;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.glx-section-desc {
  text-align: center;
  font-size: 1.05rem;
  color: #b5b5b5;
  margin-bottom: 3rem;
}

/* Grid */
.glx-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

/* Game card */
.glx-game-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: linear-gradient(145deg, #111118, #0f0f19);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 1.5rem;
  border-radius: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.glx-game-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 12px 25px rgba(0, 229, 255, 0.3);
          box-shadow: 0 12px 25px rgba(0, 229, 255, 0.3);
}

.glx-game-card img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 229, 255, 0.15);
}

.glx-game-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.glx-game-desc {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 0.95rem;
  color: #a8a8a8;
  margin-bottom: 1rem;
}

/* Play Button */
.glx-btn-play {
  width: 100%;
  padding: 0.6rem 0;
  font-weight: 700;
  background: linear-gradient(135deg, #00e5ff, #0066ff);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.glx-btn-play:hover {
  background: linear-gradient(135deg, #0066ff, #00e5ff);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 12px rgba(0, 229, 255, 0.4);
          box-shadow: 0 6px 12px rgba(0, 229, 255, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .glx-games-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
/* Modal Overlay */
.glx-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 999;
}

/* Active modal */
.glx-modal.active {
  opacity: 1;
  pointer-events: all;
}

/* Modal Content */
.glx-modal-content {
  background: linear-gradient(145deg, #111118, #0f0f19);
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  position: relative;
  -webkit-box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
          box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.glx-modal.active .glx-modal-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* Close Button */
.glx-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #00e5ff;
  cursor: pointer;
}

/* Modal Title */
.glx-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Form Inputs */
.glx-modal-form input[type=text],
.glx-modal-form input[type=email] {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #00e5ff;
  background: #0f0f19;
  color: #fff;
  font-size: 1rem;
}

/* Checkbox */
.glx-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: #b0b0b0;
  font-size: 0.9rem;
}

.glx-checkbox input {
  accent-color: #00e5ff;
}

/* Submit Button */
.glx-btn-primary {
  width: 100%;
  padding: 0.75rem 0;
  background: linear-gradient(135deg, #00e5ff, #0066ff);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.glx-btn-primary:hover {
  background: linear-gradient(135deg, #0066ff, #00e5ff);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 12px rgba(0, 229, 255, 0.4);
          box-shadow: 0 6px 12px rgba(0, 229, 255, 0.4);
}

/* ---------- VR Zone Section ---------- */
.glx-vr-zone {
  background: radial-gradient(circle at top, #0b0c16, #0f1018);
  color: #e2e2e2;
  padding: 5rem 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.glx-section-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #ff4d6d;
  text-align: center;
  margin-bottom: 1.2rem;
}

.glx-section-desc {
  max-width: 750px;
  margin: 0 auto 3rem auto;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #bfbfbf;
}

.glx-vr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.glx-vr-card {
  background: #18181f;
  padding: 2rem 1.5rem;
  border-radius: 14px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.65);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.65);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.glx-vr-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.75);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.75);
}

.glx-vr-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff5f7a;
  margin-bottom: 0.9rem;
}

.glx-vr-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #d1d1d1;
  margin-bottom: 0.8rem;
}

.glx-vr-extra {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .glx-vr-zone {
    padding: 3rem 1rem;
  }
  .glx-section-title {
    font-size: 2.2rem;
  }
  .glx-section-desc {
    font-size: 1rem;
  }
}
/* VR Adventures Section */
.glx-vr-adventures {
  background: #0b0b0e;
  padding: 5rem 1rem;
  color: #e5e5e5;
  font-family: "Segoe UI", sans-serif;
}

.glx-vr-title-main {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  color: #ff6b81;
  margin-bottom: 1rem;
}

.glx-vr-desc-main {
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.65;
  color: #c2c2c2;
  margin-bottom: 2.5rem;
}

.glx-vr-adventures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.glx-vr-card {
  background: linear-gradient(135deg, #1c1c20, #141418);
  padding: 2rem;
  border-radius: 14px;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  -webkit-transition: background 0.3s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background 0.3s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.3s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.3s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.glx-vr-card:hover {
  -webkit-transform: translateY(-7px) scale(1.02);
          transform: translateY(-7px) scale(1.02);
  -webkit-box-shadow: 0 15px 30px rgba(255, 107, 129, 0.3);
          box-shadow: 0 15px 30px rgba(255, 107, 129, 0.3);
  background: linear-gradient(135deg, #1e0c1c, #20141e);
}

.glx-vr-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #ff8a99;
}

.glx-vr-card-text {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  color: #d1d1d1;
}

.glx-vr-card-extra {
  font-size: 0.85rem;
  color: #a5a5a5;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .glx-vr-adventures {
    padding: 3rem 1rem;
  }
  .glx-vr-title-main {
    font-size: 2rem;
  }
}
/* VR Reviews Section - Unique Layout */
.vr-reviews {
  background-color: #0b0b0f;
  padding: 5rem 1rem;
  color: #e0e0e0;
  font-family: "Arial", sans-serif;
}

.vr-reviews-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6f61;
  margin-bottom: 0.5rem;
}

.vr-reviews-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #c0c0c0;
  margin-bottom: 3rem;
}

/* Reviews List - vertical stack with accent */
.vr-reviews-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.vr-review-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #1a1a1f;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.vr-review-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 25px rgba(255, 111, 97, 0.4);
          box-shadow: 0 12px 25px rgba(255, 111, 97, 0.4);
}

/* Accent bar on the left */
.vr-review-accent {
  width: 6px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff6f61), to(#ff9a76));
  background: linear-gradient(180deg, #ff6f61, #ff9a76);
}

/* Content of the card */
.vr-review-content {
  padding: 1.5rem 1rem;
}

.vr-review-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff9a76;
  margin-bottom: 0.3rem;
}

.vr-review-text {
  font-size: 0.95rem;
  color: #d0d0d0;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.vr-review-location {
  font-size: 0.85rem;
  font-style: italic;
  color: #a0a0a0;
}

/* Responsive */
@media (max-width: 768px) {
  .vr-reviews {
    padding: 3rem 1rem;
  }
  .vr-reviews-title {
    font-size: 2rem;
  }
  .vr-review-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .vr-review-accent {
    width: 100%;
    height: 6px;
  }
}
/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(100%);
          transform: translateX(-50%) translateY(100%);
  width: 90%;
  max-width: 900px;
  background: #1a1a1d;
  color: #e0e0e0;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  padding: 1.2rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 9999;
}

.cookie-banner.active {
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-banner.hide {
  -webkit-transform: translateX(-50%) translateY(100%);
          transform: translateX(-50%) translateY(100%);
  opacity: 0;
}

.cookie-banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.cookie-banner__text {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #d0d0d0;
}

.cookie-banner__text a.cookie-banner__link {
  color: #ff6f61;
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.cookie-banner__text a.cookie-banner__link:hover {
  color: #ff836f;
}

.cookie-banner__btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: #ff6f61;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background 0.3s, -webkit-transform 0.2s;
  transition: background 0.3s, -webkit-transform 0.2s;
  transition: background 0.3s, transform 0.2s;
  transition: background 0.3s, transform 0.2s, -webkit-transform 0.2s;
}

.cookie-banner__btn:hover {
  background: #ff836f;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (min-width: 768px) {
  .cookie-banner__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cookie-banner__btn {
    margin-top: 0;
  }
}
/* ==== Unique Footer Styles ==== */
.glx-footer {
  background: -webkit-gradient(linear, left top, left bottom, from(#0a0a0f), to(#1a1a28));
  background: linear-gradient(180deg, #0a0a0f 0%, #1a1a28 100%);
  color: #d0d0d0;
  padding: 4rem 1.5rem 2rem;
  font-family: "Poppins", sans-serif;
}

.glx-footer__payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1rem 0;
}

.glx-footer__payments img {
  height: 36px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 6px;
  -webkit-transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
  transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
  transition: transform 0.3s, filter 0.3s;
  transition: transform 0.3s, filter 0.3s, -webkit-transform 0.3s, -webkit-filter 0.3s;
  cursor: pointer;
}

.glx-footer__payments img:hover {
  -webkit-transform: translateY(-3px) scale(1.05);
          transform: translateY(-3px) scale(1.05);
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .glx-footer__payments {
    gap: 0.75rem;
    margin: 0.5rem 0;
  }
  .glx-footer__payments img {
    height: 28px;
  }
}
.glx-footer__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}

/* Main section */
.glx-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}

/* Brand */
.glx-footer__brand-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.glx-footer__name span {
  color: #00f6ff;
}

.glx-footer__slogan {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #a0a0a0;
}

/* Links and legal */
.glx-footer__links-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ff6f61;
}

.glx-footer__links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.glx-footer__links-list li {
  margin-bottom: 0.5rem;
}

.glx-footer__links-list a {
  color: #c0c0c0;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.glx-footer__links-list a:hover {
  color: #00f6ff;
  text-shadow: 0 0 5px #00f6ff;
}

/* Bottom section */
.glx-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.glx-footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 15px;
}

.glx-footer__social-link {
  color: #c0c0c0;
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.glx-footer__social-link:hover {
  background: #00f6ff;
  color: #0a0a0f;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .glx-footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .glx-footer__bottom {
    gap: 0.5rem;
  }
}
.glx-hero-games {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a29 100%);
  padding: 6rem 1rem;
  color: #f0f0f0;
  font-family: "Segoe UI", sans-serif;
}

.glx-hero-games__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.glx-hero-games__title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ff6f61;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: center;
}

.glx-hero-games__text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  text-align: center;
  color: #d0d0d0;
}

.glx-hero-games__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.glx-btn--primary {
  background-color: #00e5ff;
  color: #0d0d0f;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.glx-btn--primary:hover {
  background-color: #00c3d9;
}

.glx-btn--secondary {
  background-color: transparent;
  color: #00e5ff;
  border: 2px solid #00e5ff;
  padding: 0.7rem 1.7rem;
  border-radius: 8px;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.glx-btn--secondary:hover {
  background-color: #00e5ff;
  color: #0d0d0f;
}

.glx-hero-games__highlights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2rem;
}

.glx-hero-games__stat {
  text-align: center;
}

.glx-hero-games__stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ff6f61;
}

.glx-hero-games__stat span {
  display: block;
  font-size: 0.95rem;
  color: #d0d0d0;
  margin-top: 0.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .glx-hero-games__title {
    font-size: 2rem;
  }
  .glx-hero-games__text {
    font-size: 1rem;
  }
  .glx-hero-games__highlights {
    gap: 2rem;
  }
}
/* Purchase Modal Styles */
.pm-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  font-family: "Segoe UI", sans-serif;
}

.pm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(5px);
}

.pm-box {
  position: relative;
  max-width: 420px;
  width: 90%;
  margin: 5% auto;
  background: #222236;
  padding: 2rem;
  border-radius: 14px;
  color: #f0f0f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
  -webkit-animation: pmFadeIn 0.3s ease;
          animation: pmFadeIn 0.3s ease;
}

@-webkit-keyframes pmFadeIn {
  from {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pmFadeIn {
  from {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.pm-close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  background: transparent;
  border: none;
  color: #ff6b6b;
  font-size: 1.6rem;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.pm-close:hover {
  color: #ffd966;
}

.pm-title {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  color: #ffd966;
}

.pm-subtitle {
  font-size: 0.95rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 1rem;
}

.pm-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.pm-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 0.95rem;
}

.pm-input {
  margin-top: 0.3rem;
  padding: 0.55rem;
  border-radius: 6px;
  border: 1px solid #555;
  background: #2c2c3e;
  color: #f0f0f0;
  outline: none;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}

.pm-input:focus {
  border-color: #ff6b6b;
}

.pm-payment {
  border: 1px solid #555;
  padding: 0.8rem;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.pm-submit {
  margin-top: 1rem;
  padding: 0.65rem;
  background: #ff6b6b;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.pm-submit:hover {
  background: #ff8787;
}

.pm-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
  cursor: pointer;
  position: relative;
}

.pm-checkbox input[type=checkbox] {
  display: none; /* скрываем стандартный чекбокс */
}

.pm-checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #ff6f61;
  border-radius: 4px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pm-checkbox input[type=checkbox]:checked + .pm-checkbox-custom::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 6px;
  height: 12px;
  border: solid #ff6f61;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* Discount Games Section */
.glx-discount-games {
  background: linear-gradient(135deg, #0b0b0f, #1a1a26);
  padding: 5rem 1rem;
  color: #f0f0f0;
}

.glx-discount-games__container {
  text-align: center;
}

.glx-discount-games__title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #ff5e57;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.glx-discount-games__subtitle {
  font-size: 1.15rem;
  color: #ccc;
  margin-bottom: 3rem;
}

.glx-discount-games__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Discount Card */
.glx-discount-card {
  background: #1e1e28;
  border-radius: 16px;
  width: 280px;
  padding: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  border: 2px solid transparent;
}

.glx-discount-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  border: 2px solid #ff5e57;
}

.glx-discount-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}

.glx-discount-card__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd966;
}

.glx-discount-card__tag {
  font-size: 0.9rem;
  background: #ff5e57;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-weight: 600;
}

.glx-discount-card__desc {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.4;
  min-height: 60px;
}

.glx-discount-card__price {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5rem;
}

.glx-discount-card__old-price {
  text-decoration: line-through;
  color: #888;
  font-weight: 600;
}

.glx-discount-card__new-price {
  color: #ff5e57;
  font-weight: 700;
  font-size: 1.25rem;
}

.glx-btn--buy {
  display: inline-block;
  text-align: center;
  padding: 0.6rem 1.2rem;
  background: #ffd966;
  color: #1e1e28;
  border-radius: 8px;
  font-weight: 700;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

.glx-btn--buy:hover {
  background: #ff5e57;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .glx-discount-games__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .glx-discount-card {
    width: 90%;
  }
  .glx-discount-games__title {
    font-size: 2rem;
  }
  .glx-discount-games__subtitle {
    font-size: 1rem;
  }
}
.pm-new-releases {
  background: #121225;
  padding: 5rem 1rem;
  font-family: "Inter", sans-serif;
  color: #e0e0e0;
}

.pm-new-releases__title {
  text-align: center;
  font-size: 2.5rem;
  color: #5ce0a0;
  margin-bottom: 0.5rem;
}

.pm-new-releases__subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #a0a0a0;
  margin-bottom: 3rem;
}

.pm-new-releases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pm-new-card {
  background: #1b1b2b;
  border-radius: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5rem;
  min-height: 420px;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.pm-new-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 12px 22px rgba(0, 0, 0, 0.7);
          box-shadow: 0 12px 22px rgba(0, 0, 0, 0.7);
}

.pm-new-card__img-placeholder {
  height: 160px;
  background: #2c2c44;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #7a7a7a;
  font-size: 0.9rem;
}

.pm-new-card__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #5ce0a0;
  margin-bottom: 0.5rem;
}

.pm-new-card__desc {
  font-size: 0.95rem;
  color: #c0c0c0;
  margin-bottom: 1rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.glx-btn-buy {
  background: #5ce0a0;
  border: none;
  color: #121225;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.glx-btn-buy:hover {
  background: #49c38f;
}

.pm-vr-zone {
  background: #0b0b0d;
  color: #e0e0e0;
  padding: 5rem 1rem;
  font-family: "Segoe UI", sans-serif;
}

.pm-vr-zone__title {
  font-size: 2.5rem;
  text-align: center;
  color: #ff7f50;
  margin-bottom: 1rem;
}

.pm-vr-zone__subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #c0c0c0;
  line-height: 1.6;
}

.pm-vr-zone__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pm-vr-card {
  background: #1a1a1d;
  padding: 2rem;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.pm-vr-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
          box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
}

.pm-vr-card__name {
  font-size: 1.5rem;
  color: #ff9a76;
  margin-bottom: 0.8rem;
}

.pm-vr-card__desc {
  font-size: 0.95rem;
  color: #d0d0d0;
  margin-bottom: 1rem;
}

.pm-vr-card__extra {
  font-size: 0.85rem;
  font-style: italic;
  color: #a0a0a0;
  margin-bottom: 1rem;
}

.pm-vr-card__btn {
  -ms-flex-item-align: end;
      align-self: flex-end;
  background: #ff7f50;
  border: none;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.pm-vr-card__btn:hover {
  background: #ff966a;
}

@media (max-width: 768px) {
  .pm-vr-zone {
    padding: 3rem 1rem;
  }
  .pm-vr-zone__title {
    font-size: 2rem;
  }
}
/* VR Hero Section */
.vr-hero {
  background: linear-gradient(160deg, #0a0a0f, #1c1c25);
  color: #f0f0f0;
  padding: 5rem 0;
}

.vr-hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}

.vr-hero__intro {
  text-align: center;
}

.vr-hero__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ff6f61;
  margin-bottom: 1rem;
}

.vr-hero__desc {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.vr-hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}

.vr-btn {
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.vr-btn--primary {
  background: #ff6f61;
  color: #fff;
}

.vr-btn--primary:hover {
  background: #ff856f;
}

.vr-btn--secondary {
  background: transparent;
  border: 2px solid #ff6f61;
  color: #ff6f61;
}

.vr-btn--secondary:hover {
  background: #ff6f61;
  color: #fff;
}

.vr-hero__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.vr-hero__stat {
  text-align: center;
}

.vr-hero__stat strong {
  display: block;
  font-size: 2rem;
  color: #ff9a76;
}

.vr-hero__stat span {
  font-size: 1rem;
  color: #c0c0c0;
}

/* Responsive */
@media (max-width: 768px) {
  .vr-hero__title {
    font-size: 2rem;
  }
  .vr-hero__stats {
    gap: 1.5rem;
  }
  .vr-btn {
    padding: 0.7rem 1.4rem;
  }
}
/* VR Zone Section */
.vr-zone {
  background: #0c0c12;
  color: #e0e0e0;
  padding: 5rem 0rem;
}

.vr-zone__title {
  font-size: 2.8rem;
  text-align: center;
  font-weight: 700;
  color: #ff6f61;
  margin-bottom: 1rem;
}

.vr-zone__desc {
  font-size: 1.05rem;
  text-align: center;
  color: #c0c0c0;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.vr-zone__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* VR Card */
.vr-card {
  background: #1a1a1f;
  border-radius: 16px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  padding: 10px;
}

.vr-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 20px 35px rgba(0, 0, 0, 0.7);
          box-shadow: 0 20px 35px rgba(0, 0, 0, 0.7);
}

.vr-card__img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

.vr-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 1rem;
  color: #ff9a76;
}

.vr-card__text {
  font-size: 0.95rem;
  margin: 0 1rem 0.8rem;
  color: #d0d0d0;
  line-height: 1.4;
}

.vr-card__extra {
  font-size: 0.85rem;
  color: #a0a0a0;
  font-style: italic;
  margin: 0 1rem 1rem;
}

.vr-card__btn {
  display: block;
  text-align: center;
  background: #ff6f61;
  color: #fff;
  font-weight: 600;
  padding: 0.8rem;
  margin: 0 1rem 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.vr-card__btn:hover {
  background: #ff4f3a;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .vr-zone__title {
    font-size: 2.2rem;
  }
  .vr-zone__desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .vr-card__img {
    height: 160px;
  }
}
/* VR Informative Section */
.vr-info {
  background: #0f0f14;
  color: #e0e0e0;
  padding: 5rem 1.5rem;
  font-family: "Poppins", sans-serif;
}

.vr-info__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #ff7f50;
  margin-bottom: 1rem;
}

.vr-info__subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #c0c0c0;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.vr-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.vr-info__card {
  background: #1b1b22;
  padding: 2rem;
  border-radius: 16px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.vr-info__card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.vr-info__card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff9a76;
  margin-bottom: 0.8rem;
}

.vr-info__card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #d0d0d0;
}

/* Responsive */
@media (max-width: 768px) {
  .vr-info__title {
    font-size: 2rem;
  }
  .vr-info__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
/* VR Detail Section */
.vr-detail-section {
  background-color: #0f0f1a;
  color: #e2e2e2;
  padding: 5rem 0rem;
}

.vr-detail-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.vr-detail-content {
  width: 100%;
  max-width: 550px;
}

.vr-detail-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff7f50;
  margin-bottom: 1.5rem;
}

.vr-detail-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #d0d0d0;
}

.vr-detail-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.vr-detail-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  border: 2px solid #2a2a38;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
  .vr-detail-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
  .vr-detail-image img {
    max-width: 100%;
  }
  .vr-detail-content {
    max-width: 100%;
  }
}
/* Haberler Hero Section */
.hb-hero {
  background: linear-gradient(135deg, #1c1c28 0%, #2a2a3a 100%);
  color: #f0f0f0;
  padding: 6rem 2rem;
  font-family: "Poppins", sans-serif;
}

.hb-hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.hb-hero__intro {
  width: 100%;
  max-width: 550px;
}
@media (max-width: 700px) {
  .hb-hero__intro {
    max-width: 100%;
  }
}

.hb-hero__title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ff6f61;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .hb-hero__title {
    font-size: 1.9rem;
  }
}

.hb-hero__desc {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #d0d0d0;
}

.hb-hero__buttons .hb-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hb-btn--primary {
  background-color: #ff6f61;
  color: #fff;
}

.hb-btn--primary:hover {
  background-color: #ff8471;
}

.hb-hero__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 400px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hb-hero__stat {
  text-align: center;
}

.hb-hero__stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd166;
}

.hb-hero__stat span {
  font-size: 0.95rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
  .hb-hero__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .hb-hero__stats {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}
/* Haberler Latest News Section */
.hb-latest-news {
  background-color: #12121a;
  color: #e0e0e0;
  padding: 5rem 0rem;
  font-family: "Roboto", sans-serif;
}

.hb-latest-news__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #ff6f61;
  margin-bottom: 0.5rem;
}

.hb-latest-news__subtitle {
  text-align: center;
  color: #c0c0c0;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.hb-latest-news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.hb-news-card {
  background: #1b1b28;
  border-radius: 15px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.hb-news-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
          box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
}

.hb-news-card__img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

.hb-news-card__content {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.hb-news-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffd166;
}

.hb-news-card__desc {
  font-size: 0.95rem;
  color: #d0d0d0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.hb-btn--secondary {
  background-color: #1f1f35;
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.hb-btn--secondary:hover {
  background-color: #2a2a4d;
}

/* Responsive */
@media (max-width: 768px) {
  .hb-news-card__img {
    height: 150px;
  }
}
/* Haberler Informative Text Section */
.hb-news-info {
  background-color: #0f0f18;
  color: #e0e0e0;
  padding: 5rem 2rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.8;
}

.hb-news-info__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ff6f61;
  text-align: center;
}

.hb-news-info__text {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #c0c0c0;
  text-align: justify;
}

@media (max-width: 768px) {
  .hb-news-info {
    padding: 3rem 1rem;
  }
  .hb-news-info__title {
    font-size: 1.8rem;
  }
  .hb-news-info__text {
    font-size: 0.95rem;
  }
}
/* Contact Hero Section - Grid Based */
.pm-contact-hero {
  background: linear-gradient(120deg, #0b0b12, #1f1f25);
  color: #f0f0f0;
  padding: 6rem 1rem;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

.pm-contact-hero__container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.pm-contact-hero__info {
  max-width: 600px;
}

.pm-contact-hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #ff6f61;
}
@media (max-width: 600px) {
  .pm-contact-hero__title {
    font-size: 1.9rem;
  }
}

.pm-contact-hero__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #d0d0d0;
}

.pm-contact-hero__actions {
  margin-top: 1.5rem;
}

.pm-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-right: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.pm-btn--primary {
  background-color: #ff6f61;
  color: #fff;
}

.pm-btn--primary:hover {
  background-color: #ff4c3b;
}

.pm-btn--secondary {
  background-color: transparent;
  color: #ff6f61;
  border: 2px solid #ff6f61;
}

.pm-btn--secondary:hover {
  background-color: #ff6f61;
  color: #fff;
}

.pm-contact-hero__stats {
  display: grid;
  grid-template-rows: repeat(3, auto);
  gap: 1.5rem;
}

.pm-contact-hero__stat {
  background: #1c1c23;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.pm-contact-hero__stat:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.pm-contact-hero__stat strong {
  display: block;
  font-size: 2rem;
  color: #ff6f61;
}

.pm-contact-hero__stat span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 1024px) {
  .pm-contact-hero__container {
    grid-template-columns: 1fr;
  }
}
/* Contact Section - PlayMatrix */
.pm-contact {
  background-color: #0c0c10;
  color: #e0e0e0;
  padding: 6rem 1rem;
  font-family: "Inter", sans-serif;
}

.pm-contact__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.pm-contact__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff4c3b;
  text-align: center;
  margin-bottom: 2rem;
}

.pm-contact__form-wrapper {
  background-color: #1b1b22;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.pm-contact__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pm-contact__group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ff6f61;
}

.pm-contact__group input,
.pm-contact__group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid #333;
  background-color: #12121a;
  color: #fff;
  font-size: 1rem;
  resize: vertical;
}

.pm-contact__group input:focus,
.pm-contact__group textarea:focus {
  outline: none;
  border-color: #ff6f61;
}

.pm-contact__checkbox {
  display: block;
  font-size: 0.95rem;
  color: #ccc;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.pm-contact__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.pm-contact__checkbox .pm-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #12121a;
  border: 2px solid #ff6f61;
  border-radius: 4px;
}

.pm-contact__checkbox input:checked + .pm-checkmark {
  background-color: #ff6f61;
}

.pm-contact__checkbox .pm-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.pm-contact__checkbox input:checked + .pm-checkmark:after {
  display: block;
}

.pm-contact__checkbox .pm-checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.pm-contact__submit {
  background-color: #ff6f61;
  color: #fff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pm-contact__submit:hover {
  background-color: #ff3a1f;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .pm-contact__container {
    padding: 0 1rem;
  }
  .pm-contact__title {
    font-size: 2rem;
  }
}
/* Support Info Section */
.pm-support-info {
  background-color: #0b0b14;
  color: #e0e0e0;
  padding: 5rem 0rem;
}

.pm-support-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.pm-support-title {
  font-size: 2.5rem;
  color: #ff6f61;
  text-align: center;
  margin-bottom: 1rem;
}

.pm-support-desc {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  color: #c0c0c0;
  margin-bottom: 3rem;
}

.pm-support-grid {
  display: block;
}

.pm-support-card {
  background-color: #1c1c27;
  border: 2px solid #ff6f61;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.pm-support-card h3 {
  font-size: 1.5rem;
  color: #ff7f50;
  margin-bottom: 0.5rem;
}

.pm-support-card p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #d0d0d0;
}

.pm-support-card a {
  color: #ff6f61;
  text-decoration: none;
}

.pm-support-card a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .pm-support-grid {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .pm-support-grid {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
.pm-privacy-info {
  background-color: #0e0e12;
  color: #e2e2e2;
  padding: 5rem 0rem;
}

.pm-privacy-info__wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.pm-privacy-info__main-title {
  font-size: 2.8rem;
  color: #ff7f50;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.pm-privacy-info__intro {
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 3rem auto;
  color: #cfcfcf;
}

.pm-privacy-info__sections {
  display: block;
}

.pm-privacy-info__block {
  background: #1b1b22;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.pm-privacy-info__heading {
  font-size: 1.7rem;
  color: #ff9a76;
  margin-bottom: 1rem;
}

.pm-privacy-info__block p {
  font-size: 1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 1rem;
}

.pm-privacy-info__block a {
  color: #ff7f50;
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.pm-privacy-info__block a:hover {
  color: #ffa270;
}

@media (max-width: 768px) {
  .pm-privacy-info__main-title {
    font-size: 2.2rem;
  }
  .pm-privacy-info__block {
    padding: 1.5rem 1.5rem;
  }
  .pm-privacy-info__heading {
    font-size: 1.5rem;
  }
}
.pm-thanks-section {
  background: #0f0f12;
  color: #e0e0e0;
  padding: 6rem 0;
  height: 100vh;
}

.pm-thanks-container {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pm-thanks-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ff6f61;
}

.pm-thanks-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #cfcfcf;
}

.pm-thanks-info {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pm-thanks-info li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: #a0a0a0;
}

.pm-thanks-info a {
  color: #ff6f61;
  text-decoration: none;
}

.pm-btn--home {
  display: inline-block;
  background-color: #ff6f61;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.pm-btn--home:hover {
  background-color: #ff4c3b;
}

.pm-thanks-illustration {
  margin-top: 3rem;
}

.pm-thanks-icon {
  font-size: 6rem;
}