/* Full screen hero container */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    /* Animated Victoria Falls video */
    .hero video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: slowZoom 25s ease-in-out infinite alternate;
    }

    /* Zoom animation */
    @keyframes slowZoom {
      0% { 
        transform: scale(1); 
      }
      100% { 
        transform: scale(1.15); 
      }
    }

    /* Dark overlay so text pops */
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
    }

    /* Text sitting on top of video */
    .hero-text {
      position: absolute;
      top: 10%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 2;
    }

    /* The main word with hover effect */
    .hero-text h1 {
      font-size: 30px;
      font-weight: bold;
      text-transform: capitalize each word;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    /* This is the "hovering" effect */
    .hero-text h1:hover {
      color: #00C2FF;
      transform: scale(1.1);
      text-shadow: 0 0 25px rgba(0, 194, 255, 0.8);
    }

    .hero-text p {
      font-size: 15px;
      margin-top: 15px;
      letter-spacing: 1px;
    }
    /* SUNEYE ZAMBIA LAUNCH REWARD */
.promo-banner {
    background: linear-gradient(135deg, #0d47a1 0%, #2bb34b 100%);
    color: white;
    padding: 35px 25px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(13, 71, 161, 0.4);
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    border: 3px solid #ffeb3b;
}

.promo-banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 80px 80px 0;
    border-color: transparent #ffeb3b transparent transparent;
}

.promo-flag {
    position: absolute;
    top: 12px;
    right: 8px;
    font-size: 1.8rem;
    z-index: 2;
}

.promo-banner h2 {
    margin: 0 0 8px 0;
    font-size: 1.9rem;
    color: #ffeb3b;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.promo-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.promo-badge {
    display: inline-block;
    background: #ffeb3b;
    color: #0d47a1;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.3rem;
    margin: 12px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.promo-steps {
    text-align: left;
    background: rgba(255,255,255,0.12);
    padding: 18px 22px;
    border-radius: 15px;
    margin: 18px auto;
    max-width: 450px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
}

.promo-steps li {
    margin: 10px 0;
    font-size: 1.05rem;
}

.promo-steps strong {
    color: #ffeb3b;
}

.promo-note {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 18px;
    line-height: 1.4;
}

.promo-coming-soon {
    margin-top: 12px;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.2);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
}
 
/* Support Button Highlight */
.nav-button.support-highlight {
    background: var(--suneye-green);
    color: white;
    border: 50px solid var(--suneye-yellow);
}

.nav-button.support-highlight:hover {
    background: #1b8a37;
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(43, 179, 75, 0.3);
}

.nav-button.support-highlight small {
    color: rgba(255,255,255,0.9) !important;
}