 :root {
      --bg-color: #f9f9f9;
      --text-color: #000;
      --card-bg: #fff;
      --button-bg: #4CAF50;
      --button-hover: #45a049;
      --press-kit-color: #d32f2f;
    }
    body.dark {
      --bg-color: #121212;
      --text-color: #eee;
      --card-bg: #1e1e1e;
      --button-bg: #2e7d32;
      --button-hover: #1b5e20;
      --press-kit-color: #f44336;
    }
    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background-color: var(--bg-color);
      color: var(--text-color);
      transition: background-color 0.3s, color 0.3s;
    }
    header {
      background-color: #222;
      color: white;
      padding: 20px;
      text-align: center;
      position: relative;
    }
    .header-content {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }
    .social-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
      margin-top: 15px;
      position: relative;
    }
    .social-links {
      display: flex;
      gap: 15px;
    }
    .header-controls {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      gap: 10px;
    }
    .theme-toggle, .lang-toggle {
      background-color: transparent;
      border: none;
      color: white;
      font-size: 18px;
      cursor: pointer;
      transition: all 0.3s;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }
    .theme-toggle:hover, .lang-toggle:hover {
      background-color: rgba(255,255,255,0.1);
    }
    .social-link {
      color: white;
      font-size: 24px;
      transition: all 0.3s;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.1);
      text-decoration: none;
    }
    .social-link:hover {
      transform: scale(1.1);
      text-decoration: none;
    }
    .social-link.telegram:hover {
      background-color: #0088cc;
    }
    .social-link.youtube:hover {
      background-color: #ff0000;
    }
    .social-link.vk:hover {
      background-color: #4a76a8;
    }
    .social-link.x:hover {
      background-color: #000000;
    }
    .social-link.discord:hover {
      background-color: #7289da;
    }
    .game-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 20px;
    }
    .game-wrapper {
      width: 240px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .game {
      background-color: var(--card-bg);
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      width: 100%;
      height: 440px;
      transition: all 0.3s;
      color: var(--text-color);
      cursor: pointer;
      text-decoration: none;
      position: relative;
    }
    .game img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }
    .game-content {
      padding: 16px;
    }
    .game-content h2 {
      margin: 0 0 8px;
      font-size: 18px;
    }
    .game-content p {
      font-size: 14px;
      line-height: 1.4;
    }
    .game:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .buy-button-container {
      width: 100%;
      margin-top: 10px;
      display: flex;
      justify-content: center;
      gap: 10px;
    }
    .buy-button {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex: 1;
      padding: 10px;
      color: white;
      text-align: center;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      transition: all 0.3s;
      font-size: 14px;
    }
    .buy-button.steam {
      background-color: #1b2838;
    }
    .buy-button.vkplay {
      background-color: #1b2838;
    }
    .buy-button.itch {
      background-color: #1b2838;
    }
    .buy-button.steam:hover {
      background-color: #2a475e;
      transform: translateY(-2px);
    }
    .buy-button.vkplay:hover {
      background-color: #2a475e;
      transform: translateY(-2px);
    }
    .buy-button.itch:hover {
      background-color: #2a475e;
      transform: translateY(-2px);
    }
    .buy-button i {
      font-size: 18px;
    }
    .buy-button.disabled {
      opacity: 0.6;
      filter: grayscale(70%);
      cursor: not-allowed;
      pointer-events: none;
      text-decoration: none;
    }
    body.dark .buy-button.disabled {
      background-color: #333 !important;
    }

    .carousel-container {
      overflow: hidden;
      width: 100%;
      margin: 20px auto;
    }
    .carousel-track {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: scrollReviews 60s linear infinite;
    }
    @keyframes scrollReviews {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .review {
      min-width: 280px;
      max-width: 280px;
      background-color: var(--card-bg);
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .review:hover {
      transform: scale(1.02);
    }
    .review strong {
      display: block;
      margin-bottom: 10px;
      font-size: 14px;
      color: var(--button-bg);
    }
    .review p {
      font-size: 14px;
      line-height: 1.4;
    }
    footer {
      background-color: var(--card-bg);
      padding: 30px 20px;
      text-align: center;
      border-top: 1px solid rgba(0,0,0,0.1);
      margin-top: 40px;
      font-size: 14px;
    }
    footer a {
      color: var(--button-bg);
      text-decoration: none;
      font-weight: bold;
    }
    footer a:hover {
      text-decoration: underline;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 15px;
      flex-wrap: wrap;
    }
    /* Общий стиль для обеих кнопок */
    .footer-button {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 6px;
      transition: all 0.3s;
      background-color: rgba(76, 175, 80, 0.1); /* Зелёный оттенок как у основной темы */
      color: var(--button-bg); /* Цвет как у кнопок "Купить" */
      text-decoration: none;
      border: none;
      cursor: pointer;
      font-size: 14px;
    }

    .footer-button:hover {
      background-color: rgba(76, 175, 80, 0.2); /* Затемнение при наведении */
      text-decoration: none;
    }

    /* Иконки внутри кнопок */
    .footer-button i {
      font-size: 16px;
    }