  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
            color: #E0E7FF;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', 'Courier New', monospace;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        h1 { font-size: 3.5rem; line-height: 1.1; }
        h2 { font-size: 2.5rem; line-height: 1.2; }
        h3 { font-size: 1.875rem; line-height: 1.3; }

        /* Neon Glow Effects */
        .neon-cyan {
            color: #00D9FF;
            text-shadow: 0 0 10px rgba(0, 217, 255, 0.5), 0 0 20px rgba(0, 217, 255, 0.3);
        }

        .neon-magenta {
            color: #FF006E;
            text-shadow: 0 0 10px rgba(255, 0, 110, 0.5), 0 0 20px rgba(255, 0, 110, 0.3);
        }

        .neon-border {
            border: 2px solid #00D9FF;
            box-shadow: 0 0 15px rgba(0, 217, 255, 0.3), inset 0 0 15px rgba(0, 217, 255, 0.1);
        }

        .neon-border-magenta {
            border: 2px solid #FF006E;
            box-shadow: 0 0 15px rgba(255, 0, 110, 0.3), inset 0 0 15px rgba(255, 0, 110, 0.1);
        }

        /* Animations */
        @keyframes glow-pulse {
            0%, 100% { text-shadow: 0 0 10px rgba(0, 217, 255, 0.5), 0 0 20px rgba(0, 217, 255, 0.3); }
            50% { text-shadow: 0 0 20px rgba(0, 217, 255, 0.8), 0 0 30px rgba(0, 217, 255, 0.5); }
        }

        @keyframes float-up {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fade-in-glow {
            from { opacity: 0; filter: drop-shadow(0 0 0px rgba(0, 217, 255, 0)); }
            to { opacity: 1; filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5)); }
        }

        .animate-glow-pulse {
            animation: glow-pulse 2s ease-in-out infinite;
        }

        .animate-float-up {
            animation: float-up 0.6s ease-out;
        }

        .animate-fade-in-glow {
            animation: fade-in-glow 0.8s ease-out;
        }

       

       img.logo 
   {
       max-width: 450px;
       background: rgba(255,255,255,0);
       padding: 12px; 
      
   }
    @media only screen and (max-width: 700px){
        img.logo{
     width:70% !important;       
        }
    }

      

        a {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            text-decoration: none;
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid #00D9FF;
            color: #00D9FF;
        }

        .btn-secondary:hover {
            background: rgba(0, 217, 255, 0.1);
            box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
        }

        .btn-primary {
            background: #00D9FF;
            color: #0A0E27;
        }

        .btn-primary:hover {
            background: #00D9FF;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
            transform: scale(1.05);
        }

        .btn-secondary-magenta {
            background: transparent;
            border: 2px solid #FF006E;
            color: #FF006E;
        }

        .btn-secondary-magenta:hover {
            background: rgba(255, 0, 110, 0.1);
            box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
        }

        .btn-magenta {
            background: #FF006E;
            color: white;
        }

        .btn-magenta:hover {
            background: #FF006E;
            box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
            transform: scale(1.05);
        }

        .btn-purple {
            background: #8B5CF6;
            color: white;
        }

        .btn-purple:hover {
            background: #8B5CF6;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
            transform: scale(1.05);
        }

        /* Main Content */
        main {
            padding-top: 1px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero Section */
        .hero {
            min-height: calc(100vh - 80px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 3rem 2rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            animation: float-up 0.8s ease-out;
        }

        .hero-visual {
            width: 500px;
            height: 150px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #1A1F3A 0%, #2D3748 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #00D9FF;
            box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
            animation: fade-in-glow 1s ease-out;
            font-size: 4rem;
        }

        .hero h1 {
            margin-bottom: 1.5rem;
            max-width: 900px;
        }

        .hero-subtitle {
            display: flex;
             align-items: center;
            justify-content: center;
           margin: 0 auto 2rem;
            font-size: 1.25rem;
            color: #A0AEC0;
            margin-bottom: 2rem;
            max-width: 700px;
        }

        .hero-ctas {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .trust-badges {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            font-size: 0.95rem;
            color: #A0AEC0;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Dual Section */
        .dual-section {
            padding: 4rem 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .dual-card {
            background: rgba(26, 31, 58, 0.8);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .dual-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 217, 255, 0.1);
        }

        .dual-card h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .dual-card p {
            color: #A0AEC0;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .steps {
            margin-bottom: 2rem;
        }

        .step {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        .advertiser .step-number {
            background: rgba(255, 0, 110, 0.2);
            color: #FF006E;
        }

        .viewer .step-number {
            background: rgba(0, 217, 255, 0.2);
            color: #00D9FF;
        }

        .step-content h4 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .step-content p {
            font-size: 0.9rem;
            color: #A0AEC0;
            margin: 0;
        }

      
        /* Footer */
        footer {
            border-top: 1px solid #2D3748;
            background: rgba(10, 14, 39, 0.5);
            padding: 2rem;
            margin-top: 3rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #A0AEC0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #00D9FF;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid #2D3748;
            padding-top: 2rem;
            color: #A0AEC0;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 1.5rem; }
            h2 { font-size: 1.75rem; }
            h3 { font-size: 1.25rem; }
            p {font-size: 0.8rem; }
            
            header { padding: 1rem; }
            .header-container { flex-direction: column; gap: 1rem; }
            a { width: 80%;
            margin: 0 auto 0.5rem;}

            .hero { min-height: auto; padding: 2rem 1rem; }
            .hero-visual { width: 350px; height: 150px; }
            .hero-subtitle { font-size: 1rem;}
            .dual-section {
                grid-template-columns: 1fr;
                padding: 2rem 0;
            }

            .dual-card { padding: 1.5rem; }

            .hero-ctas {
                flex-direction: column;
                gap: 1rem;
            }

            button {
                width: 100%;
            }

            .trust-badges {
               margin: 0 auto 0.5rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        
      .wrapper2{
  display: inline-flex;
}
.wrapper2 .icon2{
  margin: 0 20px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media only screen and (max-width: 700px){
 .wrapper2 .icon2{
      margin: 0 5px !important;
 }   
}

.wrapper2 .icon2 span{
  display: block;
 
  background: transparent;
 
  position: relative;
  z-index: 2;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper2 .icon2 span i{
 margin: 0 1px;
  font-size: 1.563rem;
}

.wrapper2 .icon2:hover span{
  color: #fff;
}

 a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
 }
 
 .video-1 {
    position:relative;
       border: 1px solid transparent; 
 background: -webkit-linear-gradient(60deg, red, #f39600);
 background-color:black;
 border-radius:10px;
  
 padding-bottom: 32%; 
 width: 57%;
  height: 0;
  
 }
 .video-1 iframe {
  position: absolute;
  top: 0;
  left: 0;
 border-radius:10px;
      width: 100%;
  height: 100%;
}
 @media only screen and (max-width: 700px){
 .video-1{
     padding-bottom: 52%;
     width:90%;
 }   
}