body {
  margin: 0;
  font-family: system-ui;
  color: white;

  background-image: url("مدرييي.gif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.window {
  width: 800px;
  min-height: 700px;
  background: rgba(38, 0, 255, 0.103);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 29px;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid rgba(255, 251, 0, 0.15);
}




.window::-webkit-scrollbar {
  width: 8px;
}

.window::-webkit-scrollbar-track {
  background: transparent;
}

.window::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(38, 0, 255, 0.15),
    rgba(251, 255, 0, 0.2)
  );
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.window::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(251, 255, 0, 0.2),
    rgba(38, 0, 255, 0.15)
  );
}

.window {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.window {
  width: 800px;
  max-height: 75vh;     
  overflow-y: auto;     
  overflow-x: hidden;   
  padding: 30px;
}

.taskbar {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 55px;
  background: rgba(0, 0, 0, 0.226);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  padding: 0 15px;

  z-index: 1000; 
}


.start-btn {
  padding: 8px 22px;
  background: rgba(38, 0, 255, 0.15);
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  border: 1px solid rgba(38, 0, 255, 0.2);
   transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.start-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(251, 255, 0, 0.2);
}
  



.menu {
  position: fixed;
  bottom: 70px;
  left: 15px;
  width: 230px;
  background: rgba(38, 0, 255, 0.1);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 14px;
  display: none;
  border: 1px solid rgba(251, 255, 0, 0.2);
}

.menu div {
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

.menu div:hover {
  background: rgba(217, 255, 0, 0.15);
}

#الخلفيه{
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
z-index: -1;
object-fit: cover;



}


.window {
  animation: windowIn 0.4s ease;
}

@keyframes windowIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.window {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}



.crt {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 99999;

  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.05) 0px,
      rgba(255,255,255,0.05) 1px,
      transparent 2px,
      transparent 4px
    );

  animation: flicker 0.15s infinite;
}


@keyframes flicker {
  0% { opacity: 0.95; }
  50% { opacity: 1; }
  100% { opacity: 0.97; }
}


.clock {
  position: fixed;
  bottom: 15px;
  right: 90px; 
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: bold;
  background: rgba(38, 0, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 12px;
  z-index: 100000;
}



body {
  cursor: none;
}


.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: rgb(38, 0, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}


.cursor-trail {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(217, 255, 0, 0.295);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}



#som{
  position: fixed;

margin-right: 1600px;
margin-top: 690px;
user-select: none;
pointer-events: none;
}


.music-btn {
  position: fixed;
  bottom: 20px;
  right: 20px; 
  width: 55px;
  height: 55px;
  background: rgba(38, 0, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  color: white;
  transition: 0.2s ease;
  z-index: 100000;
}

.music-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(251, 255, 0, 0.2);
}

.music-btn.playing {
  background: rgba(217, 255, 0, 0.438);
  box-shadow: 0 0 20px rgba(217, 255, 0, 0.4);
}

.dev-badge {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(38, 0, 255, 0.15);
  backdrop-filter: blur(8px);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: bold;
  border: 1px solid rgba(38, 0, 255, 0.3);
  z-index: 100000;
}

#hhgg{

width: 750px;


}


.weird-archive {
  display: grid;
  grid-template-columns: repeat(auto-fill, 120px);
  gap: 15px;
  padding: 20px;
}

.archive-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 2px solid #444;
  cursor: pointer;
  transition: 0.2s;
}

.archive-img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.image-viewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.image-viewer img {
  max-width: 80%;
  max-height: 80%;
}

#closeViewer {
  position: absolute;
  top: 30px;
  right: 40px;
  color: rgb(255, 255, 255);
  font-size: 24px;
  cursor: pointer;
}


.archive-window {
  position: absolute;
  top: 120px;
  left: 200px;
  width: 600px;
  height: 400px;
  background:rgba(38, 0, 255, 0.185);
  border: 2px solid rgba(217, 255, 0, 0.4);
  border-radius: 20px;
  display: none;
  z-index: 1000;
}

.archive-header {
  background: rgba(38, 0, 255, 0.103);
  padding: 8px;
  cursor: move;
  display: flex;
  justify-content: space-between;
}

.archive-body {
  position: relative;
  width: 100%;
  height: 100%;
}

.scatter {
  position: absolute;
  width: 120px;
  cursor: pointer;
  transition: 0.2s;
}

.scatter:hover {
  transform: scale(1.1);
}


.img1 { top: 40px; left: 60px; transform: rotate(-5deg); }
.img2 { top: 120px; left: 220px; transform: rotate(8deg); }
.img3 { top: 200px; left: 100px; transform: rotate(-3deg); }
.img4 { top: 80px; left: 400px; transform: rotate(6deg); }
.img5 { top: 220px; left: 350px; transform: rotate(-7deg); }
.desktop-icon {
  position: absolute;
  top: 15px;   
  left: 15px;   
  width: 90px;
  text-align: center;
  cursor: pointer;
}

.icon-img {
  width: 64px;
  height: 64px;
  
}

.desktop-icon span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: white;
}

.desktop-icon:hover {
  transform: scale(1.05);
}

#fried{
float: left;
 width: 250px;



}
#prain{
position: absolute;

  width: 250px;
}
#lab{
  width: 250px;
}
#rec{
  position: absolute;
  
  width: 250px;
  top: 308px;
  
}
#self{
  position: absolute;
  left: 280px;
  bottom: 150px;
  width: 250px;
}
#scott{
  position: absolute;
  left: 530px;
  bottom: 10px;
  width: 250px;
}
#in{
  position: absolute;
  top: 560px;
  width: 250px;
}
#brek{
position: absolute;
left: 280px;
top: 600px;
  width: 250px;
}
#tr{
  position: absolute;
  width: 250px;
  left: 530px;
  top: 700px ;
}
#rrr{
  margin-top: 500px;
}
