body {
    background-color: #000;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .hero-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #b30000, #660000);
    color: #fff;
  }
  
  .product-display {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    align-items: center;
    justify-content: center;
  }
  
  .product-image {
    max-width: 300px;
    margin-right: 40px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
  }
  
  .details {
    max-width: 400px;
  }
  
  .details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }
  
  .details ul li {
    font-size: 1.1em;
    margin: 10px 0;
  }
  
  .price {
    font-size: 2em;
    font-weight: bold;
    color: #ffcc00;
    margin: 10px 0;
  }
  
  .timer-box {
    font-size: 1.2em;
    margin: 10px 0;
    background: #222;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
  }
  
  button.buy-now-btn {
    background-color: #ff0000;
    color: #fff;
    font-size: 1.3em;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s ease;
    box-shadow: 0 0 15px #ff0000;
    animation: pulse 1.5s infinite;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px red; }
    50% { transform: scale(1.05); box-shadow: 0 0 20px gold; }
  }
  
  button#buy-now-btn:hover {
    background-color: #cc0000;
  }
  
  .benefits {
    padding: 40px 20px;
    background: #111;
    color: #ddd;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  footer {
    background: #000;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #777;
  }
  
  .product-description p {
    margin-top: 10px;
    font-size: 1.05rem;
  }
  
  .product-description h3 {
    font-size: 1.4rem;
    color: gold;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .shimmer-text {
    background: linear-gradient(90deg, #FFD700, black, black, black, #FFD700);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s linear infinite;
  }  
  @keyframes shimmer {
    0% {
      background-position: -200% center;
    }
    100% {
      background-position: 200% center;
    }
  }

  .flicker {
    animation: flickerText 1s infinite;
    display: inline-block;
  }
  @keyframes flickerText {
    0%, 100% { filter: opacity(1); }
    50% { filter: opacity(0.3); }
  }

  .ribbon {
    background: gold;
    color: #000;
    padding: 5px 12px;
    font-weight: bold;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 15px;
  }
  
  .flash-sale {
    color: #ffcc00;
    font-size: 2.5rem;
    animation: flash 1s infinite;
  }
  @keyframes flash {
    0%, 100% { color: #ffcc00; }
    50% { color: red; }
  }

  .glow-timer {
    font-weight: bold;
    font-size: 1.4rem;
    color: white;
    text-shadow: 0 0 10px darkred, 0 0 20px red;
  }
  
  .what-you-get {
    padding: 50px 20px;
    background: #111;
    color: #fff;
    text-align: center;
  }
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }
  .card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid gold;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  .card img {
    width: 50px;
    height: auto;
    margin-bottom: 15px;
    animation: iconPulse 3s infinite ease-in-out;
  }
  @keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  .card h3 {
    color: gold;
    margin-bottom: 10px;
  }
  .card p {
    font-size: 0.95rem;
    color: #ccc;
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px gold;
    transition: 0.3s ease;
  }
  .card:hover img {
    width: 4rem;
    transition: 0.3s ease;
  }
  .card:first-child {
    border: 3px solid gold;
    scale: 1.05;
  }
  #stickyBuyNowBtn {
    position: fixed;
    bottom: 20px;
    justify-content: center;
    background: red;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    z-index: 1000;
    box-shadow: 0 0 20px gold;
    display: none;
  }
  @media (max-width: 768px) {
    #stickyBuyNowBtn { display: block; }
    .buy-now-btn {display: none;}
  }
  /* FIXED LAYOUT WRAP */
.product-display.layout-fix {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background: #000;
    border-top: 3px solid gold;
  }

  .payment-logos {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    list-style-type: none;
  }
  .payment-logos img {
    max-width: 35px;
  }
  
  .image-block {
    flex: 1 1 400px;
    max-width: 400px;
    text-align: center;
  }
  
  .image-block img {
    width: 100%;
    max-width: 350px;
    box-shadow: 0 0 20px red;
    border-radius: 12px;
  }
  
  .info-block {
    flex: 2 1 500px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .info-block h2 {
    color: gold;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .product-description h3 {
    font-size: 1.5rem;
    color: yellow;
    margin-top: 1rem;
  }
  
  .timer-box.glow-box {
    font-size: 1.1rem;
    background: #111;
    padding: 0.5rem 1rem;
    color: #fff;
    border: 1px solid red;
    box-shadow: 0 0 12px red;
    border-radius: 8px;
    width: fit-content;
  }
  
  #countdown.glow-timer {
    color: #ff4d4d;
    font-weight: bold;
    margin-left: 0.5rem;
  }

  .modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex; justify-content: center; align-items: center;
    z-index: 9999;
  }
  .modal-content {
    background: #1f1f1f;
    padding: 2rem;
    border-radius: 12px;
    color: #fff;
    width: 90%;
    max-width: 400px;
    text-align: center;
  }
  .modal-content input {
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
  }
  .hidden { display: none; }
  .explainer-video {
    text-align: center;
    padding: 60px 20px;
    background-color: #000;
  }
  
  .section-heading {
    color: gold;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #FFD700;
  }
  
  .video-wrapper {
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 0 30px red;
    border: 3px solid gold;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .video-wrapper iframe {
    width: 100%;
    height: 405px;
    display: block;
  }
  .testimonial-section {
    background: #111;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .testimonial-marquee {
    overflow: hidden;
    background: #111;
    padding: 60px 0;
    text-align: center;
  }
  
  .marquee-track {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .marquee-content {
    display: flex;
    animation: marqueeScroll 60s linear infinite;
  }
  
  .testimonial-card {
    flex: 0 0 300px;
    margin: 0 15px;
    background: #1a1a1a;
    border: 2px solid gold;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    font-style: italic;
    color: #ccc;
    text-align: center;
    white-space: normal;
    word-break: break-word;
  }
  
  .testimonial-card span {
    display: block;
    margin-top: 10px;
    color: gold;
    font-weight: bold;
  }
  
  @keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  .leave-review-btn {
    background: transparent;
    color: gold;
    font-weight: bold;
    border: 2px solid gold;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    align-items: center;
   margin-top: 25px;
  }
  
  .leave-review-btn:hover {
    background: gold;
    color: #111;
  }