		
		
		
		
		
		/* Kiko Edition*/
		----------------------------------------------------
		<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap" rel="stylesheet">


.navbar {
    background-color: #111;
    border-bottom: 2px solid #00ffe5;
}
.navbar-nav.ml-auto { 
  margin-right: 290px;
  gap: 15px; 
   display: flex;
    flex-direction: row-reverse;
}
.navbar-brand, .nav-link {
    color: #00ffe5 !important;
    text-shadow: 0 0 5px #00ffe5;
}

.navbar-brand:hover, .nav-link:hover {
    color: #ff00ff !important;
    text-shadow: 0 0 10px #ff00ff;
}
.cards {
  display: flex;
  margin-right: 100px;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  background: #0a0a0a; /* خلفية داكنة مناسبة للنيون */
  flex-wrap: wrap;
  text-align: center;
}

.card {
  background: #111;
  border-radius: 15px;
  width: 18rem;
  padding: 25px 20px 30px;
  box-shadow:
    0 0 10px #00ffe5,
    0 0 20px #00ffe5 inset;
  color: #00ffe5;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.4s ease;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  font-family: 'Orbitron', sans-serif; /* خط سيبر بانك مستقبلي */
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, #00fff7, #00a5ff, #ff00ff, #00fff7);
  animation: neonGradient 5s linear infinite;
  filter: blur(30px);
  opacity: 0.3;
  z-index: 0;
  border-radius: 25px;
}

.card:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 30px #00ffe5,
    0 0 40px #00ffe5 inset,
    0 0 50px #ff00ff;
  border-color: #00ffe5;
}

.card i {
  font-size: 50px;
  margin-bottom: 20px;
  color: #00ffe5;
  text-shadow:
    0 0 5px #00ffe5,
    0 0 10px #00ffe5,
    0 0 20px #00ffe5;
  display: block;
}

.card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #00ffe5;
  text-shadow:
    0 0 5px #00ffe5,
    0 0 10px #00ffe5;
}

.card .card-text {
  font-size: 1rem;
  color: #a0f7ff;
  margin-bottom: 25px;
  line-height: 1.4;
}

