﻿
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.page {
    min-height: 420px;
    background: #13254A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    height: 100%
}

.circle-bg {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.c1 {
    width: 320px;
    height: 320px;
    background: #2BACA8;
    top: -80px;
    left: -80px;
}

.c2 {
    width: 200px;
    height: 200px;
    background: #94C123;
    bottom: -60px;
    right: -40px;
}

.c3 {
    width: 140px;
    height: 140px;
    background: #2BACA8;
    bottom: 20px;
    left: 60px;
}

.card {
    background: #fff;
    border-radius: 20px;
    padding: 44px 40px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 48px rgba(0,0,0,0.18);
    animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EAF8F7;
    color: #2BACA8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2BACA8 0%, #94C123 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.title {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #13254A;
    line-height: 1.3;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 15px;
    color: #5a6a82;
    line-height: 1.65;
    margin-bottom: 28px;
}

.link-box {
    background: #F4F8FF;
    border: 1.5px solid #D0DCF0;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 28px;
}

.link-url {
    font-size: 13px;
    color: #2BACA8;
    font-weight: 500;
    word-break: break-all;
    text-align: left;
    flex: 1;
    font-family: 'Inter', monospace;
}

.btn-visit {
    display: inline-block;
    background: #2BACA8;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    width: 100%;
    transition: background 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
    margin-bottom: 18px;
}

    .btn-visit:hover {
        background: #239490;
        transform: translateY(-1px);
    }

    .btn-visit:active {
        transform: scale(0.98);
    }

.note {
    font-size: 12.5px;
    color: #94C123;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2BACA8, #94C123);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.logo-area {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
