/* خلفية رومانسية */
#intro_top {
    background: linear-gradient(135deg, #ffccd5, #ffe6f0) !important;
    background-attachment: fixed;
}

/* ✅ الشريط العلوي */
#top_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255,255,255,0.3);
}

/* ✅ أزرار أدسنس */
#ads_buttons a {
    margin-right: 10px;
    color: #d63384;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
#ads_buttons a:hover {
    color: #ad1457;
}

/* ✅ شعار كتابي براق */
#site_title {
    font-size: 22px;
    font-weight: bold;
    background: linear-gradient(90deg, #ff0080, #ff8c00, #40e0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}
@keyframes shine {
    from { background-position: 0; }
    to { background-position: 200px; }
}

/* ✅ اللوجو الأصلي مصغر */
#login_logo {
    height: 50px !important;
    margin-top: 10px;
}

/* ✅ قلوب متساقطة */
.heart {
    position: fixed;
    top: -10px;
    color: #e63946;
    font-size: 18px;
    animation: fall 6s linear infinite;
    z-index: 500;
}
@keyframes fall {
    to { transform: translateY(100vh); opacity: 0; }
}

/* ✅ تجاوب */
@media screen and (max-width: 768px) {
    #site_title { font-size: 18px; }
    #ads_buttons a { font-size: 14px; margin-right: 5px; }
    #login_logo { height: 40px !important; }
}
