/* إعدادات عامة */
:root {
    --primary-color: #ff6b00; /* اللون البرتقالي تبع اللوجو */
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    overflow-x: hidden;
    position: relative;
    text-align: center;
}

/* الخلفية (صورة سينمائية) */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* صورة خلفية جاهزة من النت مؤقتاً */
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1517604931442-710e8ed904b4?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* اللوجو */
.logo {
    width: 250px; /* حجم اللوجو */
    max-width: 80%;
    margin-bottom: 2rem;
}

/* النصوص */
h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5); /* تأثير نيون */
}

.subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
}

/* العداد */
.countdown {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
    justify-content: center;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 100px;
}

.time-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.time-box small {
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* الأزرار */
.cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

button {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.6);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: black;
}

/* الميزات */
.features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.9rem;
    color: #888;
}

footer {
    margin-top: auto;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #555;
}

/* الحركات (Animations) */
.fade-in-down {
    animation: fadeInDown 1s ease-out;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out backwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* للموبايل */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .logo { width: 180px; }
    .countdown { gap: 10px; }
    .time-box { min-width: 70px; padding: 10px; }
    .time-box span { font-size: 1.8rem; }
}