@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;500;700;1000&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: cairo;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #eee;
    color: #000;
    padding: 20px;
    font-size: 14px;

}
.sign {
    display: flex;
    gap: 15px;
}
.login {
    color: #000;
}

.register {
    color: #fff;
    background: #000;
    padding: 5px;
    border-radius: 15px;
}

.right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.left .logo img {
    width: 60px;
}

.lang {
    position: relative;
}

.dropbtn {
    background-color: transparent;
    color: #000;
    border: none;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 16px;
    outline: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: -65px;
    top: 30px;
    background-color: #fff;
    color: #000;
    min-width: 160px;
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    color: #000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: cairo, sans-serif;
}

.dropdown-content a:hover {
    background-color: #21212182;
    color: #fff;
}

i.fa.fa-globe {
    font-size: 20px;
}

.right_nav {
    display: flex;
    align-items: center;
}

.dark-mode-toggle i {
    font-size: 20px;
    cursor: pointer;
}

.logo img {
    width: 175px;
}

/*____________________________________*/
.user_info_drop {
    position: relative;
}

.user_info_drop img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.user_info_drop .dropdown-content {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.user_info_drop .dropdown-content ul {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.user_info_drop .dropdown-content li {
    border-bottom: 1px solid #eee;
    color: #000;
}

.user_info_drop .dropdown-content li p {
    margin: 5px 0;
}

.user_info_drop .detiles {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.user_info_drop .acc i, .user_info_drop .rank i, .user_info_drop .st i {
    margin-right: 10px;
    color: #0094f7;
    padding: 4px;
    font-size: 20px;
}


.acc, .rank, .st {
    display: flex;
    color: #000;
    align-items: center;
    gap: 10px;
}

.balance_user {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.balance_user p {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wallet-usdt .copy-usdt, .wallet-egp .copy-egp, .wallet-vip .copy-vip {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copy-btn {
    color: #0094f7;
    cursor: pointer;
}

div#btn_dash a {
    padding: 0;
    width: 100%;
}

#btn_dash {
    display: flex;
    justify-content: center;
}

#btn_dash button {
    background-color: #000000bd;
    color: white;
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: cairo;
    width: 100%;
}

li strong {
    color: #000;
}

.dark-mode .user_info_drop .dropdown-content ul {
    background-color: #212121;
    color: #fff;
}

.dark-mode .user_info_drop .dropdown-content ul li {
    border-bottom: 1px solid #3b3a3a;
}

.dark-mode .user_info_drop .dropdown-content li p, .dark-mode .wallet-usdt .copy-usdt {
    color: #fff;
}

.dark-mode #btn_dash button {
    background-color: #333;
}

.dark-mode li strong {
    color: #9d9d9d;
}

.dark-mode .egp-wallet {
    color: #fff;
}

.dark-mode #popupBackground .popup-content {
    background-color: #000;
}

.dark-mode .dropbtn, .dark-mode .login {
    color: #fff;
}
.dark-mode .register {
color: #000;
background-color: #fff;
}

.dark-mode .award {
    background-color: #373535;
}

/*__________________________*/

.award {
    border-radius: 5px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background: #ddd;
    padding: 5px;
}

.popup-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999; 
    align-items: center;
    justify-content: center;
}

#popupBackground .popup-content_award {
    display: flex;
    justify-content: center;
    overflow: visible;
    background: #eee;
}