/* ------------------------------
   MAC-STYLE GATEWAY
------------------------------ */

.gateway-page {
  background: #cfcfcf;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Geneva, Chicago, sans-serif;
}

/* Window container */
.window {
  width: 520px;
  max-width: 92vw;
  background: #ffffff;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
}

/* Top bar */
.title-bar {
  background: #e5e5e5;
  border-bottom: 2px solid #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  font-size: 14px;
}

.title {
  font-weight: bold;
}

/* Fake buttons */
.window-controls {
  display: flex;
  gap: 6px;
}

.btn {
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  background: #fff;
}

/* Content area */
.window-content {
  padding: 40px 30px;
  text-align: center;
}

/* Text */
.window-content p {
  margin: 0 0 14px;
  font-size: 14px;
}

/* Link */


.enter-link {
  display: inline-block;
  margin-top: 30px;
  text-decoration: underline;
  color: #000;
  cursor: pointer;
}

.enter-link:hover {
  background: #000;
  color: #fff;
}

.enter-link:hover {
  cursor: url("https://www.rw-designer.com/cursor-view/243065.png") 16 16, pointer;
}