:root{
  --teal: #008080;
  --gray: #c0c0c0;
  --dark: #404040;
  --darker: #202020;
  --light: #ffffff;
  --blue: #26272e;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#desktop {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  all: unset;
  box-sizing: border-box;
  color: #000;
  -webkit-text-fill-color: #000;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  cursor: url("./cursors/pointer.cur"), pointer;
}

html, body {
  cursor: url("./cursors/default.cur"), default;
}

a, button, [role="button"],
.start-btn, .task-btn, .win-btn,
.folder-item, .blog-post-item .planet-tag {
  cursor: url("./cursors/pointer.cur"), pointer !important;
}


input, textarea, .blog-post-body, .forum-textarea, .forum-input {
  cursor: url("./cursors/text.cur"), text !important;
}


.window-titlebar {
  cursor: url("./cursors/move.cur"), move !important;
}


input,
textarea,
.window-content{
  cursor: url("cursors/textselect.cur"), text;
}


.window-titlebar{
  cursor: url("cursors/move.cur"), move;
}

body {
  background-color: black;
  background-image: url(images/background.gif);
  background-repeat: repeat;
  color: white;
  font-family: helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  position: relative;
  -webkit-animation: scrollss 1000s infinite linear; 
  animation: scrollss 1000s infinite linear;
  animation-name: scrollss
  
}
@-webkit-keyframes scrollss {
  from {background-position: 0px 0px;}
  to {background-position: 304px 234px;}
}

@keyframes scrollss {
 from {background-position: 0px 0px;}
  to {background-position: 304px 234px;}
}


#titleimg {
  position: relative;
  -webkit-animation: hover 3.4s infinite linear; 
  animation: hover 3.4s infinite linear;
  animation-name: hover;
}
@-webkit-keyframes hover {
  0% {top: 0px;}
  12.5% {top: 5px;}
  25%{top: 10px;}
  37.5% {top: 15px;}
  50% {top: 17px;}
    62.5% {top: 12px;}
  75% {top: 7px;}
  87.5%{top: 2px;}
  100% {top: 0px;}

}

@keyframes hover {
  0% {top: 0px;}
  12.5% {top: 5px;}
  25%{top: 10px;}
  37.5% {top: 15px;}
  50% {top: 17px;}
    62.5% {top: 12px;}
  75% {top: 7px;}
  87.5%{top: 2px;}
  100% {top: 0px;}
}

.desktop-hint{
  position: fixed;
  left: 12px;
  top: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.35);
  pointer-events: none;
}

.window{
  position: absolute;
  width: 340px;
  height: 400;
  display: none;
  background: var(--gray);
  z-index: 300;
  box-shadow: 1px 1px 0 var(--darker);
  border-top: 2px solid var(--light);
  border-left: 2px solid var(--light);
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);

  box-sizing: border-box;
  flex-direction: column;
}
.window:before{
  content:"";
  position:absolute;
  inset:2px;
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #7a7a7a;
  border-bottom: 1px solid #7a7a7a;
  pointer-events:none;
}

.window-titlebar{
  height: 26px;
  flex: 0 0 26px;
  background: var(--blue);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 6px;
  cursor: move;
  font-weight: bold;
  box-sizing: border-box;
}

.window-title{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 8px;
}

.window-controls{ display:flex; gap:4px; }

.win-btn{
  width: 22px;
  height: 18px;
  line-height: 16px;
  padding: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  font-size: 12px;

  background: var(--gray);
  color: #000;
  -webkit-text-fill-color: #000;

  cursor: url("./cursors/pointer.cur"), pointer;

  border-top: 2px solid var(--light);
  border-left: 2px solid var(--light);
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
}
.win-btn:active{
  border-top: 2px solid var(--dark);
  border-left: 2px solid var(--dark);
  border-right: 2px solid var(--light);
  border-bottom: 2px solid var(--light);
}
.win-btn.close{ font-size: 11px; }

