:root {
    --dark: #050811;
    --gold: #D4AF37;
    --gold-bright: #FFD700;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
}

* { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    scroll-behavior: smooth;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- أيقونة فيسبوك العائمة --- */
.fb-float {
    position: fixed;
    left: 30px; /* جهة اليسار لأن الموقع عربي */
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: #1877F2;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-fb 2s infinite;
}

.fb-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #155db1;
}

@keyframes pulse-fb {
    0% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(24, 119, 242, 0); }
    100% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0); }
}

/* --- الهيدر الزجاجي --- */
.main-nav {
    position: fixed;
    top: 0; width: 100%; height: 90px;
    background: rgba(5, 8, 17, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.flex-nav { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.nav-links ul { display: flex; list-style: none; gap: 30px; }
.nav-links a { color: white; text-decoration: none; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(5, 8, 17, 0.7), rgba(5, 8, 17, 0.7)), url('cinema-bg.jpg'); /* ضع صورة سينمائية هنا */
    background-size: cover;
    background-attachment: fixed;
}

.title { font-size: 4.5rem; font-weight: 900; margin: 20px 0; }
.gold-text { color: var(--gold); text-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }

/* --- كروت المعلومات --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: -50px; /* تداخل خفيف مع الهيرو */
    position: relative;
    z-index: 10;
}

.info-card {
    background: var(--glass);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.info-card i { font-size: 3rem; color: var(--gold); margin-bottom: 20px; }

/* --- فورم التسجيل --- */
.register-section { padding: 100px 0; background: #080c1a; }
.register-wrapper {
    max-width: 700px; margin: 0 auto;
    text-align: center; background: var(--glass);
    padding: 50px; border-radius: 30px;
}

.smart-form { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.smart-form input {
    padding: 15px 25px; border-radius: 10px; border: none;
    background: rgba(255,255,255,0.1); color: white; font-family: 'Cairo';
}

.btn-gold-full {
    background: var(--gold); color: var(--dark);
    padding: 18px; border-radius: 10px; font-weight: 900;
    border: none; cursor: pointer; transition: 0.3s;
}
.btn-gold-full:hover { background: var(--gold-bright); transform: scale(1.02); }

/* Responsive */
@media (max-width: 768px) {
    .title { font-size: 2.5rem; }
    .desktop-menu { display: none; }
}