@font-face {
  font-family: 'ppFont';
  src: url('./font.otf');
}

body {
  font-family: 'ppFont';
  margin: 0;
  padding: 0;
  background-color: #e87e00;
  height: 100vh;
  cursor: default;
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 25px;
  border-bottom: 1.5px solid #000;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  padding: 0 10px;
  z-index: 1000;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25px;
  border-top: 1.5px solid #000;
  background: #d9d9d9;
}

.window {
  position: absolute;
  background: #d9d9d9;
  border: 1.5px solid #000;
  min-width: 300px;
  transform-origin: center;
  animation: expandWindow 0.5s ease-in-out forwards;
  opacity: 0;
}

.window-header {
  border-bottom: 1.5px solid #000;
  background: #d9d9d9;
  padding: 0;
  display: flex;
  position: relative;
  height: 32px;
}

.window-title-container {
  display: flex;
  align-items: center;
  flex-grow: 1;
  cursor: grab;
  padding: 4px;
}

.title-lines {
  margin-top: 4px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.title-line {
  height: 7px;
  border-top: 1.5px solid #000;
}

.window-title {
  min-width: 80px;
  padding: 0 8px;
  text-align: center;
  color: #000;
}

.window-close {
  width: 50px;
  height: 100%;
  border-left: 1.5px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 30px;
}

/* Add this new style for empty close buttons */
.window-close:empty {
  border-left: none;
  width: 0;
}

.window-close:hover {
  background-color: black;
  color: white;
}

.window-content {
  padding: 20px;
  width: 400px;
}

h1 {
  font-size: 60px;
  font-weight: 100;
}

h3 {
  font-size: 20px;
  font-weight: 100;
}

.container {
  line-height: 3px;
}

.play-button {
  width: 400px;
  font-family: 'ppFont';
  font-size: 16px;
  height: 30px;
  background: black;
  color: white;
  border: 1.5px solid black;
  cursor: pointer;
}

.play-button:hover {
  background: white;
  color: black;
}

.profile {
  width: 100%;
}

.alive-circle {
  width: 10px;
  height: 10px;
  background-color: rgb(46, 148, 46);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.status-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Add these styles */
.warning-signs {
  position: fixed;
  top: 90px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 100px;
  gap: 50px;
  white-space: nowrap;
}

.warning-row {
  display: flex;
  gap: 50px;
}

.warning-sign {
  width: 80px;
  height: 80px;
  transition: transform 0.2s;
}

.warning-sign:hover {
  transform: scale(1.1);
}

/* Add these styles */
@keyframes expandWindow {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  70% {
    transform: scaleY(1.02);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Add different delays for each window */
#main-window {
  animation-delay: 0.2s;
}

#info-window {
  animation-delay: 0.8s;
}
