
body {
    font-family: 'Montserrat', sans-serif; 
    margin: 0;  
    padding: 0; 
    width: 100%; 
    box-sizing: border-box;
  }
  
  
  .nav-bar {
    background-color: #f1f1f1; 
    padding: 10px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-top: 20px;
  }
  
  .nav-link {
    color: rgb(20, 4, 4);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600; 
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .nav-link:hover {
    background-color: #39c2f1; 
    transform: scale(1.05);
  }
  
  .nav-link:active {
    background-color: #0a285c; 
  }
  
 
  


  
.content-container {
    display: flex;
    justify-content: space-between;  
    align-items: center;  
    padding: 20px;
    background-color: #1e3a8a;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    flex-wrap: wrap; 
  }
  
  .text-block {
    width: 60%;  
    max-width: 600px; 
  }
  
  .text-block h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .author-info {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
  }
  
  .text-block p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .image-block {
    width: 12%;  
    max-width: 400px; 
    text-align: center; 
  }
  
  .image-block img {
    width: 100%;  
    height: auto;  
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: transparent;  
  }
  
  
  



.casino-container {
    display: flex;
    flex-direction: column;  
    gap: 30px;  
    padding: 20px;
    margin: 0;  
    justify-content: center;
    align-items: center;
}

  
  .casino-card {
    display: flex;
    justify-content: space-between;  
    align-items: center;
    width: 100%;  
    max-width: 950px; 
    background-color: #f5ebeb;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; 
  }
  
  
  .card-content {
    display: flex;
    justify-content: space-between;  
    align-items: center;
    width: 100%;
    flex-wrap: wrap;  
    gap: 20px;  
  }
  
  
  .logo-block {
    width: 15%;  
    display: flex;
    justify-content: center; 
    align-items: center;
  }
  
  .logo-block img {
    width: 100%; 
    height: auto;
    border-radius: 8px;
  }
  
 
  .payment-block {
    width: 20%;  
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .payment-icons {
    display: flex;
    justify-content: center;  
    gap: 15px;  
  }
  
  .payment-method {
    font-family: 'Montserrat', sans-serif;  
    font-weight: bold;  
    font-size: 14px;  
    color: #1e3a8a;  
    text-transform: uppercase;  
    letter-spacing: 1px;  
    transition: color 0.3s ease, transform 0.3s ease; 
  }
  
  .payment-method:hover {
    color: #39c2f1;  
    transform: scale(1.1);  
  }
  
  
  
  
  
    .info-block {
        width: 35%; 
        display: flex;
        flex-direction: column;
        align-items: center; 
        justify-content: center; 
        margin-left: 10px;
        text-align: center;
  }
  
  .rating {
    font-size: 24px;
    font-weight: bold;
    color: #1e3a8a;
  }
  
  .stars {
    color: gold;
    font-size: 18px;
    margin: 5px 0;
  }
  
  .reviews {
    font-size: 14px;
    color: #555;
  }
  
  
  .button-block {
    width: 15%;  
    display: flex;
    justify-content: center; 
    align-items: center;
  }
  
  .button-block a {
    display: inline-block;
    background-color: #1e3a8a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
  }
  
  .button-block a:hover {
    background-color: #39c2f1;
  }
  
  
  .casino-card:hover {
    transform: scale(1.05); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
  }
  
 
  

  .casino-warning {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #1E3A8A; /* Синий фон */
    color: #fff; /* Белый текст */
    border-radius: 8px;
  }
  
  .casino-warning h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .casino-warning p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .blacklist-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .blacklist-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 32%;  
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blacklist-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .blacklist-card h3 {
    color: #1E3A8A; 
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .rating {
    color: #F1A800;  
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .payment-block {
    display: flex;
    justify-content: space-between;
  }
  
  .payment-icons {
    display: flex;
    gap: 10px;
  }
  
  .payment-method {
    font-size: 14px;
    font-weight: bold;
    color: #1E3A8A;
  }
  
  .button-block {
    margin-top: 10px;
  }
  
  .button-block a {
    display: inline-block;
    background-color: #1E3A8A;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .button-block a:hover {
    background-color: #39C2F1;
  }
  
  .why-avoid ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .why-avoid li {
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
  }
  
  .why-avoid strong {
    font-weight: bold;
    color: #1E3A8A;  
  }
  
 
@media (max-width: 768px) {
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;  
    }
  
    
    .nav-bar {
      flex-direction: column;  
      gap: 10px;
      margin: 0;
      padding: 10px 0;
      width: 100%;
      text-align: center;  
    }
  
    .nav-link {
      font-size: 16px;
      padding: 12px 20px;
      text-align: center;
    }
  
    
    .content-container {
      flex-direction: column;
      text-align: center;  
      padding: 15px 10px;
      width: 100%;
    }
  
    .text-block, .image-block {
      width: 100%;
      margin-bottom: 20px;
      text-align: center; 
    }
  
    .image-block img {
      width: 80%;
      margin-left: auto;
      margin-right: auto;
    }
  
    
    .casino-container {
      flex-direction: column;  
      align-items: center;
      padding: 20px 15px;
      margin-left: 0;
      margin-right: 0;
      width: 100%;
      justify-content: center;
      text-align: center;  
      overflow: hidden;  
    }
  
    .casino-card {
      width: 100%;
      text-align: center;
      flex-direction: column;
      padding: 15px;
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      align-items: center; 
    }
  
    .logo-block {
      width: 100%;
      margin-bottom: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .logo-block img {
      width: 50%;
      height: auto;
      object-fit: contain;
    }
  
    .payment-block {
      width: 100%;
      margin-bottom: 10px;
      display: flex;
      justify-content: center;
    }
  
    .payment-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
    }
  
    .payment-method {
      font-size: 14px;
    }
  
    .info-block {
      width: 100%;
      margin-left: 0;
      text-align: center; 
    }
  
    .rating {
      font-size: 24px;
      margin-bottom: 10px;
    }
  
    .stars {
      color: gold;
      font-size: 18px;
      margin: 5px 0;
    }
  
    .reviews {
      font-size: 14px;
    }
  
    .button-block {
      width: 100%;
      margin-top: 10px;
    }
  
    .button-block a {
      display: inline-block;
      background-color: #1e3a8a;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      text-align: center;
    }
  
    .button-block a:hover {
      background-color: #39c2f1;
    }
  
    
    .casino-warning {
      display: flex;
      flex-direction: column;  
      gap: 20px;
      align-items: center;
      width: 100%;
      padding: 15px;
      text-align: center; 
      overflow: hidden; 
    }
  
    .casino-warning h2 {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 10px;
    }
  
    .casino-warning p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 10px;
    }
  
    
    .blacklist-container {
      display: flex;
      flex-direction: column;  
      gap: 20px;
      width: 100%;
      text-align: center;  
      overflow: hidden;  
    }
  
    .blacklist-card {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      width: 100%;  
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;  
    }
  
    .blacklist-card:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
  
    .blacklist-card h3 {
      color: #1E3A8A;
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
    }
  
    .rating {
      color: #F1A800;
      font-size: 18px;
      margin-bottom: 10px;
    }
  
    .payment-icons {
      display: flex;
      gap: 10px;
    }
  
    .payment-method {
      font-size: 14px;
      font-weight: bold;
      color: #1E3A8A;
    }
  
    .button-block {
      margin-top: 10px;
    }
  
    .button-block a {
      display: inline-block;
      background-color: #1E3A8A;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }
  
    .button-block a:hover {
      background-color: #39C2F1;
    }
  
    .why-avoid ul {
      list-style-type: none;
      padding-left: 0;
    }
  
    .why-avoid li {
      margin-bottom: 5px;
      font-size: 14px;
      color: #555;
    }
  
    .why-avoid strong {
      font-weight: bold;
      color: #1E3A8A;
    }
  }
  
  