body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background: #0b0b1a;
    color: white;
    overflow-x: hidden;
    position: relative;
  }
  
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(10, 10, 30, 0.85);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ffd700;
    text-shadow: 0 0 12px gold;
  }
  
  .logo-icon {
    height: 75px;
    width: auto;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s ease;
  }
  
  .signup {
    background: #d946ef;
    padding: 8px 16px;
    border-radius: 20px;
  }
  
  .hero {
    position: relative;
    background: url('CCBG.png') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), #000000d0);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    animation: slideUp 1.2s ease-out;
    margin-top: -100px; /* ← this moves content upward */
  }
  
  
  .gold-shimmer {
    font-size: 3rem;
    color: #ffe600;
    text-shadow: 0 0 20px #facc15, 0 0 40px #ffcc00;
    animation: shimmer 2s infinite;
  }
  
  .shine-text {
    font-size: 1.1rem;
    animation: shine 4s infinite;
  }
  
  .cta-button {
    margin-top: 20px;
    background-color: #ffe600;
    color: #000;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 12px #ffd700, 0 0 20px #ffcc00;
    transition: 0.3s ease-in-out;
  }
  
  .cta-button:hover {
    transform: scale(1.1);
  }
  
  .promo-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
  }
  
  .promo-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
  }
  
  .promo-card:hover {
    transform: translateY(-6px) scale(1.02);
  }
  
  .promo-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 6px #ffffffaa);
    animation: floatIcon 5s infinite ease-in-out;
  }
  
  .promo-info h3 {
    margin: 0;
    color: #ffd700;
    font-size: 1.2rem;
  }
  
  .promo-info p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #e0e0e0;
  }
  
  .gold-glow { border: 2px solid gold; box-shadow: 0 0 10px gold; }
  .blue-glow { border: 2px solid #00f0ff; box-shadow: 0 0 10px #00f0ff; }
  .red-glow  { border: 2px solid #ff5b5b; box-shadow: 0 0 10px #ff5b5b; }
  .purple-glow { border: 2px solid #c084fc; box-shadow: 0 0 10px #c084fc; }
  .neon-glow { border: 2px solid #fff; box-shadow: 0 0 12px #ffffffcc; }
  
  @keyframes floatIcon {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
  }
  
  .floating-card-icons {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
  }
  
  .floating-card-icons img {
    position: absolute;
    width: 24px;
    opacity: 0.5;
    animation: cardFloatUp 10s linear infinite;
    filter: drop-shadow(0 0 4px white);
  }
  
  .floating-card-icons img:nth-child(1) { left: 10%; bottom: 0; animation-delay: 0s; }
  .floating-card-icons img:nth-child(2) { left: 35%; bottom: -40px; animation-delay: 2s; }
  .floating-card-icons img:nth-child(3) { left: 60%; bottom: -80px; animation-delay: 4s; }
  .floating-card-icons img:nth-child(4) { left: 80%; bottom: -60px; animation-delay: 6s; }
  
  @keyframes cardFloatUp {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 0.5; }
    50% { transform: translateY(-200px); opacity: 1; }
    100% { transform: translateY(-400px); opacity: 0; }
  }
  
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes shimmer {
    0% { text-shadow: 0 0 5px #facc15; }
    50% { text-shadow: 0 0 20px #fffab0, 0 0 40px #ffd700; }
    100% { text-shadow: 0 0 5px #facc15; }
  }
  
  @keyframes shine {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  
  @keyframes pulseGlow {
    0% { box-shadow: 0 0 5px #ffd700; }
    50% { box-shadow: 0 0 20px #ffcc00; }
    100% { box-shadow: 0 0 5px #ffd700; }
  }
  
  @keyframes moveDots {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
    .shine-text {
      font-size: 1rem;
    }
    .promo-content {
      padding: 40px 15px;
    }
  }
  
  .reduced-hero {
    height: 75vh; /* Reduced height to reveal promo section faster */
  }
  
  .promo-card {
  min-height: 170px;
  box-sizing: border-box;
}
