    /* Reset */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Orbitron', sans-serif;
    }

    body {
        background: url('images/b3.png') no-repeat center center/cover;
        min-height: 100vh;
        color: #00fff0;
    }

    /* Navbar */

    nav {
        display: flex;
        justify-content: center;
        gap: 30px;
        background: rgba(0, 0, 30, 0.8);
        padding: 15px;
        box-shadow: 0 0 20px #00fff0;
    }

    nav a {
        text-decoration: none;
        color: #00fff0;
        font-weight: bold;
        position: relative;
        transition: 0.3s;
    }

    nav a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background: #00fff0;
        left: 0;
        bottom: -5px;
        transition: 0.3s;
    }

    nav a:hover::after {
        width: 100%;
    }

    nav a.active {
        color: #fff;
    }

    /* Home Section */

    #home {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 50px 20px;
    }

    /* Logo Animation + Neon Glow */

    .logo-container {
        width: 200px;
        height: 200px;
        margin: 0 auto 30px auto;
        perspective: 1000px;
    }

    .logo {
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        animation: spinY 10s linear infinite;
        box-shadow: 0 0 30px #00bfff, 0 0 60px #00bfff, 0 0 90px #00bfff;
        border-radius: 20px;
    }

    /* Text */

    #home h1 {
        font-size: 3rem;
        margin-bottom: 15px;
        color: #00bfff;
        text-shadow: 0 0 10px #00bfff, 0 0 20px #00bfff, 0 0 40px #00bfff;
        animation: neonPulse 2s infinite alternate;
    }

    #home p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        color: #00bfff;
        text-shadow: 0 0 5px #00bfff, 0 0 10px #00bfff;
    }

    /* Founders */

    h2 {
        margin-bottom: 20px;
        text-shadow: 0 0 8px #00bfff48, 0 0 16px #00bfff48;
    }

    .founders {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .founder {
        background: rgba(0, 0, 50, 0.6);
        border: 2px solid #00bfff;
        border-radius: 15px;
        width: 150px;
        padding: 15px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .founder img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin-bottom: 10px;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .founder:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 20px #00bfff, 0 0 40px #00bfff;
    }

    .founder:hover img {
        transform: scale(1.1);
        box-shadow: 0 0 20px #00bfff, 0 0 40px #00bfff;
    }

    /* Animations */

    @keyframes spinY {
        from {
            transform: rotateY(0deg);
        }
        to {
            transform: rotateY(360deg);
        }
    }

    @keyframes moveBG {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }

    @keyframes neonPulse {
        from {
            text-shadow: 0 0 10px #00bfff59, 0 0 20px#00bfff59, 0 0 40px #00bfff59;
        }
        to {
            text-shadow: 0 0 20px #00bfff59, 0 0 40px #00bfff59, 0 0 80px #00bfff59;
        }
    }

    /* Info Box */

    .info-box {
        display: block;
        /* بدل inline-block */
        background: rgba(0, 0, 50, 0.6);
        /* خلفية شفافة داكنة */
        border: 2px solid #00bfff;
        /* إطار نيون */
        border-radius: 20px;
        /* حواف مستديرة */
        padding: 25px 40px;
        margin: 20px auto;
        /* يظل في الوسط */
        max-width: 700px;
        text-align: center;
        box-shadow: 0 0 20px #00bfff, 0 0 40px #00ffff;
        animation: neonPulse 2s infinite alternate;
    }

    /* Leader Box */

    .leader-box {
        display: block;
        /* بدل inline-block */
        background: rgba(0, 0, 50, 0.6);
        /* خلفية شبه شفافة */
        border: 2px solid #00bfff;
        /* إطار نيون */
        border-radius: 20px;
        padding: 20px 40px;
        margin: 20px auto 30px auto;
        /* يظهر مباشرة تحت Info Box */
        text-align: center;
        box-shadow: 0 0 20px #00bfff, 0 0 40px #00ffff;
        animation: neonPulse 2s infinite alternate;
        max-width: 700px;
        /* نفس عرض الـ Info Box */
    }

    .leader-box h2 {
        font-size: 2.5rem;
        color: #00bfff;
        text-shadow: 0 0 10px #00bfff, 0 0 20px #00ffff;
        margin: 0;
    }

    /* FadeIn Effect */

    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 1s ease-out, transform 1s ease-out;
    }

    .fade-in.show {
        opacity: 1;
        transform: translateY(0);
    }

    /* Discord Button Styles */

    .discord-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        background: linear-gradient(90deg, #7289da, #99aab5);
        color: white;
        font-family: 'Orbitron', sans-serif;
        font-weight: 700;
        text-decoration: none;
        border-radius: 12px;
        box-shadow: 0 0 15px rgba(114, 137, 218, 0.6);
        transition: all 0.3s ease;
    }

    .discord-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(114, 137, 218, 0.9);
    }

    .discord-icon {
        width: 24px;
        height: 24px;
    }

#visitor-count {
  position: fixed;
  top: 0; /* أقصى أعلى الصفحة */
  right: 0; /* أقصى يمين الصفحة */
  background-color: rgba(0, 0, 0, 0.7);
  color: #00b3ff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 8px;
  user-select: none;
  z-index: 9999; /* زيادة z-index ليكون العنصر في المقدمة */
  box-shadow: 0 0 10px #00b3ff;
}