.window-body{
  flex: 1 1 auto;
  margin: 6px;
  min-height: 0;
  background: var(--gray);
  border-top: 2px solid var(--dark);
  border-left: 2px solid var(--dark);
  border-right: 2px solid var(--light);
  border-bottom: 2px solid var(--light);
  padding: 6px;
  box-sizing: border-box;
  display: flex;
}

.window-content{
  flex: 1 1 auto;
  min-height: 0;
  background: #fff;
  color: #000;
  overflow: auto;
  padding: 8px;
  border: 1px solid #000;
  box-sizing: border-box;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  font-size: 13px;
}


.taskbar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  background: var(--gray);
  display:flex;
  align-items:center;
  padding: 0 6px;
  z-index: 100;
  border-top: 2px solid var(--light);
  box-shadow: inset 0 1px 0 #fff;
}
.taskbar-sep{
  width: 2px;
  height: 26px;
  margin: 0 6px;
  background: var(--dark);
  box-shadow: 1px 0 0 #fff;
}
.start-btn{
  height: 30px;
  padding: 0 8px 0 1px;

  display: inline-flex;
  align-items: center;
  gap: 2px;

  font-weight: bold;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  font-size: 13px;

  background: var(--gray);
  color: #000;
  -webkit-text-fill-color: #000;

  cursor: url("./cursors/pointer.cur"), pointer;

  border-top: 2px solid var(--light);
  border-left: 2px solid var(--light);
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
}
.start-btn:active,
.start-btn.active{
  border-top: 2px solid var(--dark);
  border-left: 2px solid var(--dark);
  border-right: 2px solid var(--light);
  border-bottom: 2px solid var(--light);
}
.start-icon{
  width: 30px;
  height: 30px;

}
.taskbar-apps{
  display: flex;
  gap: 6px;
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.task-btn{
  height: 30px;
  padding: 0 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--gray);
  color: #000;
  -webkit-text-fill-color: #000;

  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  font-size: 13px;

  cursor: url("./cursors/pointer.cur"), pointer;

  border-top: 2px solid var(--light);
  border-left: 2px solid var(--light);
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);

  white-space: nowrap;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.task-btn.active{
  border-top: 2px solid var(--dark);
  border-left: 2px solid var(--dark);
  border-right: 2px solid var(--light);
  border-bottom: 2px solid var(--light);
}
.taskbar-tray{ display:flex; align-items:center; gap:8px; }
.clock{
  height: 28px;
  padding: 0 10px;
  display:flex;
  align-items:center;
  background: var(--gray);
  border-top: 2px solid var(--dark);
  border-left: 2px solid var(--dark);
  border-right: 2px solid var(--light);
  border-bottom: 2px solid var(--light);
  font-size: 13px;
  color: #000;
}


.start-menu{
  position: fixed;
  left: 6px;
  bottom: 46px;
  width: 260px;
  height: 220px;
  background: var(--gray);
  display: none;
  z-index: 301;
  border-top: 2px solid var(--light);
  border-left: 2px solid var(--light);
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
  box-shadow: 1px 1px 0 var(--darker);
}
.start-menu-left{
  position:absolute;
  left:0; top:0; bottom:0;
  width:46px;
  background:#7b7b7b;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:10px 6px;
  box-sizing:border-box;
}
.start-menu-brand{
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color:#fff;
  font-weight:bold;
  letter-spacing:0.5px;
}
.start-menu-brand-sub{
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color:#eaeaea;
  font-weight:bold;
  margin-top:6px;
}
.start-menu-right{
  margin-left:46px;
  height:100%;
  display:flex;
  flex-direction:column;
  padding:6px;
  box-sizing:border-box;
  gap:4px;
}

.start-item{
  display: block;
  width: 100%;
  text-align: left;

  padding: 6px 8px;
  background: var(--gray);
  color: #000;
  -webkit-text-fill-color: #000;

  border: none;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;

  cursor: url("./cursors/pointer.cur"), pointer;
}

