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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

header {
    background: white;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    a {
        cursor: pointer;
    }
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    font-weight: 800;
}

h1 {
    font-size: 48px;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.15;
}

.subtitle {
    font-size: 24px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 30px;
}

.message {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* VIDEO PREVIEW */
.video-preview {
    margin: 40px auto 50px;
    max-width: 860px;
}

.video-link {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    text-decoration: none;
}

.video-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.video-link:hover img {
    transform: scale(1.04);
    filter: brightness(1);
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.play-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 16px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.play-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ff0000;
    display: grid;
    place-items: center;
    font-size: 18px;
    line-height: 1;
}

.video-caption {
    margin-top: 14px;
    font-size: 14px;
    color: #4a5568;
    text-align: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.info-box {
    background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);
    border-left: 4px solid #667eea;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
}

.info-box h3 {
    color: #2d3748;
    font-size: 20px;
    margin-bottom: 10px;
}

.info-box p {
    color: #4a5568;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(102, 126, 234, 0.5);
}

.footer-text {
    margin-top: 40px;
    color: #718096;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 20px;
    }

    .content-card {
        padding: 40px 20px;
    }

    .container {
        padding: 60px 16px;
    }

    .play-badge {
        padding: 14px 18px;
        font-size: 15px;
    }

    .play-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}