






 *{
    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;
}




.button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    padding: 20px;
    box-sizing: border-box;
}

.red-button {
    display: inline-block;
    padding: 1.5em 3em;
    background-color:#CC0000;
    color: white;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: clamp(14px, 2vw, 20px);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: fit-content;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.red-button:hover {
    background-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.red-button:active {
    background-color: #CC0000;  /* Тот же цвет */
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.red-button:focus {
    outline: 2px solid #E3254B;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .red-button {
        padding: 1.2em 2.5em;
        min-width: 180px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .red-button {
        padding: 1em 2em;
        min-width: 160px;
        width: 90%;
        max-width: 280px;
    }
}


.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;
   
}
  
    .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 ; 
}
  
}
   