.card .btn-primary {
  background: linear-gradient(135deg, #00ffe5, #0077ff);
  border: none;
  padding: 10px 20px;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  color: white;
  border-radius: 10px;
  box-shadow:
    0 0 15px #00ffe5;
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
  text-transform: uppercase;
}

.card .btn-primary:hover {
  background: linear-gradient(135deg, #00ccff, #0044cc);
  box-shadow:
    0 0 25px #00ccff,
    0 0 35px #0044cc;
  transform: scale(1.1);
}

@keyframes neonGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.btn-primary {
    background-color: #00ffe5;
    border: none;
    color: #000;
    font-weight: bold;
    box-shadow: 0 0 10px #00ffe5;
}

.btn-primary:hover {
    background-color: #ff00ff;
    color: #fff;
    box-shadow: 0 0 20px #ff00ff;
}

.bottom {
    background: #000;
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid #00ffe5;
    color: #fff;
}

.bottom a {
    color: #00ffe5;
    text-decoration: none;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    color: #00ffe5;
    text-align: center;
    margin-top: 20px;
    text-shadow: 
        0 0 5px #00ffe5,
        0 0 10px #00ffe5,
        0 0 20px #ff00ff,
        0 0 30px #ff00ff;
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #00ffe5, 0 0 10px #00ffe5;
    }
    to {
        text-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff;
    }
}

button a {
    color: #000;
    background: #00ffe5;
    padding: 10px 20px;
    text-shadow: none;
    box-shadow: 0 0 10px #00ffe5;
    border-radius: 5px;
}
</style>

.Upper-bar {
    background: linear-gradient(90deg, #0d0d0d, #1a1a1a, #0d0d0d);
    padding: 1px 0;
    font-size: 14px;
    font-family: "NunitoSans-Regular", sans-serif;
    color: #00ffe5;
    text-align: center;
    box-shadow: 0 0 10px #00ffe5, 0 0 20px #ff00ff inset;
    border-bottom: 1px solid #222;
    z-index: 10;
}

.Upper-bar .fa {
    color: #ff00ff;
    margin-right: 20px;
    text-shadow: 0 0 5px #ff00ff;
}

.Upper-bar span {
    text-shadow: 0 0 5px #00ffe5;
}


.custom-navbar .navbar-brand {
    color: #00ffe5;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 5px #00ffe5;
    display: flex;
    align-items: center;
    gap: 10px;
	margin-right: 190px;
}

.custom-navbar .neon-icon {
    color: #ff00ff;
    text-shadow: 0 0 8px #ff00ff;
    font-size: 22px;
}

.navbar-nav .nav-link {
  padding: 12px 25px;          
  min-width: 100px;           
  height: 40px;               
  background-color: #00ffe5;   
  color: #111;                 
  border-radius: 12px;         
  border: 2px solid #00ccaa;  
  text-align: center;          
  display: flex;               
  align-items: center;         
  justify-content: center;    
  transition: background-color 0.3s ease, color 0.3s ease; 
}

.custom-navbar .navbar-nav .nav-link {
  background-color: #008ba3; 
  color: #fff;
  border: 1px solid #007a8a;
  border-radius: 8px;
  box-shadow: 
    inset 0 3px 5px rgba(255, 255, 255, 0.2), 
    0 4px 6px rgba(0, 0, 0, 0.3); 
  transition: all 0.3s ease;
}
.custom-navbar .navbar-nav .nav-link:hover {
  background-color: #00bcd4;
  color: #000;
  border-color: #00bcd4;
  box-shadow:
    inset 0 3px 8px rgba(255, 255, 255, 0.6),  
    0 6px 10px rgba(0, 188, 212, 0.6),          
    0 0 12px #00bcd4,                           
    0 4px 20px rgba(0, 188, 212, 0.4);          
  transform: translateY(-2px);                  
}

 .custom-navbar {
     background-color: #004d40;
    border-bottom: 1px solid #00ffe5;
    box-shadow: 0 0 15px #00ffe5;
    font-family: "NunitoSans-Bold";
    padding: 10px 40px;
    width: 100%;
    z-index: 999;
    position: relative;
}
.custom-navbar .navbar-collapse {
    display: flex !important;         
    justify-content: center !important; 
}
.custom-navbar .navbar-brand {
    color: #00ffe5;
    font-size: 26px;
    font-weight: bold;
    text-shadow: 0 0 8px #00ffe5;
    animation: slideText 3s infinite alternate;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0; 
}

@keyframes slideText {
    0% { transform: translateX(0px); }
    100% { transform: translateX(10px); }
}
.custom-navbar .neon-icon {
    color: #ff00ff;
    font-size: 22px;
    text-shadow: 0 0 12px #ff00ff;
}

.custom-navbar .navbar-nav .nav-link {
    color: #00ffe5;
    margin: 0 10px;
    padding: 10px 18px;
    border: 1px solid #00ffe5;
    background-color: rgba(0, 255, 229, 0.05);
    border-radius: 8px;
    font-size: 16px;
	
    transition: all 0.3s ease-in-out;
}

.custom-navbar .navbar-nav .nav-link:hover {
    background-color: #00ffe5;
    color: #000;
    box-shadow: 0 0 10px #00ffe5, 0 0 20px #00ffe5;
}

		
		@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

.cyber-stats {
    display: flex;
    align-items: center;
    gap: 8px;
	flex-direction: row-reverse; 
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    color: #00ffe5;
    text-shadow:
        0 0 5px #00ffe5,
        0 0 10px #00ffe5,
        0 0 20px #ff00ff,
        0 0 30px #ff00ff,
        0 0 40px #ff00ff;
    padding: 10px 20px;
    border: 2px solid #00ffe5;
    border-radius: 12px;
    background: rgba(0, 255, 229, 0.05);
    box-shadow:
        0 0 8px #00ffe5,
        inset 0 0 10px #00ffe5;
    min-width: 20px;
    justify-content: center;
}

.cyber-icon {
    font-size: 28px;
    color: #ff00ff;
    text-shadow:
        0 0 5px #ff00ff,
        0 0 10px #ff00ff,
        0 0 15px #ff00ff;
}

.cyber-stats .label {
    font-weight: 600;
    color: #00ffe5;
    text-shadow:
        0 0 8px #00ffe5,
        0 0 15px #00ffe5;
}

.cyber-stats .value {
    font-weight: 900;
    color: #ff00ff;
    text-shadow:
        0 0 8px #ff00ff,
        0 0 15px #ff00ff;
}

.value.online {
    color: #00ff00;
    text-shadow:
        0 0 10px #00ff00,
        0 0 20px #00ff00;
}

.value.offline {
    color: #ff0000;
    text-shadow:
        0 0 10px #ff0000,
        0 0 20px #ff0000;
} 
		  
		  body, html {
  overflow-x: hidden;
}
		
.neon-carousel {
  width: 1900px;
  max-width: 2685px;
  height: auto;   
  max-height: 600px;
  aspect-ratio: 16 / 9; 
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 
    0 10px 20px rgba(0, 255, 229, 0.6),
    inset 0 0 20px #00ffe5;
  overflow: hidden;
  position: relative;
  perspective: 1200px;
}


*,
*::before,
*::after {
  box-sizing: inherit;
}


.neon-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  right: 30px; 
  transform: translateX(-50%);
  
  color: #00ffe5;
  text-align: contain;
  font-family: 'Orbitron', sans-serif; 
  
  text-shadow:
    0 0 5px #00ffe5,
    0 0 10px #00ffe5,
    0 0 20px #00ffe5,
    0 0 40px #00ffe5;
  
  pointer-events: none; 
  user-select: none;
  
  transition: transform 0.4s ease;
  transform: translateY(0) translateX(-50%);
  
  z-index: 10;
}

.neon-caption.animate {
  animation: floatText 4s ease-in-out;
}
@keyframes floatingShake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(-3px, 2px) rotate(-1deg); }
  40% { transform: translate(3px, -2px) rotate(1deg); }
  60% { transform: translate(-2px, 3px) rotate(-1deg); }
  80% { transform: translate(2px, -3px) rotate(1deg); }
}

