
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-image: url('assets/background.jpg');
  background-size: cover;
  background-position: center;
  color: black;
  direction: rtl;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: black;
  color: white;
}

.header .username {
  font-weight: bold;
}

.header .logo {
  height: 40px;
}

.main-logo {
  display: block;
  margin: 20px auto 10px;
  max-width: 150px;
}

.main-button {
  display: block;
  margin: 30px auto 10px;
  padding: 15px 30px;
  background-color: gold;
  border: none;
  border-radius: 25px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.nav-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.nav-icons .icon {
  width: 100px;
  margin: 15px;
  text-align: center;
  background-color: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 15px;
  font-size: 14px;
}

.footer-nav {
  display: none;
}

@media screen and (max-width: 768px) {
  .footer-nav {
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #111;
    color: white;
    padding: 10px;
  }
  .footer-nav div {
    text-align: center;
    flex: 1;
  }
}

body {
  cursor: url('assets/sniper.png'), auto;
}
.header {
  background-color: #2a1033; /* لون نهدي غامق مثلاً */
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #444;
}

.logo {
  background-color: #fff; /* خلفية بيضاء خلف الشعار */
  padding: 5px;
  border-radius: 8px;
  height: 40px;
}