.start-item:hover,
.start-item:focus{
  background: var(--blue);
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.start-divider{
  height:2px;
  background: var(--dark);
  box-shadow: 0 1px 0 #fff;
  margin:4px 0;
}

.explorer{
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.explorer-toolbar{
  padding: 6px 8px;
  background: var(--gray);
  border-top: 2px solid var(--light);
  border-left: 2px solid var(--light);
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
  box-sizing: border-box;
}

.explorer-path{
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  font-size: 13px;
}

.explorer-list{
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 6px;
  background: #fff;
  border: 1px solid #000;
  box-sizing: border-box;
}

.folder-item{
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 6px 8px;
  margin-bottom: 6px;
  background: #fff;
  cursor: pointer;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  font-size: 14px;
  border: 1px solid #000;
}

.folder-item:hover{
  background: #e9e9e9;
}

.folder-icon{
  width: 18px;
  height: 16px;
  display: inline-block;
  background-image: url("./images/icons/folder.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

}


.explorer-footer{
  padding: 4px 8px;
  font-size: 12px;
  color: #000;
  opacity: 0.85;
}

.explorer-btn{
  height: 26px;
  padding: 0 10px;
  margin-right: 8px;
  background: var(--gray);
  cursor: pointer;
  border-top: 2px solid var(--light);
  border-left: 2px solid var(--light);
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
  font-family: inherit;
}
.explorer-btn:active{
  border-top: 2px solid var(--dark);
  border-left: 2px solid var(--dark);
  border-right: 2px solid var(--light);
  border-bottom: 2px solid var(--light);
}
.explorer-btn:disabled{
  opacity: 0.5;
  cursor: default;
}





/* video player */
.player-wrap{
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.player-screen{
  flex: 1 1 auto;
  min-height: 0;
  border: 2px solid #000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-screen video { object-fit: cover; }



.blog-book{
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
}


.blog-book-header{
  padding: 5px 5px;
  border: 1px solid #000;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
}
.blog-title{
  font-weight: bold;
}
.blog-subtitle{
  font-size: 12px;
  opacity: 0.8;
}

.blog-pages{
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
}


.blog-page{
  flex: 1 1 0;
  min-height: 0;
  background: #f7f2e8;          
  border: 1px solid #000;
  box-shadow: inset 1px 1px 0 #fff;
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}


.blog-page:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.04) 0px,
      rgba(0,0,0,0.04) 1px,
      rgba(255,255,255,0) 2px,
      rgba(255,255,255,0) 6px
    );
  pointer-events:none;
  opacity: 0.25;
}

.blog-left{
  flex: 0 0 auto !important;

  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.blog-right{
  display: flex;
  flex-direction: column;
  min-height: 0; 
}

.blog-page-title{
  font-weight: bold;
  margin-bottom: 0px;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
}


.blog-post-list{
  display: flex;
  gap: 3px;
  margin-bottom: -1px;

  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;    
}

.blog-post-list::-webkit-scrollbar{
  display: none;             
}

.blog-post-item{
  flex: 0 0 auto;
  padding: 6px 12px;
  margin: 0;
  cursor: pointer;
  background: #e8e8e8;
  border: 1px solid #000;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  white-space: nowrap;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
}
.blog-post-item:hover{
  background: rgba(0,0,0,0.06);
}
.blog-post-item.active{
  background: #f7f2e8;
  color: #000;
  position: relative;
  top: 2px;
}
.blog-post-item small{
  display: block;
  font-size: 11px;
  opacity: 0.85;
  margin-top: 2px;
}


.blog-post-header{
  flex: 0 0 auto;
}
.blog-post-title{
  font-weight: bold;
  font-size: 16px;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
}
.blog-post-meta{
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  font-size: 12px;
  opacity: 0.8;
  margin-top: 3px;
}

.blog-post-body{
  flex: 1 1 auto;
  min-height: 0;     
  overflow: auto;
  padding-right: 4px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  line-height: 1.45;
  white-space: normal;
}


.blog-book-footer{
  font-size: 12px;
  opacity: 0.85;
  padding: 0 2px;
}
.blog-book-footer code{
 font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
}
.blog-right{
  flex: 1 1 auto;
  min-height: 0;

  display: flex;
  flex-direction: column;

  border: 1px solid #000;
  background: #f7f2e8;
}


#window2{
  width: 450px;
  height: 480px;
}

#window1{
  width: 300px;
  height: 600px;
}


.player-wrap,
.player-screen,
.player-screen video {
  overflow: hidden;
}





.folder-icon{
  width: 18px;
  height: 16px;
  display: inline-block;
  background-image: url("/images/icons/folder.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  image-rendering: pixelated;
}


.file-item .folder-icon{
  background-image: url("/images/icons/cd.png");
}


.win98-note{
  position: absolute;          
  width: 260px;
  background: #fff2a8;          
  color: #000;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.35);

  border-top: 2px solid #fff7c8;
  border-left: 2px solid #fff7c8;
  border-right: 2px solid #8a7f3a;
  border-bottom: 2px solid #8a7f3a;

  box-sizing: border-box;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
}

.win98-note::before{
  content:"";
  position:absolute;
  inset:2px;
  border-top: 1px solid rgba(255,255,255,0.85);
  border-left: 1px solid rgba(255,255,255,0.85);
  border-right: 1px solid rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(0,0,0,0.25);
  pointer-events:none;
}

.win98-note-titlebar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 6px 8px;
  background: linear-gradient(90deg, #d6c45c, #fff2a8);
  border-bottom: 1px solid rgba(0,0,0,0.35);
  font-weight: bold;
  box-sizing: border-box;
}

.win98-note-title{
  font-size: 13px;
}

.win98-note-pin{
  font-size: 14px;
  opacity: 0.9;
  transform: rotate(-10deg);
}

.win98-note-body{
  padding: 10px 10px 12px 10px;
  box-sizing: border-box;
  line-height: 1.35;
  font-size: 13px;
}


.win98-note-body h1,
.win98-note-body h2,
.win98-note-body h3{
  margin: 0 0 6px 0;
  font-size: 14px;
}

.win98-note-body p{
  margin: 0 0 8px 0;
}



.win98-note-body a{
  color: #000080;
  text-decoration: underline;
}


/* guestbook */
.forum{
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}

.forum-header{
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #000;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.forum-title{ font-weight: bold; }
.forum-sub{ font-size: 12px; opacity: 0.8; }

.forum-form{
  padding: 8px;
  background: var(--gray);
  border-top: 2px solid var(--light);
  border-left: 2px solid var(--light);
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
  box-sizing: border-box;
}

.forum-row{
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.forum-label{
  font-size: 12px;
  opacity: 0.85;
}

.forum-input,
.forum-textarea{
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  font-size: 13px;
  padding: 6px;
  border: 1px solid #000;
  background: #fff;
  box-sizing: border-box;
}

.forum-textarea{
  min-height: 72px;
  resize: vertical;
}

.forum-actions{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.forum-btn{
  height: 28px;
  padding: 0 10px;
  background: var(--gray);
  cursor: pointer;
  border-top: 2px solid var(--light);
  border-left: 2px solid var(--light);
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
  font-family: inherit;
}
.forum-btn:active{
  border-top: 2px solid var(--dark);
  border-left: 2px solid var(--dark);
  border-right: 2px solid var(--light);
  border-bottom: 2px solid var(--light);
}

.forum-list{
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto; 
  padding: 8px;
  border: 1px solid #000;
  background: #fff;
  box-sizing: border-box;
}

.forum-post{
  border: 1px solid #000;
  margin-bottom: 8px;
  background: #f7f7f7;
}

.forum-post-head{
  padding: 6px 8px;
  background: #e9e9e9;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
}

.forum-post-name{ font-weight: bold; }
.forum-post-time{
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  font-size: 12px;
  opacity: 0.85;
  white-space: nowrap;
}

.forum-post-body{
  padding: 8px;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  font-size: 13px;
  white-space: pre-wrap;
  background: #fff;
}

.forum-post-actions{
  padding: 6px 8px;
  border-top: 1px solid #000;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  background: #f7f7f7;
}

.forum-mini-btn{
  height: 24px;
  padding: 0 8px;
  background: var(--gray);
  cursor: pointer;
  border-top: 2px solid var(--light);
  border-left: 2px solid var(--light);
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
  font-family: inherit;
  font-size: 12px;
}
.forum-mini-btn:active{
  border-top: 2px solid var(--dark);
  border-left: 2px solid var(--dark);
  border-right: 2px solid var(--light);
  border-bottom: 2px solid var(--light);
}

.forum-footer{
  font-size: 12px;
  opacity: 0.85;
  padding: 0 2px;
}



#desktop{
  position: relative;
  height: 100vh;
  overflow: visible !important;
}


#solar-layer{
  position: absolute;
  inset: 0;
  z-index: 50;          
  pointer-events: none; 
  overflow: hidden;
}



#sun{
  position: absolute;
  left: 75%;              
  top: 25%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

#sun img{
  width: 120px;         
  height: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(255,200,120,0.8));
}


/* planets */
.planet-link{
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: auto; 
  transform: translate(-50%, -50%);
}

.planet-link img{
  display: block;
  width: var(--planet-size, 80px);
  height: auto;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.25));
}

