






* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Rubik', Arial, sans-serif;
    font-style: italic;
    font-weight: 300;
    background-color: #fff;
    color: #333;
    line-height: 1.5;
    
      
  
}




img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    
}


header {
   position: fixed;  
    top: 0;                    
    width: 100%;       
    background-color: #000000; 
    z-index: 1000;     
    height: 60px;
   
   
}

.description-text  {
    margin-top: 10px;
    margin-bottom: 30px;    
    text-align: center;
    position: relative;
}

.header-inner {
    max-width: 1200px;     
    display: flex;
  justify-content: space-between;
   align-items: center;
    margin: 0 auto;
   
    
}



img {
    max-width: 100%;
    height: auto;
}


.logo-box img {
    width: 60px; 
    height: 60px;
    object-fit: contain; 
    display: block;
}









.card {
    width: 100%;
    max-width: 1200px;
    min-width: 200px; 
    background: #0c0c18;
    border-radius: 8px;
    padding: clamp(12px, 3vw, 30px); 
    border: 2px solid rgba(220, 50, 50, 0.3);
   
    
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(8px, 2vw, 15px);
    flex-wrap: wrap; 
}


.logo {
    height: clamp(35px, 6vw, 55px); 
    width: auto;
    max-width: 150px;
    object-fit: contain;
    flex-shrink: 0;
}


