* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --primary: #00d4ff; --secondary: #7b2dff; --accent: #ff2d7b; --gold: #ffd700; --dark: #0a0a1a; --glass: rgba(255, 255, 255, 0.05); --glass-border: rgba(255, 255, 255, 0.1); }
body { font-family: 'Tajawal', sans-serif; background: var(--dark); min-height: 100vh; overflow-x: hidden; color: #fff; position: relative; }
.particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; opacity: 0.6; animation: floatUp linear infinite; }
@keyframes floatUp { 0% { transform: translateY(100vh) scale(0) rotate(0deg); opacity: 0; } 10% { opacity: 0.8; } 90% { opacity: 0.4; } 100% { transform: translateY(-10vh) scale(1) rotate(720deg); opacity: 0; } }
.glow-orb { position: fixed; border-radius: 50%; filter: blur(100px); z-index: 0; pointer-events: none; animation: orbFloat 8s ease-in-out infinite alternate; }
.orb-1 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent 70%); top: -100px; right: -100px; }
.orb-2 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(123, 45, 255, 0.25), transparent 70%); bottom: -80px; left: -80px; animation-delay: -3s; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(255, 45, 123, 0.2), transparent 70%); top: 40%; left: 50%; transform: translateX(-50%); animation-delay: -5s; }
@keyframes orbFloat { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(30px, -40px) scale(1.1); } }
.top-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; background: rgba(10, 10, 26, 0.7); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); }
.nav-logo { display: flex; align-items: baseline; gap: 2px; }
.nav-yalla { font-size: 1.2rem; font-weight: 900; color: var(--primary); }
.nav-rafiq { font-size: 0.9rem; font-weight: 700; color: var(--gold); letter-spacing: 1px; }
.nav-badge { font-size: 0.7rem; font-weight: 700; color: var(--dark); background: linear-gradient(135deg, var(--primary), var(--secondary)); padding: 0.25rem 0.7rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; }
.container { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; padding: 5rem 1rem 2rem; text-align: center; }
.hero-section { margin-bottom: 2rem; }
.logo-wrapper { position: relative; margin: 0 auto 1.5rem; width: fit-content; }
.logo-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 150px; height: 150px; border: 2px solid transparent; border-radius: 50%; background: linear-gradient(var(--dark), var(--dark)) padding-box, conic-gradient(from 0deg, var(--primary), var(--secondary), var(--accent), var(--primary)) border-box; animation: ringSpin 4s linear infinite; opacity: 0.6; }
.logo-ring::before { content: ''; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid var(--glass-border); animation: ringPulse 2s ease-in-out infinite; }
@keyframes ringSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes ringPulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.05); opacity: 1; } }
.logo { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 130px; height: 130px; border-radius: 50%; background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(123, 45, 255, 0.15)); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); box-shadow: 0 0 40px rgba(0, 212, 255, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.05); animation: logoGlow 3s ease-in-out infinite alternate; }
.logo-icon { width: 36px; height: 36px; color: var(--primary); margin-bottom: 4px; stroke-linecap: round; stroke-linejoin: round; }
@keyframes logoGlow { 0% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.05); } 100% { box-shadow: 0 0 60px rgba(123, 45, 255, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.08); } }
.logo-yalla { font-size: 1.5rem; font-weight: 900; color: var(--primary); text-shadow: 0 0 20px rgba(0, 212, 255, 0.5); letter-spacing: 1px; }
.logo-rafiq { font-size: 1rem; font-weight: 700; color: var(--gold); text-shadow: 0 0 15px rgba(255, 215, 0, 0.4); letter-spacing: 2px; }
.title { font-size: clamp(2rem, 6vw, 4rem); font-weight: 900; background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary)); background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: gradientMove 5s linear infinite; margin-bottom: 0.8rem; line-height: 1.2; }
@keyframes gradientMove { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
.subtitle { font-size: clamp(0.95rem, 2.2vw, 1.3rem); font-weight: 300; color: rgba(255, 255, 255, 0.7); line-height: 1.8; max-width: 600px; margin: 0 auto 2rem; }
.highlight { color: var(--gold); font-weight: 500; text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 700px; width: 100%; margin: 0 auto 2.5rem; }
.feature-card { background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 16px; padding: 1.2rem 0.8rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1); border-color: rgba(0, 212, 255, 0.3); }
.feature-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(123, 45, 255, 0.15)); color: var(--primary); }
.feature-icon svg { width: 22px; height: 22px; stroke-linecap: round; stroke-linejoin: round; }
.feature-title { font-size: 0.85rem; font-weight: 700; color: #fff; }
.feature-desc { font-size: 0.7rem; font-weight: 400; color: rgba(255,255,255,0.5); line-height: 1.4; }
.countdown { display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.countdown-item { perspective: 400px; }
.countdown-card { width: 85px; height: 105px; background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.countdown-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--primary), var(--secondary)); opacity: 0.6; }
.countdown-card:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15); }
.countdown-number { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; text-shadow: 0 0 20px rgba(0, 212, 255, 0.4); font-variant-numeric: tabular-nums; }
.countdown-label { font-size: 0.7rem; font-weight: 500; color: rgba(255, 255, 255, 0.5); margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 2px; }
.countdown-separator { font-size: 2rem; font-weight: 300; color: var(--primary); text-shadow: 0 0 10px rgba(0, 212, 255, 0.5); animation: separatorBlink 1s ease-in-out infinite; align-self: center; }
@keyframes separatorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.cities { margin-bottom: 2rem; }
.cities-label { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 0.8rem; }
.cities-list { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.city-tag { font-size: 0.8rem; font-weight: 500; color: rgba(255, 255, 255, 0.7); background: var(--glass); border: 1px solid var(--glass-border); border-radius: 50px; padding: 0.4rem 1rem; transition: all 0.3s ease; }
.city-tag:hover { color: var(--primary); border-color: var(--primary); box-shadow: 0 0 15px rgba(0, 212, 255, 0.15); }
.notify-section { margin-bottom: 2rem; width: 100%; max-width: 420px; }
.notify-text { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.8rem; }
.notify-form { display: flex; gap: 0.5rem; background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 50px; padding: 5px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); margin-bottom: 0.5rem; }
.notify-form input { flex: 1; background: transparent; border: none; outline: none; color: #fff; padding: 0.8rem 1.2rem; font-family: 'Tajawal', sans-serif; font-size: 0.9rem; text-align: right; direction: rtl; }
.notify-form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.notify-form button { background: linear-gradient(135deg, var(--primary), var(--secondary)); border: none; color: #fff; padding: 0.8rem 1.8rem; border-radius: 50px; font-family: 'Tajawal', sans-serif; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3); white-space: nowrap; }
.notify-form button:hover { transform: scale(1.05); box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5); }
.notify-form button:active { transform: scale(0.98); }
.notify-note { font-size: 0.75rem; color: rgba(255, 255, 255, 0.4); }
.app-badges { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.app-badge { display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.2rem; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; font-weight: 600; transition: all 0.3s ease; }
.app-badge svg { width: 20px; height: 20px; }
.app-badge.disabled { opacity: 0.4; cursor: not-allowed; }
.app-badge:not(.disabled):hover { color: var(--primary); border-color: var(--primary); box-shadow: 0 4px 15px rgba(0, 212, 255, 0.15); }
.social-links { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.social-link { width: 44px; height: 44px; border-radius: 12px; background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { transform: translateY(-3px) scale(1.1); color: var(--primary); border-color: var(--primary); box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2); }
.footer { text-align: center; padding: 1.5rem; font-size: 0.8rem; color: rgba(255, 255, 255, 0.3); border-top: 1px solid var(--glass-border); }
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px); background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(123, 45, 255, 0.9)); backdrop-filter: blur(10px); color: #fff; padding: 1rem 2rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem; box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3); opacity: 0; transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); z-index: 100; pointer-events: none; white-space: nowrap; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (max-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); } .countdown-card { width: 70px; height: 90px; } .countdown-number { font-size: 1.8rem; } .countdown-label { font-size: 0.6rem; } .countdown-separator { font-size: 1.5rem; } .app-badges { flex-direction: column; align-items: center; } .notify-form { flex-direction: column; border-radius: 20px; } .notify-form button { border-radius: 15px; } .logo { width: 110px; height: 110px; } .logo-ring { width: 130px; height: 130px; } }
@media (max-width: 360px) { .features { grid-template-columns: 1fr; } .countdown-card { width: 60px; height: 80px; } .countdown-number { font-size: 1.5rem; } }
body::after { content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; background-image: radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.3), transparent), radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.2), transparent), radial-gradient(1px 1px at 50px 160px, rgba(255,255,255,0.3), transparent), radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.2), transparent), radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent), radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.2), transparent); background-repeat: repeat; background-size: 200px 200px; opacity: 0.4; animation: starfield 20s linear infinite; }
@keyframes starfield { 0% { background-position: 0 0; } 100% { background-position: 200px 200px; } }
