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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #fdfbfb 0%, #f7e8e8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    color: #d4696d;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.intro {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 40px;
    line-height: 1.8;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.button {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.button.primary {
    background: #d4696d;
    color: white;
}

.button.primary:hover {
    background: #c25559;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 105, 109, 0.3);
}

.button.secondary {
    background: white;
    color: #d4696d;
    border: 2px solid #d4696d;
}

.button.secondary:hover {
    background: #d4696d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 105, 109, 0.3);
}

footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .container {
        padding: 40px 30px;
    }

    header h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .intro {
        font-size: 1rem;
    }

    .button {
        font-size: 1rem;
        padding: 14px 28px;
    }
}
