/*=========================================
        GameUP Style.css
        Part 1
==========================================*/

/*==============================
        Font
==============================*/

@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-Regular.woff2");
}

:root {
  --bg: #0a0a0a;
  --bg2: #131313;

  --card: #171717;

  --border: #292929;

  --primary: #ff2147;

  --primary-hover: #ff4b6a;

  --text: #ffffff;

  --text-light: #d2d2d2;

  --text-gray: #9f9f9f;

  --radius: 18px;

  --transition: 0.35s ease;

  --container: 1400px;
}

/*==============================
        Reset
==============================*/

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  direction: rtl;

  font-family: "Vazirmatn", sans-serif;

  background: var(--bg);

  color: var(--text);

  overflow-x: hidden;
}

img {
  display: block;

  max-width: 100%;
}

ul {
  list-style: none;
}

a {
  color: inherit;

  text-decoration: none;
}

button {
  border: none;

  cursor: pointer;

  font-family: inherit;
}

.container {
  width: 94%;

  max-width: var(--container);

  margin: auto;
}

/*==============================
        Header
==============================*/

.header {
  width: 100%;

  background: #0b0b0b;

  border-bottom: 1px solid var(--border);

  position: sticky;

  top: 0;

  z-index: 999;

  backdrop-filter: blur(10px);
}

/*==============================
        Navbar
==============================*/

.navbar {
  min-height: 85px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}

/*==============================
        Logo
==============================*/

.logo {
  flex-shrink: 0;
}

.logo img {
  width: 180px;
}

/*==============================
        Menu
==============================*/

.nav-menu {
  display: flex;

  align-items: center;

  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  color: var(--text-light);

  font-size: 15px;

  transition: var(--transition);
}

.nav-item > a:hover {
  color: #fff;
}

/*==============================
      Dropdown
==============================*/

details {
  position: relative;
}

summary {
  list-style: none;

  cursor: pointer;

  color: var(--text-light);
}

summary::-webkit-details-marker {
  display: none;
}

.dropdown-menu {
  position: absolute;

  right: 0;

  top: 45px;

  width: 220px;

  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 15px;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  opacity: 0;

  visibility: hidden;

  transform: translateY(15px);

  transition: var(--transition);
}