.floating-shake {
  animation: floatingShake 1s ease-in-out infinite;
}

@keyframes floatText {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.neon-indicators li {
  background-color: #00ffe5;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  transition: background-color 0.3s ease;
}

.neon-indicators .active {
  background-color: #ff00ff;
}

.neon-slide {
  width: 100%;      
  height: 100%;     
  object-fit: cover; 
  border-radius: 15px; 
}


.carousel-caption.neon-caption {
  bottom: 5vh;       
  color: #00ffe5;
  text-shadow: 0 0 8px #00ffe5;
  font-size: 2rem;
  font-weight: bold;
  animation: neonPulse 3s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  0% {
    text-shadow:
      0 0 5px #00ffe5,
      0 0 10px #00ffe5,
      0 0 20px #00ffe5,
      0 0 40px #00ffe5;
  }
  100% {
    text-shadow:
      0 0 10px #00ffe5,
      0 0 20px #00ffe5,
      0 0 30px #00ffe5,
      0 0 60px #00ffe5;
  }
}


@keyframes slideFloat {
  0%, 100% {
    transform: translateZ(0) rotateY(0deg);
    filter: drop-shadow(0 0 10px #00ffe5);
  }
  50% {
    transform: translateZ(20px) rotateY(8deg);
    filter: drop-shadow(0 0 20px #00ffe5);
  }
}

.neon-indicators li {
  background-color: #00ffe5;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px #00ffe5;
  margin: 0 5px;
}

.neon-indicators .active {
  background-color: #ff00ff;
  width: 18px;
  height: 18px;
  box-shadow:
    0 0 12px #ff00ff,
    0 0 20px #ff00ff;
}

.neon-control {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 255, 229, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 900px #00ffe5,
    inset 0 0 900px #00ffe5;
  transition: background-color 0.9s ease, box-shadow 0.9s ease;
}

.neon-control:hover {
  background-color: #00ffe5;
  box-shadow:
    0 0 20px #00ffe5,
    inset 0 0 20px #00ffe5;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 50px;
  height: 50px;
  background-size: 50px 50px;
  filter: drop-shadow(0 0 6px #00ffe5);
  background-color: rgba(0, 255, 229, 0.3);
  border-radius: 50%;
}


.carousel-inner, .carousel-item, .neon-slide {
  width: 100%;
  height: 600px; 
  object-fit: cover;
  border-radius: 15px;
}

.neon-caption h3 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
  animation: neonGlow 2.5s ease-in-out infinite alternate;
}

.neon-caption p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff00ff;
  text-shadow:
    0 0 8px #ff00ff,
    0 0 15px #ff00ff;
  animation: neonGlowPink 2.5s ease-in-out infinite alternate;
}

@keyframes neonGlow {
  from {
    text-shadow:
      0 0 5px #00ffe5,
      0 0 10px #00ffe5,
      0 0 20px #00ffe5,
      0 0 40px #00ffe5;
  }
  to {
    text-shadow:
      0 0 10px #00ffe5,
      0 0 20px #00ffe5,
      0 0 30px #00ffe5,
      0 0 50px #00ffe5;
  }
}

@keyframes neonGlowPink {
  from {
    text-shadow:
      0 0 8px #ff00ff,
      0 0 15px #ff00ff;
  }
  to {
    text-shadow:
      0 0 15px #ff00ff,
      0 0 25px #ff00ff;
  }
}

.carousel-inner {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 15px;
  background-color: black;
}

.carousel-item {
  height: 100%;
  position: relative;
}

.slider-img {
  width: 100%;
  height: auto;    
  object-fit: contain;
  display: block;
  margin: 0 auto;
}





		
		/* CSS */

.neon-box {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 50px;
  background: #0a0a0a;
  border-radius: 20px;
  position: relative;
  box-shadow:
    0 0 20px #00ffe5,
    inset 0 0 30px #00ffe5;
  border: 3px solid #00ffe5;
}

/* إطار نيون متوهج داخل وخارج */
.neon-box::before {
  content: '';
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border-radius: 25px;
  border: 2px solid transparent;
  background: linear-gradient(45deg, #00fff7, #00a5ff, #ff00ff, #00fff7);
  background-size: 300% 300%;
  animation: neonGlow 6s linear infinite;
  z-index: -1;
  filter: blur(8px);
}

/* حركة التوهج */
@keyframes neonGlow {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* محتوى كل عنوان */
.content {
  width: 45%;
}

/* العنوان بخط نيون قوي */
.neon-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: #00ffe5;
  text-shadow:
    0 0 8px #00ffe5,
    0 0 15px #00ffe5,
    0 0 20px #00ccff,
    0 0 30px #00ccff;
  margin-bottom: 15px;
  user-select: none;
  direction: rtl; /* لو تحب الخط عربي من اليمين لليسار */
}

.neon-text {
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  color: #a0f7ff;
  line-height: 1.5;
  user-select: text;
  direction: rtl; 
  white-space: pre-line;
}

.left-content {
  text-align: right;
}

.right-content {
  text-align: left;
}

.fire-cheek-container {
  width: 100%;
  display: flex;
  justify-content: center; 
  margin-right: -230px;
  margin-top: 5px;
}

.fire-cheek {
  max-width: 200px;
  height: auto;
}

	.text-neon {
    color: #00f7ff !important;
    text-shadow: 0 0 5px #00f7ff, 0 0 10px #00f7ff;
    transition: 0.3s;
}

.text-neon:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px #00f7ff, 0 0 20px #00f7ff;
}
	
		
		
		
		
		
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    min-height: 100vh;
    position: relative;
}
.signup-container {
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    box-shadow: 0 0 30px #00e6ff, 0 0 60px #00e6ff88;
    text-align: center;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(15px);
}

/* عنوان الصفحة */
.form-title {
    margin-bottom: 30px;
    font-size: 2.4rem;
    letter-spacing: 2px;
    font-weight: 800;
    text-shadow:
        0 0 10px #00ffff,
        0 0 20px #00e6ff,
        0 0 30px #00c4ff;
    color: #00f0ff;
    user-select: none;
}

/* تنسيق الفورم */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.input-glow {
    width: 100%;
    margin-bottom: 15px;
}
.input-glow input {
    width: 100%;
    padding: 14px 18px;
    font-size: 1.1rem;       
    border-radius: 15px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    box-shadow:
        0 0 12px #00ffff,
        inset 0 0 15px #00caff;
    box-sizing: border-box;   
    transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
    transform-style: preserve-3d;
    cursor: text;
}

.input-glow input::placeholder {
    color: #b3faff;
}

.input-glow input:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 15px #00ffff inset;
}

