@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;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

/* --- Header Styles --- */
.vrp-header {
  background-color: #121212;
  color: #E0E0E0;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.vrp-container {
  max-width: 1200px;
  margin: 0 auto;
  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;
  padding: 0 1rem;
}

.vrp-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00FFD1;
  text-decoration: none;
}

.vrp-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.vrp-nav-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.vrp-nav-link {
  color: #E0E0E0;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.vrp-nav-link:hover {
  color: #00FFD1;
}

.vrp-nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #E0E0E0;
  cursor: pointer;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .vrp-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1E1E1E;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 200px;
    border-left: 2px solid #00FFD1;
    padding: 1rem;
  }
  .vrp-nav.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .vrp-nav-toggle {
    display: block;
  }
  .vrp-nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
/* Бургер линии */
.vrp-nav-toggle {
  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: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

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

/* Анимация при активном меню */
.vrp-nav-toggle.active .vrp-burger:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

.vrp-nav-toggle.active .vrp-burger:nth-child(2) {
  opacity: 0;
}

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

/* Мобильное меню */
.vrp-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-transition: max-height 0.5s ease, opacity 0.5s ease;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

@media (max-width: 768px) {
  .vrp-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background-color: #1E1E1E;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 1rem;
    border-left: 2px solid #00FFD1;
  }
  .vrp-nav.active {
    min-height: 100vh;
    opacity: 1;
  }
  .vrp-nav-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.vrp-hero {
  background: -webkit-gradient(linear, left top, left bottom, from(#0A0A0A), to(#1E1E1E));
  background: linear-gradient(180deg, #0A0A0A 0%, #1E1E1E 100%);
  color: #E0E0E0;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.vrp-hero__container {
  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: 2rem;
}

.vrp-hero__content {
  max-width: 600px;
}

.vrp-hero__title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  color: #00FFD1;
}

.vrp-hero__title span {
  color: #FF6EC7;
}

.vrp-hero__subtitle {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #CCCCCC;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

.vrp-hero__image img {
  max-width: 500px;
  width: 100%;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 50px rgba(0, 255, 209, 0.4);
          box-shadow: 0 0 50px rgba(0, 255, 209, 0.4);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.vrp-hero__image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* Адаптив */
@media (max-width: 992px) {
  .vrp-hero__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
  }
  .vrp-hero__content {
    max-width: 100%;
  }
  .vrp-hero__image img {
    max-width: 100%;
  }
  .vrp-hero__title {
    font-size: 1.8rem;
  }
  .vrp-hero__subtitle {
    font-size: 1rem;
  }
}
.vrp-latest-news {
  background-color: #121212;
  color: #E0E0E0;
  padding: 80px 0;
}

.vrp-news-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00FFD1;
  margin-bottom: 0.5rem;
  text-align: center;
}

.vrp-news-subtitle {
  font-size: 1.1rem;
  color: #CCCCCC;
  text-align: center;
  margin-bottom: 3rem;
}

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

.vrp-news-card {
  background-color: #1E1E1E;
  border-radius: 15px;
  overflow: hidden;
  -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;
}

.vrp-news-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 255, 209, 0.4);
          box-shadow: 0 10px 30px rgba(0, 255, 209, 0.4);
}

.vrp-news-card img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #333;
}

.vrp-news-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1rem;
  color: #FF6EC7;
}

.vrp-news-card-text {
  font-size: 0.95rem;
  color: #CCCCCC;
  margin: 0 1rem 1rem;
  line-height: 1.5;
}

.vrp-news-date {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  color: #777;
  margin: 0 1rem 1rem;
}

/* Адаптив */
@media (max-width: 768px) {
  .vrp-news-title {
    font-size: 2rem;
  }
  .vrp-news-subtitle {
    font-size: 1rem;
  }
}
.vrp-reviews {
  background-color: #1B1B1B;
  color: #E0E0E0;
  padding: 80px 0;
}

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

.vrp-reviews-subtitle {
  font-size: 1.1rem;
  color: #CCCCCC;
  text-align: center;
  margin-bottom: 3rem;
}

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

.vrp-review-card {
  background-color: #262626;
  border-radius: 15px;
  overflow: hidden;
  -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;
}

.vrp-review-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 255, 209, 0.4);
          box-shadow: 0 10px 30px rgba(0, 255, 209, 0.4);
}

.vrp-review-card img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #333;
}

.vrp-review-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1rem;
  color: #FF6EC7;
}

.vrp-review-text {
  font-size: 0.95rem;
  color: #CCCCCC;
  margin: 0 1rem 1rem;
  line-height: 1.5;
}

.vrp-review-date {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  color: #777;
  margin: 0 1rem 1rem;
}