.rating {
    display: flex;
    align-items: center;
    gap: clamp(3px, 1vw, 6px);
    padding: clamp(4px, 1.5vw, 8px) clamp(8px, 2vw, 14px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.rating-text {
    color: white;
    font-size: clamp(18px, 4vw, 26px); 
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.star-yellow {
    color: #ffcc00;
    font-size: clamp(20px, 4.5vw, 30px); 
    line-height: 1;
    font-weight: 400;
}


.bonus-tag {
    color: white;
    font-size: clamp(18px, 5vw, 32px); 
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: clamp(4px, 1.5vw, 8px) clamp(12px, 3vw, 22px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    flex-shrink: 0;
}


.advantages {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 20px);
    flex-wrap: wrap;
    flex: 1 1 auto;
    justify-content: center;
}


.advantage-item {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.5vw, 12px);
    background: rgba(255, 255, 255, 0.03);
    padding: clamp(4px, 1vw, 8px) clamp(12px, 3vw, 20px) clamp(4px, 1vw, 8px) clamp(8px, 2vw, 15px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    flex: 0 1 auto;
}

.check-green {
    width: clamp(24px, 5vw, 36px); 
    height: clamp(24px, 5vw, 36px);
    background: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(16px, 3.5vw, 22px);
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: none;
}

.advantage-text {
    display: flex;
    flex-direction: column;
}

.advantage-text strong {
    color: white;
    font-size: clamp(14px, 2.5vw, 20px); 
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.advantage-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(11px, 2vw, 16px); 
    font-weight: 400;
    white-space: nowrap;
}


.btn-red {
    background: #e31e24;
    border: none;
    border-radius: 8px;
    padding: clamp(8px, 2vw, 15px) clamp(16px, 4vw, 35px);
    color: white;
    font-weight: 800;
    font-size: clamp(16px, 4vw, 28px); 
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid #CC0000;
   
    white-space: nowrap;
    transition: 0.1s;
    flex-shrink: 0;
}

.btn-red:hover {
    background: #CC0000;
    transform: scale(1.02);
}

.btn-red:active {
    transform: scale(0.98);
}


@media (max-width: 500px) {
    .card {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        align-items: center;
    }
    
    .rating, .bonus-tag {
        align-self: center;
        width: fit-content;
    }
    
    .advantages {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .advantage-item {
        width: 100%;
        justify-content: center;
    }
    
    .btn-red {
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 300px) {
    .card {
        padding: 10px;
    }
    
    .rating-text {
        font-size: 16px;
    }
    
    .star-yellow {
        font-size: 18px;
    }
    
    .bonus-tag {
        font-size: 16px;
        padding: 4px 10px;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    
    .advantage-text strong {
        font-size: 14px;
    }
    
    .advantage-text span {
        font-size: 11px;
    }
    
    .btn-red {
        font-size: 16px;
        padding: 10px;
    }
}


@media (max-width: 200px) {
    .card {
        min-width: 200px;
        padding: 8px;
    }
    
    .logo {
        height: 30px;
    }
    
    .rating {
        padding: 3px 6px;
    }
    
    .rating-text {
        font-size: 14px;
    }
    
    .star-yellow {
        font-size: 16px;
    }
    
    .bonus-tag {
        font-size: 14px;
        padding: 3px 8px;
        letter-spacing: 0.5px;
    }
    
    .check-green {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .advantage-text strong {
        font-size: 12px;
    }
    
    .advantage-text span {
        font-size: 10px;
    }
    
    .btn-red {
        font-size: 14px;
        padding: 8px;
    }
}

.table-container {
    margin: 20px 0; 
    width: 100%;
    max-width: fit-content; 
    min-width: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #ffffff;
    overflow: hidden;
    font-family: sans-serif;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pirots-table {
    width: auto; 
    min-width: 100%; 
    border-collapse: collapse;
}

/* Настройки всех ячеек */
.pirots-table th, 
.pirots-table td {
    padding: 12px 20px;
    text-align: left;
    width: 1%; 
    white-space: nowrap; 
}


.pirots-table td:first-child {
    font-weight: bold;
    background-color: #f9f9f9;
    color: #000000;
    border-right: 1px solid #eee;
}

.pirots-table td:last-child {
    width: auto; 
    color: #333;
}


.pirots-table thead {
    background-color: #000000;
}

.pirots-table th {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}


.pirots-table td {
    border-bottom: 1px solid #eee;
}

.pirots-table tbody tr:nth-child(even) {
    background-color: #fdfdfd;
}

.pirots-table tbody tr:hover {
    background-color: #f1f1f1;
}

.games-grid {
  display: grid;
 grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 15px;
}

.game-card {
  display: flex;
  flex-direction: column; 
  text-decoration: none;
  background: #222;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid #333;
}

.game-img-container {
  position: relative;
  width: 100%;
  height: 280px; 
  overflow: hidden;
}

.game-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}


.game-img-container::after {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}


.game-info {
  padding: 15px;
  text-align: center;
}

.game-info h3 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}


.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.button-container a {
    flex: 1 1 auto;
    min-width: 150px;
    max-width: 100%;
    padding: 16px 20px;
    text-align: center;
    background:#CC0000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    box-sizing: border-box;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    
  
    font-size: clamp(12px, 2vw, 16px);  /* От 12px до 16px */
    line-height: 1.3;
    white-space: normal;     
    overflow-wrap: break-word;
    hyphens: auto;
}

.button-container a:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(178, 34, 34, 0.4);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    font-family: 'Arial', sans-serif;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
    box-sizing: border-box;
    background-color: #CC0000;
    color: #ffffff;
    border: 2px solid #CC0000;
    
   
    font-size: clamp(13px, 2.5vw, 16px);
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: break-word;
    text-align: center;
}

.btn:hover {
    background-color: #CC0000;
    border-color: #DC143C;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(178, 34, 34, 0.5);
}

.btn-bonus {
    background-color: #CC0000;
    border-color: #CC0000;
}

.btn-bonus:hover {
    background-color:#CC0000;
    border-color: #CC0000;
}






.burger-menu {
    display: none; 
    flex-direction: column;
 justify-content: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
      gap: 4px;
       margin-right: 10px;
  
}

.burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px; 
    
}




.logo-box {
    width: 60px;
      margin-left: 10px;
}

.logo-box img {
    border-radius: 0; 
}





.nav-menu {
    display: flex;
    flex: 1;              
    justify-content: flex-end; 
    align-items: center;  
    width: 100%;         
}


.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
   
}

.nav-menu li {
    display: inline-block;
}

.nav-menu a {
    display: inline-block;
    color: #ffffff; 
    background-color: transparent;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    background-color: #ff9500;
    color: #000;
}







.language-switcher {
    position: relative;
    width: 80px;
    height: 60px;
    flex-shrink: 0;
}

.current-flag-box {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.flag-main {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    display: block;
}

.current-flag-box:hover .flag-main {
    border-color: #DC143C;
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
    transform: scale(1.05);
}


.flags-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px;
    min-width: 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-switcher:hover .flags-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.flag-item {
    display: block;
    padding: 8px;
    margin-bottom: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.flag-item:last-child {
    margin-bottom: 0;
}

.flag-item img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #444;
    display: block;
    transition: all 0.3s ease;
}

.flag-item:hover {
    background: #2a2a2a;
}

.flag-item:hover img {
    border-color: #DC143C;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
    transform: scale(1.1);
}


.lang-picker {
    background: #333;
    color: #fff;
    padding: 3px 8px;
    font-size: 11px;
    border-radius: 4px;
}


  .container {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 10px;
    position: relative;
    margin-top: 70px;
     justify-content: center; 
    align-items: center;     
     }


.hero-section {
    display: flex;
    align-items: flex-start; 
    gap: 20px;               
}

.hero-section2 {
    display: flex;
    align-items: flex-start; 
    gap: 20px;               
    margin-bottom: 30px;
      justify-content: center; 
    align-items: center;  
   
}

.hero-content h1 {
    margin-bottom: 10px;
}

.hero-content h2 {
    margin-top: 20px;    
    margin-bottom: 20px; 
}


.hero-content p {
    margin-top: 0;       
    margin-bottom: 25px;
}







.hero-image {
   width: 100%;             
    display: flex;           
   justify-content: center; 
    align-items: center;   
         
}


.hero-image img {
  max-width: 100%;         
    height: auto;            
    display: block;          
    border-radius: 8px;  
     justify-content: center; 
    align-items: center;     
}






.hero-image1 {
    width: 100%;            
    display: flex;           
    justify-content: center; 
    align-items: center;     
    margin: 40px 0;         
    
}

.hero-image1 img {
    max-width: 100%;        
    height: auto;           
    display: block;          
    border-radius: 8px;     
}

.hero-image2 {
    width: 100%;             
    display: flex;           
    justify-content: center;
    align-items: center;     
    margin: 40px 0;   
    
}

.ms-box {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin: 20px 0;
  text-align: left;
}

.ms-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}


.ms-name {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 5px;
  font-size: 22px;
  font-weight: bold;
}

.ms-tag {
  color: #28a745;
  font-size: 14px;
  font-weight: 400;
  text-transform: lowercase;
}

.ms-text {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.4;
  color: #333;
}

.ms-date {
  font-size: 12px;
  color: #888;
}




.faq-title {
  text-align: center;
  font-size: 28px;
  margin: 40px 0 20px;
  font-family: sans-serif;
}


.faq-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 2px solid #eee;
}

.faq-item {
  border-bottom: 2px solid #eee;
}


.faq-input {
  display: none;
}


.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  user-select: none;
}

.faq-label dt {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  color: #222;
}


.faq-label::after {
  content: '';
  width: 10px;
  height: 10px;
  
  border-right: 2px solid #888; 
  border-bottom: 2px solid #888; 
  
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 10px;
  flex-shrink: 0;
}


.faq-content {
  display: none;
}

.faq-content dd {
  margin: 0;
  padding: 0 20px 20px;
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}


.faq-input:checked + .faq-label::after {
  transform: rotate(-135deg); 
}

.faq-input:checked ~ .faq-content {
  display: block; 
}


.faq-label:hover {
  background-color: #fafafa;
}





.banner-box {
    text-align: center;
    margin-top: 40px;
}

.banner-img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}





