:root {
    --bg-dark: #090a0c;
    --glass-bg: rgba(23, 23, 35, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
    --primary: #00f2ff; /* سيان مشع */
    --secondary: #bd00ff; /* بنفسجي مشع */
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --font-ar: 'Cairo', sans-serif;
    --font-en: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-ar);
    background-color: var(--bg-dark);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center; /* سنقوم بتعديل هذا في الموبايل */
    min-height: 100vh;
    overflow-x: hidden;
    padding: 20px 0;
}

/* خلفية الإضاءة */
.ambient-light {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.3;
}
.light-1 { top: -10%; left: -10%; background: var(--primary); }
.light-2 { bottom: -10%; right: -10%; background: var(--secondary); }

/* الحاوية الرئيسية */
.main-wrapper {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    perspective: 1000px;
    margin: auto;
    padding: 0 15px;
}

/* الستايل العام للبطاقات */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6);
    transition: transform 0.1s ease-out;
}

/* ==================
   بطاقة البروفايل
   ================== */
.cover-wrapper {
    height: 150px;
    position: relative;
    overflow: hidden;
}
.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--glass-bg), transparent);
}

.profile-content {
    text-align: center;
    padding: 0 24px 30px;
    margin-top: -65px;
    position: relative;
    z-index: 2;
}

.profile-img-wrapper {
    width: 130px;
    height: 130px;
    margin: 0 auto 15px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
    position: relative;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid #1a1a1a;
    object-fit: cover;
}

.status-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #00ff88;
    border: 3px solid #1a1a1a;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

.brand-name {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.verify-badge {
    width: 24px;
    height: 24px;
    color: #3b82f6;
}

.bio-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.highlight {
    color: var(--primary);
    font-weight: 700;
}

/* زر الواتساب */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 16px;
    border-radius: 16px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}
.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* ==================
   بطاقة القائمة الخارقة
   ================== */
.menu-card {
    padding: 25px;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.highlight-text {
    color: var(--primary);
    font-family: var(--font-en);
    font-weight: 800;
}

.buttons-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* تصميم الأزرار الخارقة */
.super-btn {
    display: flex;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: right;
}

.super-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary);
    transform: translateX(-5px); /* حركة لليسار لأننا عربي */
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.15);
}

.btn-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin-left: 15px;
    transition: 0.3s;
}

.super-btn:hover .btn-icon {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 15px var(--primary);
}

.btn-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.btn-text span {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.btn-text small {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 4px;
}

.arrow {
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.5;
    transition: 0.3s;
}

.super-btn:hover .arrow {
    opacity: 1;
    color: var(--primary);
    transform: translateX(-5px);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .main-wrapper {
        padding: 10px;
    }
    .brand-name { font-size: 1.6rem; }
}
.super-btn {
    text-decoration: none;
    cursor: pointer;
}