/* Адаптив */
@media (max-width: 768px) {
  .vrp-reviews-title {
    font-size: 2rem;
  }
  .vrp-reviews-subtitle {
    font-size: 1rem;
  }
}
/* ============================= */
/* Trending Games Section - Dark */
/* ============================= */
.vrp-trending {
  padding: 80px 0;
  background-color: #121212;
  color: #f0f0f0;
  font-family: "Inter", sans-serif;
}

.vrp-trending-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  color: #ffffff;
}

.vrp-trending-subtitle {
  font-size: 1.1rem;
  color: #bbbbbb;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
}

.vrp-trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.vrp-trending-card {
  background-color: #1f1f1f;
  border-radius: 12px;
  padding: 20px;
  -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;
}

.vrp-trending-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vrp-trending-card img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.vrp-trending-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.vrp-trending-card-text {
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 10px;
  line-height: 1.5;
}

.vrp-trending-card-date {
  font-size: 0.85rem;
  color: #888888;
  display: block;
  text-align: right;
}

.vrp-footer {
  background-color: #0e0e0e;
  color: #ccc;
  padding: 60px 0 30px;
  font-family: "Inter", sans-serif;
}

.vrp-footer-top {
  text-align: center;
  margin-bottom: 40px;
}

.vrp-footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.vrp-footer-desc {
  font-size: 1rem;
  color: #aaa;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.vrp-footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}

.vrp-footer-column-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.vrp-footer-column ul {
  list-style: none;
  padding: 0;
}

.vrp-footer-column ul li {
  margin-bottom: 10px;
}

.vrp-footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.vrp-footer-column ul li a:hover {
  color: #00b4d8;
}

.vrp-footer-bottom {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #888;
}

.vrp-footer-payments a {
  margin-left: 15px;
}

.vrp-footer-payments img {
  width: 50px;
  height: auto;
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.vrp-footer-payments img:hover {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

@media (max-width: 768px) {
  .vrp-footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .vrp-footer-payments {
    margin-top: 10px;
  }
}
/* ============================= */
/* Cookie Banner - VRPulse.az    */
/* ============================= */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: #111;
  color: #eee;
  padding: 20px 15px;
  -webkit-box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
  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: bottom 0.5s ease, opacity 0.5s ease;
  transition: bottom 0.5s ease, opacity 0.5s ease;
  z-index: 9999;
  opacity: 0;
}

.cookie-banner.active {
  bottom: 0;
  opacity: 1;
}

.cookie-banner.hide {
  bottom: -100%;
  opacity: 0;
}

.cookie-banner__content {
  max-width: 1200px;
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}

.cookie-banner__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 70%;
          flex: 1 1 70%;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
}

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

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

.cookie-banner__btn {
  background-color: #00b4d8;
  color: #111;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.cookie-banner__btn:hover {
  background-color: #0095b6;
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-banner__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .cookie-banner__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .cookie-banner__btn {
    margin-top: 10px;
  }
}
/* --- VR Oyunlar Section --- */
.vrp-featured-vr {
  background-color: #0d0d12;
  color: #f1f1f1;
  padding: 80px 0;
  font-family: "Segoe UI", sans-serif;
}

.vrp-featured-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vrp-featured-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  color: #ff6f61;
}

.vrp-featured-subtitle {
  font-size: 1.1rem;
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.6;
  color: #d0d0d0;
}

.vrp-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.vrp-vr-card {
  background-color: #1b1b24;
  border-radius: 12px;
  overflow: hidden;
  -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;
  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;
}

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

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

.vrp-vr-title {
  font-size: 1.3rem;
  margin: 15px;
  color: #ff6f61;
}

.vrp-vr-text {
  font-size: 0.95rem;
  margin: 0 15px 15px;
  color: #cfcfcf;
  line-height: 1.5;
}

.vrp-btn-download {
  display: block;
  margin: 0 15px 20px;
  padding: 12px 0;
  text-align: center;
  background: #ff6f61;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.vrp-btn-download:hover {
  background: #ff4a3c;
}

/* --- Адаптив --- */
@media (max-width: 768px) {
  .vrp-featured-title {
    font-size: 2rem;
  }
  .vrp-featured-subtitle {
    font-size: 1rem;
  }
  .vrp-vr-card img {
    height: 150px;
  }
}
@media (max-width: 480px) {
  .vrp-featured-title {
    font-size: 1.8rem;
  }
  .vrp-vr-card img {
    height: 130px;
  }
}
/* ========== VR News Section ========== */
.vrp-vr-news {
  background-color: #0d0d0f; /* тёмный фон */
  color: #e0e0e0; /* светлый текст */
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
}

.vrp-vr-news-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vrp-vr-news-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  text-align: center;
}

.vrp-vr-news-subtitle {
  font-size: 1.15rem;
  color: #cfcfcf;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
}

