/* ==========================================
   4399 GAME PAGE STYLES
   ========================================== */

.page-4399 {
  height: calc(100% - 60px);
  overflow: hidden;
}

.site-4399 {
  background: #f0f0f0;
  height: 100%;
  overflow-y: auto;
}

.site-4399-header {
  background: linear-gradient(135deg, #ff6b00, #ff9500);
  padding: 15px 20px;
  color: #fff;
  text-align: center;
}
.site-4399-header h1 {
  font-size: 28px;
  font-weight: bold;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}
.site-4399-header h1 small {
  font-size: 14px;
  font-weight: normal;
}
.site-4399-slogan {
  font-size: 12px;
  margin-top: 3px;
  opacity: 0.9;
}

/* ---- Game Grid ---- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 15px;
}
.game-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.game-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.game-card.blur {
  filter: blur(2px);
  opacity: 0.6;
}
.game-card.blur:hover {
  filter: blur(1px);
  opacity: 0.8;
}
.game-card.clear {
  border-color: #ff6b00;
}
.game-icon {
  font-size: 36px;
  margin-bottom: 6px;
}
.game-name {
  font-size: 13px;
  font-weight: bold;
  color: #333;
}
.game-desc {
  font-size: 11px;
  color: #888;
  margin-top: 3px;
}
.game-badge {
  position: absolute;
  top: 5px; right: 5px;
  background: #ff3300;
  color: #fff;
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: bold;
}

/* ---- Game Detail ---- */
.game-detail {
  padding: 15px;
}
.back-link {
  font-size: 12px;
  color: #ff6b00;
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }
.game-detail h2 {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
}
.game-preview {
  margin: 10px 0;
}
.game-preview-screen {
  background: #1a1a2e;
  color: #aaa;
  padding: 40px;
  text-align: center;
  border-radius: 6px;
  border: 2px solid #333;
}
.game-info {
  margin-top: 15px;
  font-size: 13px;
  line-height: 1.8;
}
.game-info h3 {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}
.game-password-hint {
  background: #fffde7;
  border: 1px dashed #f9a825;
  padding: 12px;
  border-radius: 4px;
  margin-top: 10px;
}
.password-text {
  font-size: 16px;
  font-weight: bold;
  color: #e65100;
  margin: 5px 0;
  letter-spacing: 1px;
}

.site-4399-footer {
  text-align: center;
  padding: 10px;
  font-size: 10px;
  color: #aaa;
}
