@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

.background-container {
  background-image: url('/bg.png'); /* استبدل هذا بمسار صورتك */
  background-size: cover; /* يغطي الصورة كامل المساحة المتاحة */
  background-position: center; /* يوضع الصورة في المركز */
  background-repeat: no-repeat; /* تمنع تكرار الصورة */
  background-attachment: fixed; /* تجعل الصورة ثابتة عند التمرير */
}

.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* يقسم الحاوية إلى عمودين */
    grid-gap: 15px; /* المسافة بين العناصر الشبكية */
    margin-bottom: 5px; /* مسافة أسفل الشبكة */
}

.data-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 5px;
    margin-bottom: 5px; /* مسافة أسفل الشبكة */
}
/* النص الأساسي للبيانات */
.data-text {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #E6E6E6; /* لون قريب جداً للأبيض */
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.5); /* تأثير التوهج الخفيف */
}

body { 
    font-family: 'Montserrat', sans-serif;
    background-color: #0d1117; /* Dark hacker-style background */
    margin: 0;
    padding: 0;
    color: #ffffff; /* White text for readability */
}
h1 { 
    color: white;
    font-size: 28px;
    text-shadow: 1px 1px black;
}
a {
    color: white;
    font-size: 16px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5); 
}
a:hover {
    font-size: 16px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}
a:active {
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5); 
}
b { font-size: 16px; /*الكلام الي عنده نقطه */
    font-family: 'Roboto', sans-serif;
    color: #E6E6E6; /* لون قريب جداً للأبيض */
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.5); /* تأثير التوهج الخفيف */
    letter-spacing:1px;
    text-align:center; }
p {
    color: white;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    padding: 4px;
}
.log {
  font-size: 14px; /* حجم الخط */
  line-height: 250%; /* الارتفاع بين الأسطر */
  color: rgba(250, 250, 250, 0.65); /* لون النص */
}

