.dropdown-menu {
    display: none;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.navbar-brand img {
    max-width: 210px;
}

.buttongame {
    background-color: #2462ca;
    padding: 10px 15px 10px 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    margin-left: 15px;
}

.buttongame:hover {
    color: #fff;
    background-color: #2462ca;
}
.buttongamedownload {
    background-color: #4993e3;
    padding: 10px 15px 10px 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    margin-left: 15px;
}

.buttongamedownload:hover {
    color: #fff;
    background-color: #4993e3;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: center;
    }
}

.navbar>.container {
    flex-wrap: nowrap;
}

@media (max-width:500px) {
    .navbar>.container {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.container {
    width: 100%;
    overflow: hidden;
}

.container img {
    text-align:center;
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

.buttons {
    display: flex;
    justify-content: center;
    margin: 20px;
}

.buttons > .buttongame {
    min-width: 150px;
    text-align: center;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: fixed;
    }
}
.dropdown-menu {
    border-radius: 0px;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.centerimg {
    max-width:750px;
    margin:0 auto;
    display:block;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
}

header .bg-white {
    background-color:#000!important;
}
.navbar-nav .nav-link.active, .nav-link {
    color:#fff;
}
body .bg-light {
    background-color:#1e2538!important;
    color:#fff!important;
}
body .bg-light .container {
    color:#fff!important;
}
.bg-dark {
    background-color:#000!important;
}
.nav-item a:hover {
    color:#fff!important;
}
table {
    width: 100%; 
    border-collapse: collapse; 
    font-family: 'Roboto', sans-serif;
  }
  

  th {
    font-weight: bold;
    padding: 12px;
    text-align: left;
  }
  
  /* Стили для строк */
  td {
    padding: 10px;
    border-bottom: 1px solid #ddd; 
  }
  
  
  table {
    border-radius: 8px;
    overflow: hidden; 
  }
  
  @media (max-width: 768px) {
    table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
    }
  }

  /* Reviews Section Styles */
  .reviews-section {
    margin: 40px 0;
  }

  .section-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2462ca, #4993e3);
    border-radius: 2px;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  .review-card {
    background: linear-gradient(135deg, #1e2538 0%, #2a3441 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #3a4552;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2462ca, #4993e3);
  }

  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(36, 98, 202, 0.2);
    border-color: #2462ca;
  }

  .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }

  .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2462ca, #4993e3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
  }

  .user-details {
    display: flex;
    flex-direction: column;
  }

  .username {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
  }

  .review-date {
    color: #8a9ba8;
    font-size: 12px;
  }

  .rating {
    display: flex;
    align-items: center;
  }

  .stars {
    color: #ffd700;
    font-size: 16px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
  }

  .review-content {
    color: #e1e8ed;
    line-height: 1.6;
  }

  .review-content p {
    margin: 0;
    font-size: 14px;
  }

  /* FAQ Section Styles */
  .faq-section {
    margin: 60px 0;
  }

  .faq-item {
    background: linear-gradient(135deg, #1e2538 0%, #2a3441 100%);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #3a4552;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    border-color: #2462ca;
    box-shadow: 0 5px 15px rgba(36, 98, 202, 0.1);
  }

  .faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    background: linear-gradient(135deg, #1e2538 0%, #2a3441 100%);
    transition: background 0.3s ease;
  }

  .faq-question:hover {
    background: linear-gradient(135deg, #2a3441 0%, #3a4552 100%);
  }

  .faq-question h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding-right: 30px;
    line-height: 1.4;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #2462ca;
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
  }

  .faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
  }

  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-answer.active {
    padding: 0 20px 20px 20px;
    max-height: 200px;
  }

  .faq-answer p {
    color: #e1e8ed;
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .reviews-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .review-card {
      padding: 15px;
    }

    .section-title {
      font-size: 1.5rem;
    }

    .faq-question h3 {
      font-size: 14px;
      padding-right: 25px;
    }

    .faq-question::after {
      right: 15px;
      font-size: 20px;
    }
  }

  @media (max-width: 480px) {
    .user-info {
      gap: 8px;
    }

    .user-avatar {
      width: 35px;
      height: 35px;
      font-size: 12px;
    }

    .username {
      font-size: 13px;
    }

    .review-date {
      font-size: 11px;
    }

    .stars {
      font-size: 14px;
    }
  }
  