<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('../assets/bg_index_page.jpg') center center / cover no-repeat;
  background-color: #000;
  color: white;
}
	  header img {
      width: 80px;
      height: 60px;
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 40px;
      background-color: #15122e;
      border-bottom: 1px solid #333;
    }
    .logo {
      font-weight: bold;
      font-size: 60px;
      color: #00ffd5;
    }
    .auth-buttons button {
      margin-left: 10px;
      padding: 6px 12px;
      background-color: #00ffd5;
      border: none;
      border-radius: 4px;
      color: #000;
      font-weight: bold;
      cursor: pointer;
    }
    main {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 60px;
    }
    .popup {
		background: url('../assets/bg_index_page.jpg') center center/auto no-repeat;
		border-radius: 15px;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border: 1px solid #00ffd5;
      padding: 60px;
      display: none;
      z-index: 999;
    }
    .popup input {
      display: block;
		border-radius: 10px;
      margin: 10px 0;
      padding: 8px;
      width: 100%;
    }
    .popup button {
      background-color: #00ffd5;
		border-radius: 8px;
      border: none;
      padding: 8px 12px;
      cursor: pointer;
    }
    .popup .close-btn {
      background: transparent;
      color: #00ffd5;
      font-weight: bold;
      float: right;
      border: none;
      font-size: 16px;
      cursor: pointer;
    }
    #welcome {
      margin-right: 20px;
      font-weight: bold;
      color: #00ffd5;
    }
	   .room-list {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
		box-sizing: border-box;   
      max-width: 100%;
      margin: 0 auto;
		padding: 0 10px;   
    }
    form {
      width: 98%;
    }
    .room-button {
		background: url('../assets/bg_room_list.jpg') center center/auto no-repeat;
		box-shadow: -1px 0px 18px 3px #d027d3;
      width: 100%;
      padding: 22px;
		margin: 10px;
      border: 1px solid #00ffd5;
      border-radius: 25px;
      font-size: 1.1em;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;     
      color: #00ffd5;
      transition: 0.2s;
    }
    .room-button:hover {
      background: #6c1fb5;
    }
    .room-button[disabled] {
      opacity: 0.4;
      cursor: not-allowed;
    }

.room-entry {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.room-icon {
  font-size: 18px;
}

.user-count {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 17px;
  font-weight: bold;
  color: #ffffff;
}

.user-count img {
  width: 22px;
  height: 22px;
}

.room-button[disabled] {
  background-color: #444;
  color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.room-button .guest-blocked {
  color: #ff6666;
  font-size: 14px;
  margin-top: 6px;
  display: block;
}
.room-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-image {
  width: 70px;          /* dimensione fissa */
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
	border: 1px solid #00ffd5;
  flex-shrink: 0;
}

.room-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-title {
  font-weight: bold;
  color: white;
  font-size: 1rem;
}

.room-description {
  font-style: italic;
  color: #ccc;
  font-size: 0.85rem;
}
</pre></body></html>