.input-glow input[type="text"]::placeholder {
    color: #b3faff;
}

.input-glow input[type="text"]:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 0 25px #00ffff,
        0 0 50px #00ffff,
        0 0 70px #00ffff;
}
.input-glow input[type="text"],
.input-glow input[type="email"],
.input-glow input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow:
        0 0 15px #00ffff,
        0 0 30px #00ffff,
        0 0 40px #00ffff;
    transition: 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* زر التسجيل مع توهج وحركة 3D */
.btn-glow {
    padding: 15px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ffff;
    background: transparent;
    border: 2.5px solid #00ffff;
    border-radius: 15px;
    cursor: pointer;
    box-shadow:
        0 0 25px #00ffff,
        0 0 40px #00e6ff88;
    transition: all 0.35s ease;
    transform-style: preserve-3d;
    user-select: none;
}

.btn-glow:hover {
    background: #00ffff;
    color: #000;
    box-shadow:
        0 0 45px #00ffff,
        0 0 60px #00e6ff,
        0 10px 20px rgba(0, 255, 255, 0.7);
    transform: perspective(600px) translateZ(10px) scale(1.1);
}

.btn-glow:active {
    transform: translateZ(0) scale(0.98);
    box-shadow: 0 0 15px #00cccc;
}

/* رسائل الأخطاء والنجاح */
.msg {
    margin-top: 20px;
    padding: 14px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    user-select: none;
    text-shadow: 0 0 4px rgba(0,0,0,0.5);
}

