body {
    margin: 0;
    padding: 0;
    
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    
    background: url(wer/12.jpg), #08294d;
  }
    .content{
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
  .container {
    background-color: #0a395d;
    border-radius: 15px;
    box-shadow: inset 0 5px 25px 0 #d5f8fb;
    max-width: 900px;
    width: 90%;
    display: flex;
    flex-direction: row;
    padding: 30px;

  }
.actual{
  color: #fff;
}
  .left-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .left-section img {
    max-width: 100%;
    border-radius: 10px;
  }

  .right-section {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .title {
    
    text-align: center;
    margin-bottom: 20px;
  }
  .title {
  font-size: 36px;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 10px #ffd700;
  
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transform: translateY(2px);
}

  .bonus {
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
  }

  .btn {
    text-decoration: none;
    background: linear-gradient(135deg, #ff0058, #0089ff);
    color: #fff;
    font-size: 24px;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
  }

  .btn:hover {
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    transform: scale(1.05);
  }

  
  .bonuses {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 30px;
  }

  .bonus-card {
    background-color: #2a4d69;
    padding: 20px;
    border-radius: 12px;
    width: 45%;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    
    margin-right: 3px;
    margin-left: 3px;
  }

  .bonus-card h3 {
    color: #ffd700;
    margin-bottom: 10px;
  }

  .bonus-card p {
    color: #fff;
    font-size: 20px;
    margin: 0;
  }

  
  @media(max-width: 768px){
    .container {
      flex-direction: column;
    }
    .bonuses {
      flex-direction: column;
    }
    .bonus-card {
      width: 98%;
      margin-bottom: 20px;
      box-sizing: border-box;
    }
    .container{
      margin-top: 5px;
      margin-bottom: 5px;
      width: 98%;
      padding: 10px;
      box-sizing: border-box;
    }
    .right-section{
      padding: 0;
    }
    .content{
      height: auto;
    }
  }