*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{

background:linear-gradient(160deg,#000,#1a0000);

color:white;

direction:rtl;

}

/* الصفحة */

.hero{

min-height:100vh;

display:flex;
flex-direction:column;

align-items:center;
justify-content:center;

text-align:center;

padding:20px;

}

/* الشعار */

.logo{

font-size:70px;

color:#ff2e2e;

text-shadow:0 0 30px red;

margin-bottom:10px;

}

/* النص */

.subtitle{

color:#bbb;

margin-bottom:40px;

}

/* الشخصيات */

.characters{

display:flex;

flex-wrap:wrap;

justify-content:center;

gap:25px;

margin-bottom:40px;

}

.character{

background:#111;

padding:15px;

border-radius:12px;

width:120px;

transition:0.3s;

}

.character img{

width:80px;

}

.character span{

display:block;

margin-top:10px;

}

.character:hover{

transform:scale(1.08);

box-shadow:0 0 20px red;

}

/* الأزرار */

.menu{

margin-top:20px;

}

/* حقل الاسم */

.menu input{

width:260px;

padding:14px;

border-radius:30px;

border:none;

outline:none;

font-size:16px;

text-align:center;

background:#1a1a1a;

color:white;

box-shadow:0 0 10px rgba(255,0,0,0.3);

transition:0.3s;

margin-bottom:15px;

}

.menu input:focus{

box-shadow:0 0 20px red;

transform:scale(1.03);

}

/* الأزرار */

.btn{

display:block;

width:240px;

padding:18px;

margin:10px auto;

border-radius:10px;

text-decoration:none;

font-size:20px;

color:white;

transition:0.3s;

border:none;

cursor:pointer;

}

/* زر إنشاء غرفة */

.red{

background:linear-gradient(45deg,#b30000,#ff0000);

}

/* زر الانضمام */

.gray{

background:linear-gradient(45deg,#444,#777);

}

.btn:hover{

transform:scale(1.05);

box-shadow:0 0 20px red;

}

/* الجوال */

@media(max-width:600px){

.logo{

font-size:40px;

}

.characters{

gap:15px;

}

.character{

width:100px;

}

.menu input{

width:220px;

}

.btn{

width:200px;

}

}