* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 60px 20px 40px;
}

.badge {
    display: inline-block;
    background: #ec1889;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #ec1889;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.1em;
    color: #00d4ff;
    margin-bottom: 30px;
    cursor: pointer;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 40px;
    border: 3px solid #ec1889;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(236, 24, 137, 0.3);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

.description {
    text-align: center;
    margin: 30px 0;
    font-size: 1.1em;
}

.cta-button {
    display: inline-block;
    background: #00d4ff;
    color: #000000;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.cta-button:hover {
    background: #ec1889;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(236, 24, 137, 0.6);
}

.scroll-arrow {
    text-align: center;
    margin: 40px 0;
    font-size: 2em;
    color: #ec1889;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.section-title {
    text-align: center;
    margin: 60px 0 20px;
}

.section-title small {
    color: #00d4ff;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 2em;
    margin-top: 10px;
}

.features-section {
    margin: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-graphic {
    position: relative;
}

.feature-list {
    list-style: none;
}

.feature-list h3 {
    margin-bottom: 20px;
    color: #00d4ff;
}

.feature-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05em;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.3em;
}

.final-section {
    text-align: center;
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin: 60px 0;
}

.final-section h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #ec1889;
}

.final-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.8;
}

.highlight {
    color: #00d4ff;
    font-weight: bold;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    .video-container iframe {
        height: 250px;
    }

    .features-section {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }
}