.vrp-vr-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.vrp-vr-news-card {
  background-color: #1a1a1f;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 4px 20px 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;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.vrp-vr-news-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.vrp-vr-news-card img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

.vrp-vr-news-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 15px 20px 10px;
  color: #ffffff;
}

.vrp-vr-news-card-text {
  font-size: 0.95rem;
  color: #cfcfcf;
  margin: 0 20px 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 1.5;
}

.vrp-vr-news-date {
  font-size: 0.85rem;
  color: #888888;
  margin: 0 20px 20px;
  text-align: right;
}

/* Адаптив */
@media (max-width: 768px) {
  .vrp-vr-news-title {
    font-size: 2rem;
  }
  .vrp-vr-news-subtitle {
    font-size: 1rem;
    margin-bottom: 35px;
  }
}
/* ========== VR Info Section ========== */
.vrp-info-section {
  background-color: #0c0c10;
  color: #e1e1e1;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
}

.vrp-info-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.vrp-info-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #cfcfcf;
}

@media (max-width: 768px) {
  .vrp-info-title {
    font-size: 1.75rem;
  }
  .vrp-info-text {
    font-size: 0.95rem;
  }
}
.vrp-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: fadeIn 0.3s ease forwards;
          animation: fadeIn 0.3s ease forwards;
}

.vrp-modal-content {
  background-color: #1a1a1a;
  padding: 30px 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  color: #f5f5f5;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  position: relative;
  -webkit-animation: slideDown 0.3s ease forwards;
          animation: slideDown 0.3s ease forwards;
  font-family: "Inter", sans-serif;
  /* Убираем margin, центрирование теперь через flex */
  margin: 0;
}

/* Закрытие */
.vrp-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #f5f5f5;
  font-size: 28px;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.vrp-modal-close:hover {
  color: #ff3c3c;
}

/* Заголовок и текст */
.vrp-modal-game-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.vrp-modal-game-desc {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.vrp-modal-game-price {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffcc00;
}

/* Форма */
.vrp-modal-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.vrp-modal-form input[type=email] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #333;
  background-color: #222;
  color: #f5f5f5;
  font-size: 14px;
}

.vrp-modal-form input[type=email]::-webkit-input-placeholder {
  color: #aaa;
}

.vrp-modal-form input[type=email]::-moz-placeholder {
  color: #aaa;
}

.vrp-modal-form input[type=email]:-ms-input-placeholder {
  color: #aaa;
}

.vrp-modal-form input[type=email]::-ms-input-placeholder {
  color: #aaa;
}

.vrp-modal-form input[type=email]::placeholder {
  color: #aaa;
}

/* Кнопка */
.vrp-modal-btn {
  width: 100%;
  padding: 12px;
  background-color: #ff3c3c;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.vrp-modal-btn:hover {
  background-color: #e63232;
}

/* Анимации */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* Секция "текст слева, картинка справа" */
.vrp-info-side {
  background-color: #121212; /* темный фон секции */
  padding: 80px 0;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

.vrp-info-side-container {
  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: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vrp-info-side-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 500px;
          flex: 1 1 500px;
  color: #f5f5f5;
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-animation: slideInLeft 0.6s forwards;
          animation: slideInLeft 0.6s forwards;
}

.vrp-info-side-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.vrp-info-side-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #ccc;
}

.vrp-info-side-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;
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-animation: slideInRight 0.6s forwards;
          animation: slideInRight 0.6s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.vrp-info-side-image img {
  width: 100%;
  max-width: 450px;
  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);
}

/* Адаптив для мобильных */
@media (max-width: 900px) {
  .vrp-info-side-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
  .vrp-info-side-content, .vrp-info-side-image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    text-align: center;
  }
  .vrp-info-side-title {
    font-size: 24px;
  }
}
/* Простые анимации при загрузке */
@-webkit-keyframes slideInLeft {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInLeft {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInRight {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.vrp-info-section {
  background-color: #111;
  color: #f5f5f5;
  padding: 80px 0;
  font-family: "Inter", sans-serif;
}

.vrp-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.vrp-info-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 500px;
          flex: 1 1 500px;
}

.vrp-info-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ff3c3c;
}

.vrp-info-desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.vrp-info-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
  text-align: center;
}

.vrp-info-image img {
  width: 100%;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

@media (max-width: 992px) {
  .vrp-info-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
  }
  .vrp-info-text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .vrp-info-image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.vrp-news-text-section {
  background-color: #111;
  color: #f5f5f5;
  padding: 80px 0;
  font-family: "Inter", sans-serif;
}

.vrp-news-text-title {
  font-size: 32px;
  font-weight: 700;
  color: #ff3c3c;
  margin-bottom: 25px;
}

.vrp-news-text-desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .vrp-news-text-title {
    font-size: 28px;
  }
  .vrp-news-text-desc {
    font-size: 15px;
  }
}
/* Контейнер секции */
.vp-contact-section {
  padding: 80px 20px;
  background-color: #121212;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
}