.planet-link:hover img{
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.65));
  transform: scale(1.06);
}


.planet-link{
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}


.planet-link::after{
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translate(-50%, -100%);
  padding: 4px 8px;
  font-size: 12px;
  white-space: nowrap;

  background: rgba(0,0,0,0.75);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);

  box-shadow: 2px 2px 0 rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;

  
  transition: opacity 120ms ease, transform 180ms ease;
}


.planet-link:hover::after{
  opacity: 1;
  transform: translate(-50%, -115%);
}


#close-all-btn.active{
  border-top: 2px solid var(--dark);
  border-left: 2px solid var(--dark);
  border-right: 2px solid var(--light);
  border-bottom: 2px solid var(--light);
}

	.review {
		  border: 1px solid black;
			border-radius: 5px;
		  display: flex;
		  align-items: center;
			margin-bottom: 7px;
			padding: 0;
			width: 100%;
		}
	.review img {
			width: 120px;
			padding: 10px;
			object-fit: cover;
		}
	.review p {
			  margin: 0;
				font-size: 0.8rem;
			}
	.review h1 {
		font-size: 0.8rem;
		padding: 0;
		margin: 0;
		font-style: normal;
		letter-spacing: 1px;
	}


		.text-container {
	  display: flex;
	  flex-direction: column;
		height: 180px;
		overflow: auto;
		text-align: justify;
		margin-right: 10px;
		padding: 10px;
		padding-top: 5px;
	}


