@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .flyer {
            width: 100%;
            max-width: 800px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            animation: float 6s ease-in-out infinite;
        }
        
        .flyer::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            pointer-events: none;
        }
        
        .logo {
            font-size: 4rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
            letter-spacing: 5px;
            animation: glow 2s ease-in-out infinite alternate;
        }
        
        .tagline {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            font-weight: 300;
            letter-spacing: 1px;
        }
        
        .main-offer {
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: #ffffff;
            padding: 30px;
            border-radius: 20px;
            margin: 40px 0;
            position: relative;
            box-shadow: 0 15px 30px rgba(255, 107, 107, 0.3);
            transform: perspective(1000px) rotateX(5deg);
            animation: pulse 3s ease-in-out infinite;
        }
        
        .free-badge {
            font-size: 3.5rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        }
        
        .offer-text {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .startup-count {
            font-size: 5rem;
            font-weight: 800;
            color: #ffffff;
            text-shadow: 0 0 50px rgba(255, 255, 255, 0.8);
            margin: 30px 0 20px 0;
            animation: bounce 2s ease-in-out infinite;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        .feature {
            background: rgba(255, 255, 255, 0.15);
            padding: 30px 20px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .feature:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #feca57;
            text-shadow: 0 0 20px rgba(254, 202, 87, 0.5);
        }
        
        .feature h3 {
            color: #ffffff;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .feature p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .cta-section {
            margin: 50px 0 30px 0;
        }
        
        .cta-button {
            background: linear-gradient(45deg, #00d2ff, #3a7bd5);
            color: white;
            padding: 20px 50px;
            border: none;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 15px 30px rgba(0, 210, 255, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .cta-button:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 25px 50px rgba(0, 210, 255, 0.5);
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .urgency {
            color: #ff6b6b;
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 20px;
            animation: blink 2s ease-in-out infinite;
        }
        
        .contact-info {
            margin-top: 40px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .contact-info strong {
            color: #feca57;
            font-weight: 600;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes glow {
            0% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.5); }
            100% { text-shadow: 0 0 50px rgba(255, 255, 255, 0.8), 0 0 70px rgba(255, 255, 255, 0.6); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: perspective(1000px) rotateX(5deg) scale(1); }
            50% { transform: perspective(1000px) rotateX(5deg) scale(1.05); }
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.7; }
        }
        
        @media (max-width: 768px) {
            .flyer {
                padding: 40px 20px;
            }
            
            .logo {
                font-size: 3rem;
            }
            
            .startup-count {
                font-size: 3.5rem;
            }
            
            .free-badge {
                font-size: 2.5rem;
            }
            
            .offer-text {
                font-size: 1.4rem;
            }
            
            .features {
                grid-template-columns: 1fr;
                gap: 20px;
            }
}
    