* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #fdfbf7 0%, #f4ede4 100%);
    color: #2c2724;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}
.container {
    background: #ffffff;
    border: 1px solid #ede7df;
    border-radius: 24px;
    padding: 48px 36px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px -15px rgba(65, 50, 40, 0.08);
}
.icon {
    font-size: 46px;
    line-height: 1;
    margin-bottom: 20px;
    display: inline-block;
}
h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1614;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.subtitle {
    color: #78716c;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #d1fae5;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
}
.info-box {
    background: #faf8f5;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 13px;
    color: #8c827a;
    line-height: 1.5;
    border: 1px solid #f0ebe4;
}