details[open] .dropdown-menu {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.dropdown-menu a {
  padding: 14px 18px;

  color: var(--text-light);

  transition: 0.3s;
}

.dropdown-menu a:hover {
  background: #202020;

  padding-right: 28px;

  color: #fff;
}

/*==============================
        Buttons
==============================*/

.nav-actions {
  display: flex;

  gap: 12px;
}

.btn {
  height: 45px;

  padding: 0 24px;

  border-radius: 12px;

  font-size: 14px;

  transition: var(--transition);
}

.btn-login {
  background: #202020;

  color: #fff;
}

.btn-login:hover {
  background: #2d2d2d;
}

.btn-register {
  background: var(--primary);

  color: #fff;
}

.btn-register:hover {
  background: var(--primary-hover);
}

/*==============================
      Mobile 992
==============================*/

@media (max-width: 992px) {
  .navbar {
    flex-wrap: wrap;

    justify-content: center;

    padding: 20px 0;
  }

  .nav-menu {
    width: 100%;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;
  }

  .nav-actions {
    width: 100%;

    justify-content: center;
  }
}

/*==============================
      Mobile 768
==============================*/

@media (max-width: 768px) {
  .logo img {
    width: 150px;
  }

  .nav-menu {
    gap: 15px;
  }

  .nav-item > a {
    font-size: 14px;
  }
}

/*==============================
      Mobile 360
==============================*/

@media (max-width: 360px) {
  .container {
    width: 92%;
  }

  .navbar {
    gap: 15px;
  }

  .nav-menu {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .nav-actions {
    flex-direction: column;
  }
}
/*=========================================
        PART 2 - Hero & Sidebar
==========================================*/

/*==============================
            Hero
==============================*/

.hero {
  padding: 60px 0;
}

.hero-layout {
  display: grid;

  grid-template-columns: 1fr 380px;

  gap: 40px;

  align-items: start;
}

/*==============================
        Hero Content
==============================*/

.hero-content {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

/*==============================
        Breadcrumb
==============================*/

.breadcrumb {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  font-size: 14px;

  color: var(--text-gray);
}

.breadcrumb a {
  color: var(--text-gray);

  transition: 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

/*==============================
        Title
==============================*/

.game-title {
  font-size: 42px;

  line-height: 1.6;

  font-weight: 800;

  color: #fff;
}

/*==============================
      Description
==============================*/

.game-description {
  font-size: 17px;

  line-height: 2;

  color: var(--text-light);

  max-width: 850px;
}

/*==============================
        Rating
==============================*/

.rating-box {
  display: flex;

  gap: 15px;

  flex-wrap: wrap;
}

.rating {
  width: 130px;

  height: 85px;

  border-radius: 16px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  font-weight: bold;
}

.rating span {
  font-size: 28px;
}

.rating small {
  margin-top: 8px;

  font-size: 13px;
}

.metascore {
  background: #1f8b3b;

  color: #fff;
}

.user-score {
  background: #303030;

  color: #fff;
}

/*==============================
        Cover
==============================*/

.game-cover {
  width: 100%;
}

.game-cover img {
  width: 100%;

  border-radius: 22px;

  object-fit: cover;

  transition: 0.4s;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}

.game-cover img:hover {
  transform: scale(1.02);
}

/*==============================
        Sidebar
==============================*/

.sidebar {
  position: sticky;

  top: 110px;

  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 20px;
}

/*==============================
        Poster
==============================*/

.poster img {
  width: 100%;

  border-radius: 18px;
}

/*==============================
      Sidebar Buttons
==============================*/

.download-btn,
.favorite-btn {
  width: 100%;

  height: 52px;

  border-radius: 14px;

  font-size: 15px;

  margin-top: 18px;

  transition: 0.3s;
}

.download-btn {
  background: var(--primary);

  color: #fff;
}

.download-btn:hover {
  background: var(--primary-hover);
}

.favorite-btn {
  background: #242424;

  color: #fff;
}

.favorite-btn:hover {
  background: #303030;
}

/*==============================
        Game Info
==============================*/

.game-info {
  margin-top: 25px;

  display: flex;

  flex-direction: column;

  gap: 10px;
}

.info-item {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 14px 0;

  border-bottom: 1px solid var(--border);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item span {
  color: var(--text-gray);

  font-size: 14px;
}

.info-item strong {
  color: #fff;

  font-size: 15px;
}

.info-item img {
  width: 55px;
}

/*==============================
        Responsive
==============================*/

@media (max-width: 1200px) {
  .hero-layout {
    grid-template-columns: 1fr 330px;
  }
}

@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .game-title {
    font-size: 32px;
  }

  .game-description {
    font-size: 16px;
  }

  .rating {
    width: 115px;

    height: 75px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 40px 0;
  }

  .rating-box {
    justify-content: center;
  }

  .game-title {
    font-size: 26px;
  }

  .game-description {
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .game-title {
    font-size: 22px;

    line-height: 1.8;
  }

  .rating {
    width: 100%;
  }

  .download-btn,
  .favorite-btn {
    height: 48px;
  }
}
/*=========================================
        PART 3
        Trailer + About + Features
==========================================*/

/*==============================
        Section
==============================*/

section {
  padding: 70px 0;
}

.section-title {
  font-size: 36px;

  margin-bottom: 35px;

  color: #fff;

  font-weight: 800;
}

/*==============================
        Trailer
==============================*/

.video-box {
  overflow: hidden;

  border-radius: 22px;

  border: 4px solid var(--border);

  background: #111;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}

.video-box video {
  width: 100%;

  display: block;
}

/*==============================
        About
==============================*/

.about-box {
  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 35px;
}

.about-box p {
  color: var(--text-light);

  line-height: 2.3;

  font-size: 16px;

  margin-bottom: 20px;
}

.about-box p:last-child {
  margin-bottom: 0;
}

/*==============================
        Features
==============================*/

.feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}

.feature-card {
  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 18px;

  padding: 30px;

  transition: 0.35s;
}

.feature-card:hover {
  transform: translateY(-8px);

  border-color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 15px;

  font-size: 22px;
}

.feature-card p {
  color: var(--text-light);

  line-height: 2;
}

/*==============================
        Genres
==============================*/

.genre-list {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;
}

.genre-tag {
  background: #1d1d1d;

  border: 1px solid var(--border);

  color: #fff;

  padding: 12px 22px;

  border-radius: 30px;

  transition: 0.35s;
}

.genre-tag:hover {
  background: var(--primary);

  border-color: var(--primary);
}

/*==============================
      Download Notice
==============================*/

.notice-box {
  background: #181818;

  border-right: 5px solid var(--primary);

  border-radius: 20px;

  padding: 35px;
}

.notice-box h3 {
  margin-bottom: 15px;

  font-size: 24px;
}

.notice-box p {
  color: var(--text-light);

  line-height: 2.2;
}

/*==============================
      Download Links
==============================*/

.download-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.download-card {
  display: flex;

  justify-content: center;

  align-items: center;

  height: 75px;

  border-radius: 18px;

  background: var(--primary);

  color: #fff;

  font-size: 17px;

  font-weight: 700;

  transition: 0.35s;
}

.download-card:hover {
  background: var(--primary-hover);

  transform: translateY(-5px);
}

/*==============================
      Responsive
==============================*/

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }

  .about-box {
    padding: 25px;
  }

  .feature-card {
    padding: 25px;
  }

  .notice-box {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .download-card {
    height: 60px;

    font-size: 15px;
  }

  .genre-tag {
    width: 100%;

    justify-content: center;

    display: flex;
  }
}

@media (max-width: 360px) {
  .about-box p {
    font-size: 15px;
  }

  .feature-card h3 {
    font-size: 19px;
  }

  .notice-box h3 {
    font-size: 20px;
  }
}
/*=========================================
        PART 4
        Requirements + Gallery
        Similar Games + Posts
==========================================*/

/*==============================
      System Requirements
==============================*/

.requirements-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;
}

.requirement-card {
  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 35px;

  transition: var(--transition);
}

.requirement-card:hover {
  transform: translateY(-6px);

  border-color: var(--primary);
}

.requirement-card h3 {
  font-size: 24px;

  margin-bottom: 25px;

  color: #fff;
}

.requirement-card ul {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.requirement-card li {
  color: var(--text-light);

  line-height: 2;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  padding-bottom: 12px;
}

.requirement-card li:last-child {
  border-bottom: none;

  padding-bottom: 0;
}

.requirement-card strong {
  color: #fff;
}

/*==============================
          Gallery
==============================*/

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.gallery-grid img {
  width: 100%;

  height: 230px;

  object-fit: cover;

  border-radius: 18px;

  transition: var(--transition);

  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.04);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/*==============================
      Similar Games
==============================*/

.games-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.game-card {
  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 20px;

  overflow: hidden;

  transition: var(--transition);
}

.game-card:hover {
  transform: translateY(-8px);

  border-color: var(--primary);
}

.game-card img {
  width: 100%;

  height: 320px;

  object-fit: cover;
}

.game-info {
  padding: 20px;
}

.game-info h3 {
  font-size: 18px;

  margin-bottom: 10px;

  color: #fff;
}

.game-info p {
  color: var(--text-gray);

  font-size: 14px;
}

/*==============================
        Related Posts
==============================*/

.video-section {
  position: relative;
  overflow: hidden;

  padding: 120px 0;

  display: flex;
  justify-content: center;

  background: #0b0b0b;
}

/* بک گراند اسکلت */

.video-bg {
  position: absolute;
  inset: 0;

  background: url("../callof/bomb99.png") center center no-repeat;

  background-size: 1100px;

  opacity: 0.2;

  filter: grayscale(100%);

  z-index: 0;
}

/* محتوا */

.video-section .container {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* خود ویدیو */

.video-card {
  width: 60%;
  max-width: 900px;

  background: #151515;

  border: 1px solid #2a2a2a;

  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.video-player {
  width: 100%;

  aspect-ratio: 16/9;

  display: block;
}
/*==============================
        Responsive
==============================*/

@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .game-card img {
    height: 280px;
  }

  .post-card img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .requirement-card {
    padding: 25px;
  }

  .requirement-card h3 {
    font-size: 21px;
  }

  .gallery-grid img {
    height: 200px;
  }

  .post-content {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .requirement-card {
    padding: 20px;
  }

  .requirement-card li {
    font-size: 14px;
  }

  .post-content h3 {
    font-size: 18px;
  }

  .post-content p {
    font-size: 14px;
  }
}
/*=========================================
        PART 5
        Footer + FAQ + Comments
==========================================*/

/*==============================
        Comments
==============================*/

.comments-list {
  display: grid;

  gap: 25px;
}

.comment-card {
  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 30px;

  transition: var(--transition);
}

.comment-card:hover {
  border-color: var(--primary);
}

.comment-header {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 20px;
}

.comment-header img {
  width: 65px;

  height: 65px;

  border-radius: 50%;

  object-fit: cover;
}

.comment-header h3 {
  font-size: 18px;
}

.comment-header span {
  color: #ffd54f;
}

.comment-card p {
  color: var(--text-light);

  line-height: 2;
}

/*==============================
            FAQ
==============================*/

.faq-list {
  display: flex;

  flex-direction: column;

  gap: 15px;
}

.faq-list details {
  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 18px;

  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;

  padding: 20px;

  font-size: 17px;

  font-weight: 600;

  color: #fff;
}

.faq-list p {
  padding: 0 20px 20px;

  color: var(--text-light);

  line-height: 2;
}

/*==============================
        Newsletter
==============================*/

.newsletter-box {
  background: linear-gradient(135deg, #181818, #101010);

  border: 1px solid var(--border);

  border-radius: 25px;

  padding: 50px;

  text-align: center;
}

.newsletter-box h2 {
  font-size: 34px;

  margin-bottom: 15px;
}

.newsletter-box p {
  color: var(--text-light);

  margin-bottom: 35px;
}

.newsletter-form {
  display: flex;

  gap: 15px;

  justify-content: center;

  flex-wrap: wrap;
}

.newsletter-form input {
  width: 420px;

  max-width: 100%;

  height: 55px;

  background: #202020;

  border: 1px solid var(--border);

  color: #fff;

  border-radius: 14px;

  padding: 0 18px;
}

.newsletter-form button {
  height: 55px;

  padding: 0 35px;

  background: var(--primary);

  color: #fff;

  border-radius: 14px;
}

.newsletter-form button:hover {
  background: var(--primary-hover);
}

/*==============================
            Footer
==============================*/

.footer {
  margin-top: 100px;

  border-top: 1px solid var(--border);

  background: #0d0d0d;
}

.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 40px;

  padding: 70px 0;
}

.footer-about img {
  width: 180px;

  margin-bottom: 20px;
}

.footer-about p {
  color: var(--text-light);

  line-height: 2;
}

.footer-links {
  display: flex;

  flex-direction: column;

  gap: 15px;
}

.footer-links h3 {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-gray);

  transition: var(--transition);
}

.footer-links a:hover {
  color: #fff;

  padding-right: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;

  padding: 25px 0;

  color: var(--text-gray);
}

/*==============================
      Back To Top
==============================*/

#backToTop {
  position: fixed;

  left: 30px;

  bottom: 30px;

  width: 55px;

  height: 55px;

  border-radius: 50%;

  background: var(--primary);

  color: #fff;

  font-size: 22px;

  display: flex;

  justify-content: center;

  align-items: center;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);

  transition: var(--transition);

  z-index: 999;
}

#backToTop:hover {
  background: var(--primary-hover);

  transform: translateY(-5px);
}

/*==============================
        Scrollbar
==============================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);

  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/*==============================
        Selection
==============================*/

::selection {
  background: var(--primary);

  color: #fff;
}

/*==============================
        Animation
==============================*/

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(40px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.hero,
.trailer,
.about-game,
.features,
.requirements,
.gallery,
.similar-games,
.related-posts,
.comments,
.faq,
.newsletter {
  animation: fadeUp 0.8s ease;
}

/*==============================
        Responsive
==============================*/

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .footer-about img {
    margin: auto auto 20px;
  }

  .newsletter-box {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .newsletter-box h2 {
    font-size: 28px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  #backToTop {
    width: 50px;

    height: 50px;

    left: 20px;

    bottom: 20px;
  }
}

@media (max-width: 576px) {
  .footer {
    margin-top: 70px;
  }

  .footer-grid {
    gap: 30px;

    padding: 50px 0;
  }

  .comment-card {
    padding: 20px;
  }

  .newsletter-box {
    padding: 25px;
  }
}

@media (max-width: 360px) {
  .section-title {
    font-size: 22px;
  }

  .comment-header {
    flex-direction: column;

    text-align: center;
  }

  .comment-header img {
    width: 55px;

    height: 55px;
  }

  .newsletter-box h2 {
    font-size: 22px;
  }

  .newsletter-box p {
    font-size: 14px;
  }

  .footer-links h3 {
    font-size: 18px;
  }

  .footer-links a {
    font-size: 14px;
  }
}
/* ===========================
   Responsive Fix
=========================== */

/* Laptop */
@media (max-width: 1200px) {
  .container {
    width: 95%;
  }

  .video-card {
    width: 100%;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    margin-top: 30px;
  }

  .video-card {
    width: 100%;
  }

  .video-player {
    height: 320px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .navbar {
    gap: 18px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .game-title {
    font-size: 30px;
    line-height: 1.6;
  }

  .game-description {
    font-size: 15px;
  }

  .rating-box {
    justify-content: center;
  }

  .rating {
    width: 140px;
  }

  .video-player {
    height: 260px;
  }

  .gallery-grid,
  .games-grid,
  .feature-grid,
  .download-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  section {
    padding: 45px 0;
  }

  .game-title {
    font-size: 25px;
  }

  .section-title {
    font-size: 24px;
    text-align: center;
  }

  .video-player {
    height: 220px;
  }

  .about-box,
  .notice-box,
  .requirement-card,
  .feature-card,
  .comment-card,
  .newsletter-box {
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* 360px */
@media (max-width: 360px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: 94%;
  }

  .logo img {
    width: 130px;
  }

  .game-title {
    font-size: 22px;
  }

  .section-title {
    font-size: 20px;
  }

  .video-player {
    height: 180px;
  }

  .rating {
    width: 100%;
  }

  .btn {
    font-size: 13px;
    height: 45px;
  }

  .comment-header {
    flex-direction: column;
    text-align: center;
  }

  #backToTop {
    width: 45px;
    height: 45px;
    left: 15px;
    bottom: 15px;
  }
}
/* ===========================
   javascrip
=========================== */
.hidden {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

button,
.download-card {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
/*==============================
        Dark / Light Mode
==============================*/

.theme-btn{
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid var(--border);
    background:var(--card);
    color:var(--text);
    font-size:20px;
    transition:.3s;
}

.theme-btn:hover{
    transform:rotate(180deg);
}

/* Light Mode */

body.light{

    --bg:#f5f7fb;
    --bg2:#ffffff;

    --card:#ffffff;

    --border:#dddddd;

    --text:#111111;

    --text-light:#444;

    --text-gray:#777;

}

/* قسمت‌هایی که رنگ ثابت داشتن */

body.light .header{
    background:#ffffff;
}

body.light .footer{
    background:#ffffff;
}

body.light .video-section{
    background:#f7f7f7;
}

body.light .btn-login{
    background:#ececec;
    color:#111;
}

body.light .favorite-btn{
    background:#ececec;
    color:#111;
}

body.light .newsletter-form input{
    background:#fff;
    color:#111;
}

body.light .notice-box{
    background:#fff;
}

body.light .game-title,
body.light .section-title,
body.light .requirement-card h3,
body.light .feature-card h3,
body.light .faq-list summary,
body.light .game-info strong{
    color:#111;
}

body.light .dropdown-menu{
    background:#fff;
}

body.light .dropdown-menu a:hover{
    background:#efefef;
}

body.light ::-webkit-scrollbar-track{
    background:#e9e9e9;
}
