/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 07 2025 | 06:37:38 */
  .bonus-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 1100px;
    width: 100%;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(255, 208, 70, 0.25);
    border-radius: 26px;
    padding: 36px 42px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 208, 70, 0.08);
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    overflow: hidden;
    position: relative;
	  margin: 5rem auto;
  }

  .bonus-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 208, 70, 0.15), transparent 60%);
    z-index: 0;
  }

  .bonus-info {
    position: relative;
    z-index: 1;
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .bonus-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd047;
    text-shadow: 0 0 8px rgba(255, 208, 70, 0.5);
    letter-spacing: 1px;
  }

  .bonus-subtitle {
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffe28c;
    opacity: 0.95;
  }

  .bonus-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 34px;
    background: none;
    border: 2px solid #ffd047;
    border-radius: 50px;
    color: #ffd047;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    box-shadow: 0 0 12px rgba(255, 208, 70, 0.1);
  }

  .bonus-btn:hover {
    background: #ffd047;
    color: #111;
    box-shadow: 0 0 20px rgba(255, 208, 70, 0.4);
    transform: translateY(-2px);
  }

  .bonus-image {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .bonus-image img {
    width: 170px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 208, 70, 0.4));
    transition: transform 0.3s ease;
  }

  .bonus-image img:hover {
    transform: scale(1.05);
  }

  @media (max-width: 780px) {
    .bonus-banner {
      flex-direction: column-reverse;
      text-align: center;
      padding: 28px 24px;
    }
    .bonus-btn {
      align-self: center;
    }
    .bonus-title {
      font-size: 1.7rem;
    }
  }