@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(135deg, #ffe6f7 0%, #e0e7ff 100%), url('image/fionastore.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container {
    background: rgba(255,255,255,0.85);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 350px;
    width: 90%;
    text-align: center;
}
.logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8bbd0;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.welcome-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.18rem;
    box-shadow: 0 4px 24px 0 #f8bbd0, 0 1.5px 8px 0 #b39ddb80;
    border: 3px solid #f3e5f5;
    background: #fff0fa;
    background: linear-gradient(90deg, #fffbe6 0%, #ffe0b2 60%, #fffbe6 100%);
    color: #ff9800;
    border-radius: 18px;
    margin-bottom: 1.3rem;
    margin-top: 0.2rem;
    padding: 1.1rem 1.2rem 1.1rem 1.2rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 24px 0 rgba(255, 193, 7, 0.18), 0 1.5px 8px 0 rgba(255, 204, 51, 0.10);
    line-height: 1.7;
    text-shadow: 0 2px 8px #fffde7, 0 1px 0 #fff;
    border: 2.5px solid #ffd54f;
    animation: fadeInWelcome 1.2s cubic-bezier(.4,1.4,.6,1) 0.1s both;
    transition: box-shadow 0.3s, border 0.3s;
}

@keyframes fadeInWelcome {
    0% { opacity: 0; transform: translateY(-18px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.welcome-text b {
    color: #ff6f00;
    background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
    padding: 0 0.2em;
    border-radius: 6px;
    box-shadow: 0 1px 6px #ffe08280;
    font-weight: 800;
    letter-spacing: 0.5px;
}
h1 {
    margin: 0 0 1.2rem 0;
    font-size: 1.7rem;
    color: #ab47bc;
    letter-spacing: 1px;
}
.links {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.link-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(90deg, #f8bbd0 0%, #b3e5fc 100%);
    color: #7b1fa2;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(255, 204, 51, 0.15);
    transition: background 0.2s, transform 0.2s;
}
.link-btn:hover {
    background: linear-gradient(90deg, #ffcc33 0%, #ffb347 100%);
    transform: translateY(-2px) scale(1.03);
}
.icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
@media (max-width: 500px) {
    .container {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        max-width: 98vw;
    }
    h1 {
        font-size: 1.5rem;
    }
    .link-btn {
        font-size: 1rem;
        padding: 0.7rem 0.7rem;
    }
}
    .welcome-text {
        font-size: 0.98rem;
        padding: 0.7rem 0.5rem 0.7rem 0.5rem;
    }
    .icon {
        width: 24px;
        height: 24px;
    }