.film-strip {
  position: relative;
  width: 600px;
}

.overlay {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.frame {
  position: absolute;
  object-fit: cover;
  z-index: 1;
}

.frame1 {
  left: 1px;
  top: 15px;
  width: 120px;
  height: 80px;
}

.frame2 {
  left: 120px;
  top: 15px;
  width: 120px;
  height: 80px;
}

.frame3 {
  left: 240px;
  top: 15px;
  width: 120px;
  height: 80px;
}

.frame4 {
  left: 360px;
  top: 15px;
  width: 120px;
  height: 80px;
}

.frame5 {
  left: 480px;
  top: 15px;
  width: 120px;
  height: 80px;
}




/* images */

.imager{
    display:flex;
    flex-direction:column;
    height:100%;
    overflow:hidden;
    font-family:Tahoma,sans-serif;
}


.imager-list{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(90px,1fr));
    gap:14px;
    padding:14px;
    overflow-y:auto;
}

.photo-file{
    display:flex;
    flex-direction:column;
    align-items:center;
    cursor: url("./cursors/pointer.cur"), pointer !important;
    transition:.25s;
}


.photo-file img{
    width:100px;
    height:70px;
    object-fit:cover;

    border:1px solid #333;
    background:black;

    transition:.3s;
}

.photo-file span{
    margin-top:5px;
    font-size:10px;
    color:#000000;
    text-align:center;
}

