:root {
    --discord-blurple: #5865F2;
    --discord-dark: #23272A;
    --discord-gray: #737f8d;
    --background-gradient: linear-gradient(135deg, #7289DA, #5865F2);
    --font-primary: 'Poppins', 'Noto Sans JP', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--background-gradient);
    color: var(--discord-dark);
    padding: 15px;
    box-sizing: border-box;
}

.card {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 420px;
    width: 100%;
    transform: translateY(-20px);
    opacity: 0;
    animation: fadeInCard 0.7s 0.2s ease-out forwards;
}

@keyframes fadeInCard {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

h1 {
    font-size: 26px;
    font-weight: 700;
    margin: 20px 0 10px;
    color: var(--discord-dark);
}

.user-greeting {
    font-size: 18px;
    color: var(--discord-dark);
    margin: 0 0 25px;
}

.username {
    font-weight: 700;
    color: var(--discord-blurple);
}

.message {
    font-size: 14px;
    color: var(--discord-gray);
    line-height: 1.7;
}

.icon-wrapper {
    margin: 0 auto 15px;
    width: 80px;
    height: 80px;
}

.infomark {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #fff;
    stroke-linecap: round;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--discord-blurple);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.infomark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke: var(--discord-blurple);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.infomark__i {
    transform-origin: 50% 50%;
    stroke-dasharray: 16;
    stroke-dashoffset: 16;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}
@keyframes scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}
@keyframes fill {
    100% { box-shadow: inset 0px 0px 0px 40px var(--discord-blurple); }
}


@media (max-width: 480px) {
    .card {
        padding: 25px 20px;
    }
    h1 {
        font-size: 22px;
    }
    .user-greeting {
        font-size: 16px;
    }
    .message {
        font-size: 13px;
    }
}
