body.greetings-bg {
    background: linear-gradient(135deg, #18181a 0%, #232526 60%, #ec6e0d 100%);
    background-size: 200% 200%;
    animation: gradientMove 10s ease-in-out infinite;
    min-height: 100vh;
    margin: 0;
    font-family: 'Lexend Deca', 'Cairo', sans-serif;
}
@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, #ec6e0d 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: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 16px #ec6e0d33;
}
.greetings-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: none;
    box-shadow: none;
}
.greetings-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ec6e0d;
    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, #ec6e0d 60%, #ff8c42 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, #ff8c42 0%, #ec6e0d 100%);
    transform: translateY(-2px) scale(1.04);
}
.greetings-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ec6e0d 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 #ec6e0d88);
}
.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:hover {
    background: #ff8c42;
    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: #ec6e0d;
}
.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;
}