.post-viewer{
    position:absolute;
    top:-50px;
    left:400px;

    width:420px;
    height:500px;

    background:#0a0a0a;
    border:1px solid #666;
    box-shadow: 1px 1px 0 var(--darker);
    border-top: 2px solid var(--light);
    border-left: 2px solid var(--light);
    border-right: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);

    display:none;
    flex-direction:column;

    box-shadow:0 0 40px rgba(0,0,0,.7);
}

.post-top{
    padding:6px 10px;
    background:#161616;
    border-bottom:1px solid #333;

    font-size:12px;
    color:white;

    display:flex;
    justify-content:space-between;

    cursor: url("cursors/move.cur"), move;
}

.post-top:active{
    cursor: url("cursors/move.cur"), move;
}


.post-content{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
}


.post-comments{
    height:140px;
    background:#111;
    border-top:1px solid #333;
    overflow-y:auto;
    padding:10px;
    font-size:12px;
    color:white;
    scrollbar-width: none;
    -ms-overflow-style: none;
    
}

.post-comments::-webkit-scrollbar {
    display: none;                
}

.comment-box img{
    border:1px solid #333;
}


#mediaContainer img,
#mediaContainer video{
    max-width:100%;
    max-height:100%;
}

.post-top{

    padding:4px 10px;

    background:#161616;

    border-bottom:1px solid #333;

    font-size:12px;
    color:white;

    display:flex;
    justify-content:space-between;
}


.post-content{

    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}


.post-content img{

    max-width:100%;
    max-height:100%;
}


.arrow{

    position:absolute;

    top:50%;
    transform:translateY(-50%);

    width:35px;
    height:35px;

    border:none;

    background:rgba(0,0,0,.3);

    color:white;

    cursor:pointer;
}

.arrow:hover{

    background:rgba(0,0,0,.9);
}

.left-arrow{

left:10px;
}

.right-arrow{

right:10px;
}



.planet-tag {
    position: relative;
    display: inline-block;
}

.planet-tag img {
    transition: filter 0.15s ease, transform 0.15s ease;
    cursor: default;
}

.planet-tag:hover img {
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
    transform: scale(1.2);
}

.planet-tag::after {
    content: attr(data-label);
    position: absolute;
    left: 50%;
    top: -6px;
    transform: translate(-50%, -100%);
    padding: 3px 7px;
    font-size: 11px;
    white-space: nowrap;
    background: rgba(0,0,0,0.75);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 2px 2px 0 rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 120ms ease, transform 180ms ease;
}

.planet-tag:hover::after {
    opacity: 1;
    transform: translate(-50%, -115%);
}

/* BLOG FOLDER VIEW */

.blog-folder-view {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #f7f2e8;
  color: #000;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
}



.blog-file-grid {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 18px;

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 76px));
  grid-auto-rows: minmax(82px, auto);
  gap: 18px 20px;

  align-content: start;
  justify-content: start;

  background: #f7f2e8;
}

.blog-file {
  width: 76px;
  min-height: 82px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  gap: 5px;
  padding: 4px;

  background: transparent;
  border: 1px dotted transparent;

  color: #000;
  -webkit-text-fill-color: #000;

  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  font-size: 11px;
  line-height: 1.15;
  text-align: center;

  cursor: url("./cursors/pointer.cur"), pointer;
}

.blog-file:hover,
.blog-file:focus {
  border: 1px dotted #000;
  background: #dcdcdc;
}

.blog-file img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  image-rendering: pixelated;
  flex: 0 0 auto;
}

.blog-file span {
  display: block;
  max-width: 72px;
  padding: 1px 2px;

  overflow-wrap: anywhere;
  word-break: break-word;

  color: #000;
  -webkit-text-fill-color: #000;
}.blog-file span {
  display: block;
  max-width: 72px;
  padding: 1px 2px;

  overflow-wrap: anywhere;
  word-break: break-word;

  color: #000;
  -webkit-text-fill-color: #000;
}

.blog-file:hover,
.blog-file:focus {
  border: 1px dotted #000;
  background: transparent;
  outline: none;
}

.blog-file:hover span,
.blog-file:focus span {
  background: var(--blue);
  color: #fff;
  -webkit-text-fill-color: #fff;
}