.msg.error {
    background-color: #ff0033cc;
    color: #fff;
    text-shadow:
        0 0 8px #ff0000,
        0 0 15px #ff4444;
    box-shadow: 0 0 15px #ff0000aa;
}

.msg.success {
    background-color: #00cc66cc;
    color: #fff;
    text-shadow:
        0 0 8px #00ff00,
        0 0 15px #44ff88;
    box-shadow: 0 0 15px #00cc66aa;
}







.btn-neon-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-neon {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #00ffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid #00ffff;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  box-shadow:
    0 0 5px #00ffff,
    0 0 10px #00ffff,
    0 0 20px #00ffff,
    0 0 40px #00ffff;
  transition: all 0.3s ease;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.btn-neon:hover {
  color: #000;
  background: #00ffff;
  box-shadow:
    0 0 10px #00ffff,
    0 0 30px #00ffff,
    0 0 40px #00ffff,
    0 0 60px #00ffff;
  transform: rotateX(10deg) scale(1.05);
}

.btn-neon::before,
.btn-neon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  opacity: 0.6;
  filter: blur(6px);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.btn-neon::before {
  box-shadow:
    0 0 20px #00ffff,
    0 0 30px #00ffff,
    0 0 40px #00ffff;
  animation: neonPulse 2s infinite alternate;
}

.btn-neon::after {
  box-shadow:
    0 0 10px #00ffff,
    0 0 20px #00ffff;
}

@keyframes neonPulse {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

		
		---------------------------------------------------------
		/* Start Style */
		@font-face 
		{
		  font-family: "NunitoSans-Bold";
		  src: url(../js/font/NunitoSans-Bold.ttf);
		}
		@font-face 
		{
		  font-family: "NunitoSans-Regular";
		  src: url(../js/font/NunitoSans-Regular.ttf);
		}
		a:link
		{
			text-decoration: none;
		}
		
		nav ul
		{
			margin-right: 600px;

		}
		nav li a
		{
			color: #ffffff !important;
			font-family: "NunitoSans-Bold";
			border-right: 0.5px solid silver;

		}
		nav li a:hover
		{
			color: silver !important;

		}
		
		.dropdown-menu a
		{
			color: #222222 !important;
		}
		.navbar-brand
		{
			color: #ffffff !important;

		}
		.dropdown-menu a:hover
		{
			background: #222222 !important;
		}
		.Upper-bar
		{
			background: black;
			color: #ffffff;
			padding: 5px;
			font-size: 12px;
			font-family: "NunitoSans-Regular";
			text-align: center;
		}
		.col-sm a
		{
			color: #ffffff !important; 
			border-right: 0.5px solid silver;
		}
		
		.card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: 100px;
  padding: 20px;
  background: #111; 
  border-radius: 15px;
  box-shadow:
    0 0 10px #00fff7,
    0 0 20px #00fff7,
    0 0 30px #00fff7,
    0 0 40px #00fff7;
  transition: box-shadow 0.3s ease;
}
	.card:hover {
  box-shadow:
    0 0 20px #00fff7,
    0 0 40px #00fff7,
    0 0 60px #00fff7,
    0 0 80px #00fff7;
}

.card h5, .card p {
  color: #00fff7;
  text-shadow:
    0 0 5px #00fff7,
    0 0 10px #00fff7,
    0 0 20px #00fff7;
  margin: 10px 0;
}
.card i
{
color: black;
font-size: 70px;
text-align: center;
}
.bottom {
  text-align: center;
  color: silver;
  width: 100%;
  height: 120px;
  background: #111; /* نفس لون الخلفية عشان التوهج يبرز */
  padding-top: 20px;
}

.bottom button {
  width: 8%;
  background: transparent;
  color: #00fff7;
  border: 1px solid #00fff7;
  border-radius: 4px;
  margin-left: 30px;
  display: inline-block;
  box-shadow:
    0 0 5px #00fff7,
    0 0 10px #00fff7,
    0 0 20px #00fff7;
  transition: box-shadow 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.bottom button a	{
color: #ffffff;
font-family: "NunitoSans-Regular";
font-size: 13px;}
.bottom button:hover {
  color: #fff;
  box-shadow:
    0 0 10px #00fff7,
    0 0 20px #00fff7,
    0 0 40px #00fff7;
}
		.position-static
		{
			padding-top: 30px;
		}
		.logo
		{
			position: absolute;
			float: right;
			margin-top: -100px;
		}
		.formcss
		{
			margin-top: -300px;
		}
		.formcss form
		{
			width: 300px;
			padding-top: 20px;
			box-shadow: 1px 2px 2px 2px silver;
			padding-bottom: 10px;
			border-radius: 10px;
			text-align: center;
			line-height: 50px;
		}
		.formcss form .fa
		{
			color: black;
			padding-right: 10px;
			font-size: 20px;
		}
		.formcss form i
		{
			position: absolute;
			margin-left: 10px;
			float: left;
			margin-top: 15px;
		}
		.formcss input
		{
			text-align: center;
		}
		.formcss input[type='submit'] 
		{
		  width:40%;
		}
		.formcss .formcssww
		{
			line-height: 2px;
		}
		.formcss input[type='text'],input[type='mobile'],input[type='email'],input[type='Password']
		{
			width: 80%;
		    height: calc(1.5em + 0.75rem + 2px);
		    padding: 0.375rem 0.75rem;
		    font-size: 1rem;
		    font-weight: 400;
		    line-height: 1.5;
		    color: #495057;
		    background-color: #fff;
		    background-clip: padding-box;
		    border: 1px solid #ced4da;
		    border-radius: 0.25rem;
		    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
		}
		.formcss input[type='submit']:hover
		{
		  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
		}
		.formcss .btn a
		{
			color: #ffffff;

		}
		.formcss .forgotpass
		{
			font-size: 13px;
			padding-top: 1px;
		}
		.already
		{
			font-family: "NunitoSans-Regular";
			font-size: 13px;
			padding-top: 10px;
		}
		.done
		{
			font-family: "NunitoSans-Regular";
			font-size: 13px;
			padding-top: 10px;
		}
		.fa-facebook
		{
		width: 30px; 
		height: 30px;
		color: #ffffff;
		background: #184693;
		padding: 5px;
		padding-left: 9px;
		border-radius:5px; 
		}
		.formcss i.fa-facebook
		{
			color: #ffffff;
			margin-top: 22px;
		}
		
		.formcss i.fa-facebook:hover
		{
			color: #ffffff;
			background: #007bff;
			box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
		}
		.table
		{
			width: 70%;
		}
	
		.btn
		{
			margin: 20px;
		}
				
		.onlineplayers1 td
		{
			width: 200px;
			color: #fff;
			text-align: center;
			background: #222222;
		}

		.onlineplayers td
		{
			width: 200px;
			color: #222222;
			text-align: center;
			border-bottom: 1px solid silver;
			height: 60px;
		}
		.onlineplayers:hover
		{
			background: silver;
		}
		.onlineplayers img
		{
			border-radius: 50%;
		}
		.profiledata2222
		{
			text-align: center;
			width: 250px;
		}
		.profiledata2222
		{
			background: #4b545c;
			padding-top: 30px;
			height:550px;
			font-family: "NunitoSans-Bold";
			line-height: 33px;
			border-radius: 10px;
			box-shadow: 4px 5px 5px 5px silver;
			display: inline-block;
   			 vertical-align: middle;

		}
		.profiledata2222 img
		{
		  border:5px solid silver;
		  border-radius: 50% !important;
		}
		.profiledata2222 hr
		{
			background: silver;
		}
		.homebtn
		{
			float: right;
		}
		.showdata
		{
			color: black;
		}
		.msg
		{
			color: red;
			background: #fcd0d4;
			border-left: 5px solid red;
			width: 300px;
		}
		.prs
		{
			color: #D65A00;
		}

		.buttons
		{
			width: 300px;
			display: inline-flex;
			float: right;
			margin-right: 60px;
		}
		.buttons button
		{
			width: 120px;
		}		
		.cpanellist
		{
			background: #4b545c;
			width: 230px;
			height: 945px;
			float: left;
			overflow-y: hidden;
    		z-index: 1038;
    		text-align: center;

		}
		.cpanellist a
		{
			color: #fff;
		}
		.cpanellist img
		{
		  border-radius: 50% !important;
		}
		.profiledata2222cp
		{
			text-align: center;
			width: 250px;
			margin: 30px;
		}
		.profiledata2222cp
		{
			background: #4b545c;
			padding-top: 30px;
			height:590px;
			font-family: "NunitoSans-Bold";
			line-height: 33px;
			border-radius: 10px;
			box-shadow: 4px 5px 5px 5px silver;
			display: inline-block;
   			 vertical-align: middle;
   			 
		}
		.profiledata2222cp img
		{
		  border:5px solid silver;
		  border-radius: 50% !important;
		}
		.profiledata2222cp hr
		{
			background: silver;
		}
		.cpanellist hr
		{
			background: silver;
		}
		.cpanellist .imglist
		{
			float: left;
		}
		.cpanellist .listlink a:hover
		{
			color: silver;
		}
		/* End Style By Mr.Joker */