﻿.hero-icon {
    font-size: 3.2rem;
    color: #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.08)
    }
}

.hero-bg {
    background: linear-gradient(135deg, #0D47A1 0%, #1565C0 50%, #1976D2 100%);
    border-radius: 22px;
    padding: 34px 26px 28px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    animation: slideUp .5s ease-out both;
}

    .hero-bg h2 {
        font-size: 1.35rem;
        font-weight: 700;
        margin: 12px 0 6px;
    }

    .hero-bg p {
        font-size: .82rem;
        opacity: .85;
        margin: 0;
    }

.choice-btn {
    width: 100%;
    border: none;
    border-radius: 16px;
    padding: 18px 22px;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all .25s;
    font-weight: 600;
    font-size: .95rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    animation: slideUp .45s ease-out both;
}

.btn-new {
    background: #fff;
    color: #1565C0;
    border: 2px solid #DBEAFE;
}

    .btn-new:hover {
        background: #EFF6FF;
        transform: translateY(-3px);
        box-shadow: 0 8px 28px rgba(21,101,192,.2);
        border-color: #1565C0;
    }

.btn-old {
    background: #fff;
    color: #0F766E;
    border: 2px solid #CCFBF1;
    animation-delay: .08s;
}

    .btn-old:hover {
        background: #F0FDFA;
        transform: translateY(-3px);
        box-shadow: 0 8px 28px rgba(15,118,110,.2);
        border-color: #0F766E;
    }

.choice-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.icon-new {
    background: linear-gradient(135deg,#1565C0,#1976D2);
    color: #fff;
}

.icon-old {
    background: linear-gradient(135deg,#0F766E,#0D9488);
    color: #fff;
}

.choice-texts small {
    display: block;
    font-size: .75rem;
    font-weight: 400;
    opacity: .6;
    margin-top: 2px;
}