/* TXT WINDOWS */

.blog-txt-window {
  min-width: 280px;
  min-height: 220px;
}

.blog-txt-content {
  padding: 0;
  background: #fff;
  color: #000;
  font-family: "Courier New", monospace;
}

.txt-menu {
  display: flex;
  gap: 16px;
  padding: 4px 8px;
  background: var(--gray);
  border-bottom: 1px solid #888;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  font-size: 12px;
}

.txt-paper {
  padding: 12px;
  height: calc(100% - 25px);
  overflow: auto;
  box-sizing: border-box;
  white-space: normal;
  line-height: 1.45;
  font-size: 13px;
}

.txt-date {
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  font-size: 11px;
  opacity: 0.65;
  margin-bottom: 10px;
  border-bottom: 1px dotted #aaa;
  padding-bottom: 5px;
}

.txt-paper p {
  margin-top: 0;
}

.txt-paper ul {
  margin-top: 0;
  padding-left: 20px;
}

@media (max-width: 700px) {
  .blog-file-grid {
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 12px 8px;
    padding: 10px;
  }

  .blog-file img {
    width: 30px;
    height: 30px;
  }

  .blog-txt-window {
    width: calc(100vw - 20px) !important;
    height: calc(100vh - 80px) !important;
    left: 10px !important;
    top: 10px !important;
  }
}


/* ART FOLDER GRID */

.art-folder-view {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #f7f2e8;
  color: #000;
  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
}

.art-file-grid {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;

  padding: 18px;

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 76px));
  grid-auto-rows: minmax(88px, auto);
  gap: 18px 20px;

  align-content: start;
  justify-content: start;

  background: #f7f2e8;
}

.art-file {
  width: 76px;
  min-height: 88px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  gap: 5px;
  padding: 4px;

  background: transparent;
  border: 1px dotted transparent;

  color: #000;
  -webkit-text-fill-color: #000;

  font-family: "MS Sans Serif", Tahoma, Verdana, Arial, sans-serif;
  font-size: 11px;
  line-height: 1.15;
  text-align: center;

  cursor: url("./cursors/pointer.cur"), pointer;
}

.art-file img {
  width: 42px;
  height: 42px;
  object-fit: cover;

  border: 1px solid #333;
  background: #fff;

  image-rendering: pixelated;
  flex: 0 0 auto;
}

.art-file span {
  display: block;
  max-width: 72px;
  padding: 1px 2px;

  overflow-wrap: anywhere;
  word-break: break-word;

  color: #000;
  -webkit-text-fill-color: #000;
}

.art-file:hover,
.art-file:focus {
  border: 1px dotted #000;
  background: transparent;
  outline: none;
}

.art-file:hover span,
.art-file:focus span {
  background: var(--blue);
  color: #fff;
  -webkit-text-fill-color: #fff;
}



.art-viewer-window {
  min-width: 280px;
  min-height: 220px;
}

.art-viewer-content {
  padding: 0;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.art-viewer-content img,
.art-viewer-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
}



@media (max-width: 700px) {
  .art-file-grid {
    grid-template-columns: repeat(auto-fill, minmax(68px, 68px));
    grid-auto-rows: minmax(82px, auto);
    gap: 14px 14px;
    padding: 12px;
  }

  .art-file {
    width: 68px;
    min-height: 82px;
    font-size: 10px;
  }

  .art-file img {
    width: 38px;
    height: 38px;
  }

  .art-file span {
    max-width: 66px;
  }

}

/* GLOBAL FONT CONSISTENCY */

html,
body,
button,
input,
textarea,
.window,
.window-titlebar,
.window-content,
.start-menu,
.start-item,
.start-btn,
.task-btn,
.win-btn,
.explorer,
.folder-item,
.blog-book,
.blog-page,
.blog-post-item,
.blog-post-title,
.blog-post-meta,
.blog-post-body,
.blog-file,
.art-file,
.forum,
.post-viewer,
.post-top,
.post-comments {
  font-family: Helvetica, Arial, sans-serif !important;
}
