:root {
    --bg-color: #fffaf0; /* Brighter, sunnier floral white */
    --card-bg: #ffffff;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --accent-sun: #ff9f1c; /* Vibrant orange-yellow */
    --accent-soft: #ffdc89;
    --shadow: 0 20px 50px rgba(255, 159, 28, 0.08); /* Warm-tinted shadow */
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 800px;
    padding: 60px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.logo-container {
    width: 110px;
    height: 110px;
    margin: 0 auto 24px;
    border-radius: 32px;
    background: var(--card-bg);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #fff;
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.03em;
    color: #e67e22; /* Sunny title color */
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 8px;
    font-weight: 400;
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    text-align: left;
    border: 1px solid rgba(255, 159, 28, 0.1);
}

.icon-header {
    color: var(--accent-sun);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.pulse-icon {
    animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
    50% { transform: scale(1.15) rotate(10deg); opacity: 1; }
}

h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--text-main);
}

p {
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 20px;
}

p:last-child {
    margin-bottom: 0;
}

em {
    color: var(--accent-sun);
    font-style: normal;
    font-weight: 700;
}

.decoration {
    color: var(--accent-soft);
    display: flex;
    justify-content: center;
    opacity: 0.6;
}

footer {
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.7;
}