* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #07090e;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  width: 100%;
  background-color: #0c111e;
  border-bottom: 1px solid #1d283d;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.2rem;
}

.user-brand {
  color: #ffffff;
  font-weight: 700;
  font-style: italic;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.prefix, .suffix {
  font-size: 1.4rem;
  font-weight: 400;
  color: #22c55e;
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu li a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #ffffff;
}

.nav-menu li .contact-btn {
  display: inline-block;
  background-color: #2563eb;
  padding: 6px 18px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.3s ease;
}

.nav-menu li .contact-btn:hover {
  background-color: #3b82f6;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 1px solid #1d283d;
  padding-left: 15px;
}

.views-count {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  color: #93c5fd;
  font-size: 0.8rem;
  font-weight: 600;
}

.eye-icon {
  color: #3b82f6;
  font-size: 0.85rem;
}

.lang-btn {
  background-color: transparent;
  border: 1px solid #2563eb;
  border-radius: 6px;
  color: #ffffff;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background-color: #2563eb;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.time-display {
  color: #94a3b8;
  font-size: 0.8rem;
}

.timezone {
  color: #64748b;
  font-size: 0.7rem;
}


.main-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 90px 20px 20px 20px;
}

.profile-card {
  width: 100%;
  max-width: 650px;
  background-color: #0f1523;
  border-radius: 20px;
  border: 1px solid #1d283d;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
}


.banner {
  width: 100%;
  height: 180px;
  background-color: #1a2333;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-content {
  padding: 20px 25px 25px 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 0; 
}

.avatar-container {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2563eb;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.status-dot {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #0f1523;
}

.status-dot.online {
  background-color: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.username {
  color: #ffffff;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.tag {
  color: #94a3b8;
  font-size: 0.9rem;
}

.status-badge {
  display: inline-block;
  align-self: flex-start;
  margin-top: 2px;
  padding: 4px 12px;
  border: 1px solid #22c55e;
  background-color: rgba(34, 197, 94, 0.1);
  border-radius: 8px;
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: #1a2333;
  border: 1px solid #2d3b55;
  color: #94a3b8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.social-btn.github:hover {
  background-color: #24292e;
  border-color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.social-btn.discord:hover {
  background-color: #5865F2;
  border-color: #5865F2;
  box-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
}

.social-btn.twitter:hover {
  background-color: #000000;
  border-color: #333333;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(220, 39, 67, 0.5);
}

.toast {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #5865F2;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: bottom 0.4s ease;
  z-index: 2000;
}

.toast.show {
  bottom: 25px;
}

.spotify-box {
  background: rgba(30, 215, 96, 0.15);
  border: 1px solid #1ed760;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-top: 10px;
}




.status-dot.online {
  background-color: #23a55a; 
  box-shadow: 0 0 8px #23a55a;
}

.status-dot.idle {
  background-color: #f0b232; 
  box-shadow: 0 0 8px #f0b232;
}

.status-dot.dnd {
  background-color: #f23f43;
  box-shadow: 0 0 8px #f23f43;
}

.status-dot.offline {
  background-color: #80848e; 
  box-shadow: none;
}


.status-badge.online {
  border-color: #23a55a;
  color: #23a55a;
  background: rgba(35, 165, 90, 0.1);
}

.status-badge.idle {
  border-color: #f0b232;
  color: #f0b232;
  background: rgba(240, 178, 50, 0.1);
}

.status-badge.dnd {
  border-color: #f23f43;
  color: #f23f43;
  background: rgba(242, 63, 67, 0.1);
}

.status-badge.offline {
  border-color: #80848e;
  color: #80848e;
  background: rgba(128, 132, 142, 0.1);
}



html {
  scroll-behavior: smooth !important;
  scroll-padding-top: 100px;
}


.content-sections {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.site-section {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  overflow: hidden;
  

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  

  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease,
              background 0.4s ease;

  animation: smoothAppear linear both;
  animation-timeline: view();
  animation-range: entry 5% cover 30%;
}


.site-section:hover {
  transform: translateY(-8px) scale(1.03); 
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(88, 101, 242, 0.9); 
  
  box-shadow: 0 0 25px rgba(88, 101, 242, 0.5),
              0 15px 35px rgba(88, 101, 242, 0.3),
              inset 0 0 15px rgba(88, 101, 242, 0.15);
}


@keyframes smoothAppear {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}


.site-section h2 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #5865f2;
  font-size: 1.6rem;
  text-shadow: 0 0 10px rgba(88, 101, 242, 0.4); /* توهج للعناوين */
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
  color: #b9bbbe;
}

.hours-list li span {
  font-weight: bold;
  color: #fff;
}

.discord-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(88, 101, 242, 0.2);
  border: 1px solid rgba(88, 101, 242, 0.6);
  padding: 12px 22px;
  border-radius: 14px;
  margin-top: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.2);
}

.discord-contact i {
  color: #5865f2;
  font-size: 1.5rem;
}