  * { font-family: 'Poppins', sans-serif; }
  html { scroll-behavior: smooth; }
  body { background: #0a0a0a; color: #fff; overflow-x: hidden; }
  
  .gradient-red { background: linear-gradient(135deg, #E53935 0%, #B71C1C 100%); }
  .gradient-yellow { background: linear-gradient(135deg, #FFD54F 0%, #FF8F00 100%); }
  .gradient-green { background: linear-gradient(135deg, #43A047 0%, #1B5E20 100%); }
  .gradient-dark { background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); }
  
  .text-gradient { background: linear-gradient(135deg, #E53935 0%, #FFD54F 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  
  .glow-red { box-shadow: 0 0 40px rgba(229, 57, 53, 0.5); }
  .glow-yellow { box-shadow: 0 0 40px rgba(255, 213, 79, 0.5); }
  
  .neon-border { border: 2px solid #E53935; box-shadow: 0 0 20px rgba(229, 57, 53, 0.4), inset 0 0 20px rgba(229, 57, 53, 0.1); }
  
  .hero-bg {
    background: radial-gradient(ellipse at top, #1a1a2e 0%, #0a0a0a 70%);
    position: relative;
  }
  .hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
      radial-gradient(circle at 20% 50%, rgba(229, 57, 53, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 50%, rgba(255, 213, 79, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .floating { animation: float 6s ease-in-out infinite; }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
  }
  
  .pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }
  @keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(229, 57, 53, 0.5); }
    50% { box-shadow: 0 0 40px rgba(229, 57, 53, 0.8); }
  }
  
  .slide-in { animation: slideIn 0.8s ease-out; }
  @keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .video-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s;
  }
  .video-card:hover { transform: scale(1.05); }
  .video-card::after {
    content: '▶';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    background: rgba(229, 57, 53, 0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 20px;
  }
  
  .faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
  .faq-item.active .faq-answer { max-height: 500px; }
  .faq-item.active .faq-icon { transform: rotate(45deg); }
  
  .tab-btn.active { background: #E53935; color: white; }
  .tab-content { display: none; }
  .tab-content.active { display: block; animation: fadeIn 0.5s; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  
  .country-flag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: rgba(255,255,255,0.05); border-radius: 20px; margin: 4px; }
  
  .scroll-indicator { animation: bounce 2s infinite; }
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
  }
  
  .particle {
    position: absolute;
    width: 4px; height: 4px;
    background: #FFD54F;
    border-radius: 50%;
    animation: particleFloat 10s infinite linear;
  }
  @keyframes particleFloat {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
  }
  
  @media (max-width: 768px) {
    .hero-title { font-size: 2.5rem !important; }
    .section-title { font-size: 1.8rem !important; }
  }
  
  .check-icon { color: #43A047; font-weight: bold; }
  
  .pricing-card {
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .pricing-card:hover { transform: translateY(-10px); }
  .pricing-card.featured { border: 2px solid #FFD54F; }
  
  .mobile-menu { transform: translateX(100%); transition: transform 0.3s; }
  .mobile-menu.open { transform: translateX(0); }











