body.greetings-bg {
    background: linear-gradient(135deg, #18181a 0%, #232526 60%, var(--color-primary) 100%);
    background-size: 200% 250%;
    animation: gradientMove 10s ease-in-out infinite;
    min-height: 80vh;
    margin: 0;
    font-family: 'Lexend Deca', 'Cairo', sans-serif;
}

/* Allow scrolling on Greetings despite global #app/router-view overflow locking. */
#app.greetings-bg {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
#app.greetings-bg router-view {
    display: block;
    min-height: auto;
    overflow: visible;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.greetings-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 80px;
}
.greetings-hero {
    background: rgba(35,37,38,0.92);
    border-radius: 24px;
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    box-shadow: 0 8px 32px #23252655;
    margin-bottom: 2.5rem;
    margin-top: 60px;
    max-width: 520px;
    width: 100%;
    position: relative;
}
.greetings-hero::before {
    content: '';
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 8px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #fff 100%);
    border-radius: 8px;
    opacity: 0.7;
}
.greetings-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--color-primary-light) 0%, var(--color-primary) 70%, var(--color-primary-dark) 100%);
    border: 3px solid color-mix(in srgb, var(--color-primary-light) 55%, white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 12px color-mix(in srgb, var(--color-primary) 12%, transparent),
        0 2px 16px color-mix(in srgb, var(--color-primary) 28%, transparent);
}
.greetings-logo img {
    width: 72%;
    height: 72%;
    border-radius: 0;
    background: none;
    box-shadow: none;
    object-fit: contain;
}
.greetings-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px #23252699;
}
.greetings-desc {
    font-size: 1.15rem;
    color: #f5f5f5;
    margin-bottom: 2rem;
    text-shadow: 0 1px 4px #23252699;
}
.greetings-btn {
    padding: 0.9rem 2.7rem;
    font-size: 1.15rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--color-primary) 60%, var(--color-primary-light) 100%);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px #23252655;
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 0.5rem;
}
.greetings-btn:hover {
    background: linear-gradient(90deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    transform: translateY(-2px) scale(1.04);
}
.greetings-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #fff 100%);
    border-radius: 4px;
    margin: 2.5rem auto 2rem auto;
    opacity: 0.7;
}
.greetings-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.greetings-stat {
    background: #232526cc;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 1px 4px #23252655;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.greetings-stat-icon {
    width: 1.3em;
    height: 1.3em;
    vertical-align: middle;
    filter: drop-shadow(0 1px 2px color-mix(in srgb, var(--color-primary) 55%, transparent));
}
.greetings-test-preview {
    margin: 0 auto 1rem auto;
    max-width: 420px;
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.94rem;
}
.greetings-test-preview strong {
    color: var(--color-primary);
}
.greetings-test-preview a {
    display: inline-block;
    margin-left: 0.45rem;
    color: var(--color-primary-light);
    text-decoration: underline;
    font-weight: 700;
}
.greetings-test-preview__video {
    display: block;
    width: 100%;
    margin-top: 0.8rem;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px #23252655;
}
.greetings-plus-name {
    color: #ffd34d;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 211, 77, 0.45);
}
.greetings-socials {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.greetings-socials a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    color: #fff;
    background: #5865F2;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px #23252655;
}
.greetings-socials a.twitter {
    background: #1da1f2;
}
.greetings-socials a.kofi {
    background: #C19BFF;
}
.greetings-socials a:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px) scale(1.04);
}
.greetings-socials img {
    width: 1.5em;
    height: 1.5em;
}
.greetings-section {
    margin-top: 2.5rem;
    color: #fff;
    opacity: 0.92;
    font-size: 1.08rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(35,37,38,0.7);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 12px #23252633;
}
.greetings-section strong {
    color: var(--color-primary);
}
.greetings-plus-list ul {
    list-style: none;
    margin: 0.9rem 0 0 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}
.greetings-plus-list li {
    padding: 0.7rem 0.9rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    text-align: left;
}
.greetings-plus-level {
    display: block;
    color: var(--color-primary);
    font-weight: 700;
}
.greetings-plus-meta {
    display: block;
    margin-top: 0.2rem;
    color: #f5f5f5;
    opacity: 0.85;
    font-size: 0.95rem;
}
.greetings-plus-video {
    display: inline-block;
    margin-top: 0.45rem;
    color: var(--color-primary-light);
    font-weight: 700;
    text-decoration: underline;
}
.greetings-plus-video:hover {
    color: #8fe5ff;
}
.greetings-plus-locked {
    margin-top: 0.7rem;
    color: #f5f5f5;
    opacity: 0.9;
}
.greetings-contributors {
    margin-top: 2rem;
    color: #fff;
    opacity: 0.7;
    font-size: 1rem;
    text-align: center;
}
.greetings-footer {
    margin-top: 3rem;
    color: #fff;
    font-size: 0.95rem;
    opacity: 0.7;
}