.vp-contact-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Заголовок */
.vp-contact-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #ff3c3c;
}

/* Обертка формы */
.vp-contact-form-wrapper {
  background-color: #1e1e1e;
  padding: 30px 25px;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Группы полей */
.vp-contact-group {
  margin-bottom: 20px;
}

.vp-contact-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #ddd;
}

.vp-contact-group input,
.vp-contact-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #333;
  background-color: #222;
  color: #f5f5f5;
  font-size: 14px;
  -webkit-transition: border 0.2s ease, background-color 0.2s ease;
  transition: border 0.2s ease, background-color 0.2s ease;
}

.vp-contact-group input::-webkit-input-placeholder, .vp-contact-group textarea::-webkit-input-placeholder {
  color: #aaa;
}

.vp-contact-group input::-moz-placeholder, .vp-contact-group textarea::-moz-placeholder {
  color: #aaa;
}

.vp-contact-group input:-ms-input-placeholder, .vp-contact-group textarea:-ms-input-placeholder {
  color: #aaa;
}

.vp-contact-group input::-ms-input-placeholder, .vp-contact-group textarea::-ms-input-placeholder {
  color: #aaa;
}

.vp-contact-group input::placeholder,
.vp-contact-group textarea::placeholder {
  color: #aaa;
}

.vp-contact-group input:focus,
.vp-contact-group textarea:focus {
  border-color: #ff3c3c;
  outline: none;
  background-color: #1a1a1a;
}

.vp-contact-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Чекбокс */
.vp-contact-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
  font-size: 13px;
  color: #ccc;
}

.vp-contact-checkbox input[type=checkbox] {
  margin-right: 10px;
  accent-color: #ff3c3c;
}

/* Кнопка */
.vp-contact-submit {
  width: 100%;
  padding: 14px 0;
  background-color: #ff3c3c;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.vp-contact-submit:hover {
  background-color: #e63232;
}

/* Адаптив */
@media (max-width: 600px) {
  .vp-contact-section {
    padding: 60px 15px;
  }
  .vp-contact-title {
    font-size: 28px;
  }
}
/* FAQ секция */
.vrp-faq-section {
  padding: 80px 20px;
  background-color: #121212;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
}

.vrp-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Заголовок секции */
.vrp-faq-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 35px;
  color: #ff3c3c;
}

/* Подзаголовок */
.vrp-faq-subtitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 50px;
  color: #ccc;
  line-height: 1.6;
}

/* Каждый пункт FAQ */
.vrp-faq-item {
  margin-bottom: 30px;
  border-left: 4px solid #ff3c3c;
  padding-left: 15px;
}

.vrp-faq-question {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.vrp-faq-answer {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
}

/* Адаптив */
@media (max-width: 600px) {
  .vrp-faq-title {
    font-size: 28px;
  }
  .vrp-faq-question {
    font-size: 16px;
  }
  .vrp-faq-answer {
    font-size: 13px;
  }
}
/* Privacy Policy Section */
.vrp-privacy-section {
  padding: 80px 0;
  background-color: #121212;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
}

.vrp-privacy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.vrp-privacy-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #ff3c3c;
}

.vrp-privacy-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #ddd;
}

.vrp-privacy-item {
  margin-bottom: 30px;
  border-left: 3px solid #ff3c3c;
  padding-left: 15px;
}

.vrp-privacy-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffcc00;
}

.vrp-privacy-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

.vrp-privacy-link {
  color: #ff3c3c;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.vrp-privacy-link:hover {
  color: #ffcc00;
}

@media (max-width: 768px) {
  .vrp-privacy-title {
    font-size: 28px;
  }
  .vrp-privacy-item h3 {
    font-size: 18px;
  }
  .vrp-privacy-text, .vrp-privacy-item p {
    font-size: 14px;
  }
}
/* Thanks Section */
.vrp-thanks-section {
  background-color: #121212;
  color: #f5f5f5;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
}

.vrp-thanks-container {
  max-width: 900px;
  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: 25px;
}

.vrp-thanks-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: #ff3c3c;
}

.vrp-thanks-text {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 15px;
}

.vrp-thanks-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.vrp-thanks-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.6;
  color: #eee;
}

.vrp-thanks-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffcc00;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .vrp-thanks-section {
    padding: 60px 15px;
  }
  .vrp-thanks-title {
    font-size: 28px;
  }
  .vrp-thanks-text,
  .vrp-thanks-list li {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .vrp-thanks-title {
    font-size: 24px;
  }
  .vrp-thanks-text,
  .vrp-thanks-list li {
    font-size: 14px;
  }
}