.footer-black-static {
    background-color: #000000;
    padding: 50px 0 30px 0;
    width: 100%;
    font-family: Arial, sans-serif;
    color: #ffffff;
}

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


.providers-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}


.p-item {
    flex: 1;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 0;
}


.p-item img {
   
    object-fit: contain;
    border-radius: 0;
    border: none;
    background: transparent; 
    display: inline-block;
}


.footer-line {
    height: 1px;
    background-color: #1a1a1a;
    margin-bottom: 30px;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.footer-pages {
    display: flex;
    gap: 20px;
     justify-content: center;
}

.footer-pages a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-pages a:hover {
    color: #fff;
}

.footer-copyright-text span {
 color: #ffffff;
    font-size: 16px;

}
.footer-copyright-text {
    max-width: 800px;
    margin: 0 auto; 
    width: 100%;
    color: #ffffff;
    font-size: 14px;
    text-align: center; 
    box-sizing: border-box;
    padding: 0 10px; 
}


.footer-copyright {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    color: #ffffff;
    font-size: 16px;
    text-align: center; 
    box-sizing: border-box;
    padding: 10px; 
}




@media (max-width: 768px) {
    .providers-row {
        flex-wrap: wrap;
        justify-content: center;
           flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

.footer-pages {
    display: flex;
    gap: 20px;
     justify-content: center;
        align-items: center;
     flex-direction: column;
}




@media (max-width: 1000px) {
.hero-section {
        flex-direction: column;
        text-align: center;
    }

@media (max-width: 1000px) {
   .games-grid {
  display: grid;
 grid-template-columns: repeat(3, 1fr);
  gap: 20px; 
  margin: 30px auto;
  padding: 0 15px;
}



.burger-menu {
    display: none; 
    flex-direction: column;
 justify-content: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
      gap: 4px;
       margin-right: 10px;
  
}

.burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff; 
    border-radius: 2px; 
    
}



@media (max-width: 700px) {
   .games-grid {
  display: grid;
 grid-template-columns: repeat(1, 1fr);
  gap: 20px; 
  margin: 30px auto;
  padding: 0 15px;
}
 .ms-box {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin: 20px 0;
  text-align: left;
  flex-direction: column; 
    align-items: center;
}


 
@media (max-width: 1200px) {

header {
   position: fixed;   
    top: 0;                      
    width: 100%;      
    background-color: #000000; 
    z-index: 1000;    
    height: 60px;
    left: 0;                    
    right: 0;      
}
  
    .nav-container {
        display: none;
    }
    
    .container {
    max-width: 1000px;
    margin: 10px auto;
    padding: 0 10px;
    position: relative;
    margin-top: 70px;
     }
    

  
@media (max-width: 700px) {
    
    .burger-menu {
        display: flex;
    }

    
    .nav-menu {
        position: fixed;
        top: 60px;
        right: 0;
        width: 75%;
        max-width: 300px;
        background-color: #000;
        padding: 20px 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
        border-radius: 0 0 0 10px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        justify-content: center;
        align-items: center;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #333;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 18px 25px;
        text-align: left;
    }
    
    .language-switcher {
        position: fixed;
        top: 60px;
        right: 0;
        width: 75%;
        max-width: 300px;
        background: #000;
        padding: 25px 25px;
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
        transition: all 0.3s ease;
        margin-top: 215px;
        border-radius: 0 0 0 10px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 80px;
    }
    
  
    .language-switcher.active {
        opacity: 1;
        visibility: visible;
    }
}



    .current-flag-box {
        display: none ;
    }
    
    
    .flags-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        display: flex;
        gap: 15px;
        align-items: flex-start;
    }
    
 .flag-item {
    display: flex ;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 ;
    border: none ;
    text-decoration: none;
    gap: 5px; 
}

.flag-item img {
    width: 50px ;
    height: 33px ;
    border: 2px solid #555;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block ; 
    margin: 0 ; 
    object-fit: cover; 
    vertical-align: top ; 
}
  
}
   

