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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
}

header {
    margin-bottom: 4rem;
}

.logo {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.05em;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dimmed {
    background: linear-gradient(135deg, #4a5568 0%, #5a4a6d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.25rem;
    color: #888;
    font-style: italic;
}

.content {
    margin-bottom: 4rem;
}

.quote {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #bbb;
}

.punchline {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta {
    background-color: #1a1a1a;
    background-image: url('cta-background.png');
    background-image: -webkit-image-set(
        url('cta-background-800.webp') type('image/webp') 1x,
        url('cta-background-1600.webp') type('image/webp') 2x
    );
    background-image: image-set(
        url('cta-background-800.webp') type('image/webp') 1x,
        url('cta-background-1600.webp') type('image/webp') 2x
    );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 26, 26, 0.85);
    z-index: 1;
}

.cta > * {
    position: relative;
    z-index: 2;
}

.cta p {
    margin-bottom: 1rem;
    color: #aaa;
}

.link {
    display: inline-block;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.25rem;
    padding: 0.75rem 2rem;
    background-color: #2a2a2a;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #444;
}

.link:hover {
    background-color: #3a3a3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.highlight {
    color: #667eea;
    font-weight: 600;
}

.disclaimer {
    font-size: 0.75rem;
    color: #666;
    margin-top: 1rem;
}

footer {
    color: #666;
    font-size: 0.875rem;
}

.scene-link {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.scene-link:hover {
    color: #667eea;
}

@media (max-width: 640px) {
    .logo {
        font-size: 3rem;
    }
    
    .punchline {
        font-size: 1.5rem;
    }
    
    .quote {
        font-size: 1.25rem;
    }
}

@media (prefers-reduced-data: reduce) {
    .cta {
        background-image: none !important;
    }
}