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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #f5f5f7;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1f;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.video-wrapper {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Removed h1 styles since heading was removed */

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.video-option {
    text-align: center;
}

.video-option h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #555;
    font-weight: 600;
}

.video-description {
    margin-top: 20px;
    color: #666;
    font-style: italic;
    font-size: 1rem;
}

.video-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-thumbnail {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    padding: 40px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.play-button {
    font-size: 4rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-thumbnail p {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}


.redirect-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.redirect-message {
    font-size: 1.125rem;
    color: #86868b;
    font-weight: 400;
    opacity: 0.9;
    animation: pulse 2s infinite;
    letter-spacing: -0.022em;
    margin: 0;
}

.skip-button {
    background: #007AFF;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: -0.022em;
}

.skip-button:hover {
    background: #0056CC;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.skip-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 122, 255, 0.3);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.6;
    }
}

/* Apple-style hover effects */
.video-container:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 16px;
    }
    
    .video-wrapper {
        padding: 24px;
        margin: 0;
        border-radius: 16px;
    }
    
    .video-container {
        margin-bottom: 24px;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .redirect-section {
        flex-direction: column;
        gap: 16px;
    }
    
    .redirect-message {
        font-size: 1rem;
    }
    
    .skip-button {
        padding: 10px 20px;
        font-size: 0.9375rem;
    }
    
    .video-thumbnail {
        padding: 30px;
    }
    
    .play-button {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 12px;
    }
    
    .video-wrapper {
        padding: 20px;
        border-radius: 14px;
    }
    
    .video-container {
        margin-bottom: 20px;
    }
    
    .video-container iframe {
        height: 200px;
    }
    
    .redirect-section {
        gap: 12px;
    }
    
    .redirect-message {
        font-size: 0.9375rem;
    }
    
    .skip-button {
        padding: 8px 16px;
        font-size: 0.875rem;
    }
    
    .video-thumbnail {
        padding: 24px;
    }
    
    .play-button {
        font-size: 2.5rem;
    }
    
    .video-thumbnail p {
        font-size: 1rem;
    }
}
