/* BACKGROUND ثابتة بدون حركة */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a0131;
    /* خلفية نيون غامقة */
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.neon-container {
    position: relative;
    text-align: center;
}

/* LOGO بدون دائرة */
.neon-logo {
    position: relative;
    margin-bottom: 10px;
}

.neon-logo h1 {
    font-size: 42px;
    color: #0ff;
    text-shadow:
        0 0 8px #0ff,
        0 0 20px #0ff,
        0 0 35px #00eaff;
    letter-spacing: 4px;
}

/* شيلنا .circle-glow بالكامل */

/* SUBTEXT */
.sub-text {
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-size: 19px;
    text-shadow: 0 0 10px #fff;
}

/* BUTTONS */
.neon-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.neon-btn {
    width: 230px;
    margin: auto;
    padding: 12px;
    font-size: 20px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid transparent;
    transition: 0.3s;
    justify-content: center;
}

/* neon glow presets */
.whats {
    border-color: #25D366;
    box-shadow: 0 0 12px #25D366;
}

.face {
    border-color: #1A73E8;
    box-shadow: 0 0 12px #1A73E8;
}

.insta {
    border-color: #ff2a7f;
    box-shadow: 0 0 12px #ff2a7f;
}

.phone {
    border-color: #0084ff;
    box-shadow: 0 0 12px #0084ff;
}

.neon-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 0 25px #0ff, inset 0 0 20px #0ff;
}