/* --------------------- Reset --------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --------------------- Body --------------------- */
body {
    /* خلفية توحي بعمق الفضاء وقوة الثقب الأسود */
    background: radial-gradient(circle at center, #0a1118 0%, #000000 100%);
    color: #e0e6ed;
    line-height: 1.6;
    text-align: center;
    padding: 25px;
    font-size: 16px;
}

/* --------------------- Nav --------------------- */
nav {
    /* ناف بار زجاجي مظلم مع لمسة زرقاء حادة */
    background: linear-gradient(90deg, #000000, #051622);
    padding: 18px;
    border-radius: 15px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0, 163, 255, 0.1);
    border-bottom: 1px solid rgba(0, 163, 255, 0.3);
}

nav a {
    color: #00d1ff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.3s;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(0, 209, 255, 0.05);
    display: inline-block;
}

nav a:hover {
    background: rgba(0, 209, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 209, 255, 0.4);
}

/* --------------------- Headings --------------------- */
h1, h2, h3, h4, h5 {
    margin-bottom: 20px;
    color: #ffffff;
    /* توهج أزرق بارد للعناوين */
    text-shadow: 0 0 20px rgba(0, 209, 255, 0.5);
}

h1 { font-size: 3.5rem; letter-spacing: -1px; }
h2 { font-size: 2.2rem; }

/* --------------------- Images --------------------- */
img {
    max-width: 90%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    margin: 20px 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 209, 255, 0.15);
}

img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 163, 255, 0.25);
}

/* --------------------- الأزرار والروابط (قوة البلازما) --------------------- */
a, button {
    display: inline-block;
    text-decoration: none;
    /* لون أسود كربوني عميق */
    background: linear-gradient(135deg, #050505, #101820);
    color: #00d1ff;
    padding: 16px 36px;
    border-radius: 50px; /* جعلناها دائرية أكثر لتكون "أكشخ" */
    font-weight: 700;
    font-size: 1rem;
    margin: 10px 8px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 209, 255, 0.4);
    cursor: pointer;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* تأثير الانفجار اللوني عند التمرير */
a:hover, button:hover {
    background: linear-gradient(135deg, #00d1ff, #0055ff);
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 163, 255, 0.6);
    border-color: #ffffff;
}

/* تأثير الضغط */
a:active, button:active {
    transform: translateY(-1px) scale(0.97);
}

/* --------------------- Containers --------------------- */
div {
    margin-bottom: 40px;
    padding: 30px;
    /* حاوية زجاجية مظلمة جداً */
    background: rgba(10, 20, 30, 0.8);
    backdrop-filter: blur(10px); /* تأثير التغبيش الاحترافي */
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 209, 255, 0.08);
}

/* --------------------- Social Icons Container --------------------- */
.social-icons {
    background: transparent;
    box-shadow: none;
    border: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    backdrop-filter: none;
}

/* --------------------- Responsive --------------------- */
@media (max-width: 768px) {
    a, button {
        width: 85%;
        padding: 15px 25px;
    }
    h1 { font-size: 2.5rem; }
}