@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: #000000; /* خلفية سوداء */
    color: #ffffff;
    height: 100vh; /* ملء ارتفاع الشاشة */
    overflow: hidden; /* منع التمرير */
    position: relative;
}

/* --- 1. تنسيق الزاوية اليمنى العليا (التاريخ والشعار) --- */
.top-right-container {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
}

.date-text {
    color: #d4af37; /* اللون الذهبي */
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.logo-box img {
    width: 100px;
    height: auto;
    border-radius: 5px;
}

/* --- 2. تنسيق الصورة الوسطية (تم التعديل لتصبح فلات) --- */
.center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.center-image img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    /* هنا تم حذف الإطار والظل والحواف */
}

/* --- 3. تنسيق الأسفل (أيقونات التواصل) --- */
.bottom-social {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.social-icons a {
    text-decoration: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #1a1a1a;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #d4af37;
    color: #000;
    transform: translateY(-5px);
    border-color: #d4af37;
}

.copyright {
    font-size: 12px;
    color: #555;
    margin-top: 10px;
}