:root {
    --yellow: #ffc700;
    --yellow-dark: #e6b400;
    --bg-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-muted: #cccccc;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
    font-family: "Poppins", sans-serif;
  }
  
  body {
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
  }
  
  
  .bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.3;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    background: rgba(10, 10, 10, 0.8); 
    z-index: -1;
  }
  
 
  a {
    text-decoration: none;
    color: var(--yellow);
    transition: color 0.3s ease;
  }
  a:hover {
    color: var(--yellow-dark);
  }
  

  .navbar {
    width: 100%;
    padding: 20px 80px;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--yellow);
    text-transform: uppercase;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  
  .nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--yellow);
  }
  

  header {
    text-align: center;
    margin-top: 60px;
    
    color: var(--text-light); 
    padding: 20px;
  }
  
  header h1 {
      color: var(--yellow);
  }
  
  header p {
    color: var(--text-muted);
    margin-top: 5px;
    font-size: 1rem;
  }
  



  
  .payment-container {
    display: flex;
    justify-content: center;
    
    align-items: stretch; 
    gap: 30px;
    flex-wrap: wrap;
    margin: 60px 0;
    padding: 0 20px;
  }
  
  .payment-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--yellow);
    border-radius: 10px;
    padding: 30px;
    
    flex-basis: 320px;
    max-width: 100%; 
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s;
    
    
    display: flex;
    flex-direction: column;
    
    justify-content: space-between; 
  }
  
  .payment-card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow-dark);
  }
  
  .payment-card h2 {
    color: var(--yellow);
    margin-bottom: 20px;
  }
  
  .payment-card ul {
    text-align: left;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    padding-left: 0; 
    list-style: none; 
    
   
    flex-grow: 1; 
  }
  
  .payment-card ul li {
    margin-bottom: 5px;
  }
  
  .payment-card ul span {
    color: var(--text-light);
    font-weight: 600; 
  }
  
  .price {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 15px 0;
  }
  

  .btn {
    background: var(--yellow);
    color: #000;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s;
    display: inline-block;

    margin-top: auto; 
  }
  
  .btn:hover {
    background: var(--yellow-dark);
  }
  

  footer {
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.6);
    font-size: 0.9rem;
  }