@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Oswald', sans-serif;
}

body{
    background:#050505;
    color:white;
    overflow-x:hidden;
}

/* ===== BACKGROUND EFFECT ===== */

.bg-effect{
    position:fixed;
    width:700px;
    height:700px;
    background:#4b4848;
    border-radius:50%;
    filter:blur(220px);
    opacity:0.22;
    top:-250px;
    left:-150px;
    z-index:-1;
}

/* ===== HEADER ===== */

header{
    width:100%;
    height:90px;
    background:rgba(0,0,0,0.92);
    border-bottom:1px solid #a7a7a7b0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 80px;
    backdrop-filter:blur(8px);
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

/* 🔥 فقط هذا التعديل لحل المشكلة */

.logo img{
    width:170px;
    filter:drop-shadow(0 0 10px #1d1d1d);
}

/* ===== NAV ===== */

nav{
    display:flex;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#d1d5db;
    font-size:16px;
    letter-spacing:1px;
    transition:0.3s;
    position:relative;
}

nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:#ffffff;
    transition:0.3s;
}

nav a:hover{
    color:#ffffff;
}

nav a:hover::after{
    width:100%;
}

/* ===== MAIN ===== */

.main{
    width:100%;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:70px 20px;
}

.main h1{
    font-size:85px;
    color:white;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:3px;
}

.main h1 span{
    color:#ffffff;
    text-shadow:0 0 20px rgba(255, 255, 255, 0.5);
}

.subtitle{
    color:#8f8f8f;
    font-size:20px;
    margin-bottom:60px;
    text-align:center;
    max-width:700px;
    line-height:35px;
}

/* ===== CARD ===== */

.apply-card{
    width:680px;
    background:#0b0b0b;
    border:1px solid #ffffff;
    border-radius:25px;
    padding:40px;
    box-shadow:0 0 40px rgba(255, 255, 255, 0.08);
}

/* ===== TOP ===== */

.top-bar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.status{
    background:#ffffff;
    border:1px solid #000000;
    padding:12px 18px;
    border-radius:10px;
    color:#000000;
    font-size:15px;
    letter-spacing:1px;
}

.members{
    color:#777;
    font-size:14px;
}

/* ===== INPUTS ===== */

.input-box{
    margin-bottom:30px;
}

.input-box label{
    display:block;
    margin-bottom:12px;
    color:#ffffff;
    font-size:15px;
    letter-spacing:2px;
}

.input-box input,
.input-box textarea{
    width:100%;
    background:#111;
    border:1px solid #1f1f1f;
    border-radius:14px;
    padding:18px;
    color:white;
    font-size:16px;
    outline:none;
    transition:0.3s;
}

.input-box input:focus,
.input-box textarea:focus{
    border-color:#ffffff;
    box-shadow:0 0 20px rgba(255, 255, 255, 0.15);
}

.input-box textarea{
    resize:none;
    height:140px;
}

.input-box input::placeholder,
.input-box textarea::placeholder{
    color:#666;
}

/* ===== BUTTON ===== */

button{
    width:100%;
    height:62px;
    border:none;
    border-radius:14px;
    background:linear-gradient(90deg,#c4c4c4,#cacaca);
    color:rgb(0, 0, 0);
    font-size:18px;
    letter-spacing:2px;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    transform:translateY(-3px);
    box-shadow:0 0 30px rgba(255, 255, 255, 0.25);
}

/* ===== RESPONSIVE ===== */

@media(max-width:850px){

    header{
        padding:0 20px;
    }

    .apply-card{
        width:100%;
    }

    .main h1{
        font-size:55px;
        text-align:center;
    }

    nav{
        gap:18px;
    }

}

@media(max-width:600px){

    nav a{
        display:none;
    }

    .logo img{
        width:200px;
    }
}