body {
    margin: 0;
    min-height: 100vh;
    background: #f2f2f2;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.card {
    margin-top: 40px;
    margin-bottom: 40px;
    width: 360px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
}

.banner {
    position: relative;
    height: 185px;
    background: linear-gradient(135deg, #E8A93A, #d9961f);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-logo {
    height: 170px;
    width: auto;
    opacity: 0.55;
    mix-blend-mode: multiply;
}

.content {
    padding: 26px 28px 30px;
    text-align: center;
}

h1 {
    color: #565C63;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px;
}

.bio {
    color: #8A8F96;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.divider {
    width: 56px;
    height: 3px;
    background: #E8A93A;
    border-radius: 3px;
    margin: 20px auto 14px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    padding: 13px 16px;
    margin: 10px 0;
    border-radius: 14px;
    background: #ffffff;
    border: 2px solid #E8A93A;
    color: #565C63;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.25s;
}

.btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.btn:hover {
    background: #E8A93A;
    color: #ffffff;
    border-color: #E8A93A;
}

.btn:hover svg {
    fill: #ffffff;
}

.badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    background: #E8A93A;
    color: #ffffff;
    padding: 3px 9px;
    border-radius: 20px;
}

.btn.loc {
    white-space: nowrap;
    font-size: 13px;
}

.btn.soon svg {
    opacity: 0.45;
}

.btn.soon:hover {
    background: #fafafa;
    color: #a0a4aa;
    border-color: #e2e2e2;
}

.btn.soon .badge {
    background: #c9cdd3;
}