img {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
    border-radius: 10px; /* Rounded corners */
    backdrop-filter: blur(5px); /* Blur effect for the glassy look */
    -webkit-backdrop-filter: blur(20px);
    max-width:100%; 
    max-height:100%;
    height:auto;
    margin:auto;
    display:block;
    border-radius: 10px; /* Rounded corners */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
    color: #fff; /* White text color */
    background: #000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

.glass-button-container {
    display: inline-block;
    position: relative; /* أو أي أنماط أخرى تحتاجها */
}

.glass-red-button {
    padding: 16px 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 16px;
    color: white;
    border-radius: 10px;
    background-color: rgba(255, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    cursor: pointer;
    text-transform: uppercase;
    margin: 5px 0;
    transition: background-color 0.3s;
}
.glass-red-button:hover {
    background-color: rgba(255, 0, 0, 0.7);
}
.capture-note {
    margin-top: 1px; /* قلل القيمة لتقريب النص من الزر */
    /* باقي الأنماط */
}


.glass-panel {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
    border-radius: 10px; /* Rounded corners */
    backdrop-filter: blur(5px); /* Blur effect for the glassy look */
    -webkit-backdrop-filter: blur(20px);
    padding: 10px; /* Spacing inside the panel */
    margin: 20px auto; /* Centering the panel */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
    color: #fff; /* White text color */
    max-width: 95%; /* Maximum width of the panel */
    width: 800px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes space between children */
    gap: 10px; /* Adds space between child elements */
    
}
.status-container {
    display: flex;
    justify-content: flex-end; /* Puts the status indicator to the right */
    align-items: start; /* Aligns items to the top */
    margin-bottom: 20px; /* يضيف مسافة بين مؤشر الحالة والمحتوى التالي */
}
.status-indicator {
    font-size: 18px;
    display: inline-block; /* Makes the indicator wrap content */
    padding: 5px 10px;
    border-radius: 5px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(20px);
    margin: 5px 0;
    text-align: center;
}

.status-indicator.online {
    font-size: 18px;
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    animation: pulse-green 1.5s infinite;
    margin-right: 20px;
}

.status-indicator.offline {
    font-size: 18px;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    animation: pulse-red 2s infinite;
    margin-right: 20px;
}

.glass-button {
   display: inline-block;
   padding: 24px 32px;
   font-family: 'Montserrat', sans-serif;
   font-weight: bold;
   letter-spacing: 2px;
   font-size: 16px;
   text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
   border-radius: 20px;
   background-color: rgba(255,255,255,0.1);
   border: 1px solid rgba(255,255,255,0.1);
   backdrop-filter: blur(30px);
   -webkit-backdrop-filter: blur(20px);
   width: 15%;
   padding: 10px;
   text-align: center;
   color: rgba(193, 43, 43, 0.8);
   cursor: pointer;
   text-transform: uppercase;
   margin: 5px 0;
   margin-bottom: 0px;
}
.glass-button:hover {
   background-color: rgba(255,255,255,0.2);
}
.server-buttons-container {
    display: flex;
    justify-content: center; /* يضع الأزرار في وسط الحاوية */
    align-items: end; /* Aligns items to the bottom */
    gap: 5px; /* يضيف مسافة بين الأزرار */
}
.server-button {
   display: inline-block;
   padding: 24px 32px;
   font-family: 'Montserrat', sans-serif;
   font-weight: bold;
   letter-spacing: 2px;
   font-size: 16px;
   text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
   border-radius: 20px;
   background-color: rgba(255,255,255,0.1);
   border: 1px solid rgba(255,255,255,0.1);
   backdrop-filter: blur(30px);
   -webkit-backdrop-filter: blur(20px);
   width: 15%;
   padding: 10px;
   text-align: center;
   color: white;
   cursor: pointer;
   text-transform: uppercase;
   margin: 0 10px; /* Space between buttons */
   text-decoration: none; /* Remove underline */
   margin-top: 2px; /* Adds bottom margin to server buttons */
   margin-left: 2px; /* Adds left margin to server buttons */
   margin-bottom: -2px; /* Adds bottom margin to server buttons */
}
.server-button:hover {
   background-color: rgba(255,255,255,0.2);
}

.emoji-button-container {
    position: fixed;
    top: 30px;
    right: 60px;
    z-index: 100;
}
.emoji-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    border-radius: 70%;
    border: none;
    font-size: 40px;
    cursor: pointer;
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
}
.emoji-button:hover {
    background-color: rgba(255,255,255,0.2);
}
button {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    background: rgba(0,0,0,0.25);
    border-radius: 20px;
    border: 2px outset #1C6EA4;
    color: white;
    width:95%; 
    padding: 10px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    text-shadow: 1px 1px black;
    margin: 5px 0;
}
button:hover {
    background: rgba(0,0,0,0.35);
    box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.24);
}
button:active {
    background: rgba(0,0,0,0.45);
}
input, select {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 6px;
    border: 2px outset #1C6EA4;
    padding-left: 10px;
}
.blink_me {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none; /* بدايةً يكون مخفيًا */
    display: none; /* يبقى مخفيًا حتى يتم تشغيله بالجافاسكريبت */
    padding: 10px; /* أو القيمة التي تفضلها للمسافة الداخلية */
    background-color: rgba(255, 0, 0, 0.5); /* لون أحمر شفاف */
    color: white; /* لون النص */
    text-align: center;
    border-radius: 10px; /* حواف مدورة */
    margin: 10px auto; /* تمركز وتوفير مسافة من الأعلى والأسفل */
    -webkit-animation: blinker 1s linear infinite; /* لمتصفحات ويبكيت */
    animation: blinker 1s linear infinite; /* للتأشير */
    max-width: 200px; /* أو القيمة التي تفضلها للعرض الأقصى */
}

.blinking {
    -webkit-animation: blinker 1s linear infinite; /* لمتصفحات ويبكيت مثل سفاري */
    animation: blinker 1s linear infinite; /* للمتصفحات الأخرى */
}

@-webkit-keyframes blinker { 50% { opacity: 0; }  }
@keyframes blinker { 50% { opacity: 0; }  }

@keyframes blinker { 50% { opacity: 0; } }

.pulse_me {
  animation: pulse 2s linear infinite;
}
@keyframes pulse-green {
  0%, 100% {
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 0, 1);
  }
}

@keyframes pulse-red {
  0%, 100% {
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 1);
  }
}
html {
    font-size: 100%; /* Base font size */
}

@media (max-width: 768px) { /* For tablets */
    html {
        font-size: 90%;
    }
}

@media (max-width: 480px) { /* For mobile phones */
    html {
        font-size: 80%;
    }
}