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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    padding: 40px;
    text-align: center;
    color: white;
}

h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 10px;
}

h1 span {
    color: #ffd700;
}

h2 {
    font-size: 32px;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 30px;
}

p {
    font-size: 20px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background: #ffd700;
    color: #1a1a2e;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}