/* iframe 专用样式 - 只修改布局，不影响游戏核心样式 */
.iframe-mode {
  margin: 10px 0;
  padding: 0;
  font-size: 16px;
  /* 保持原始背景 */
}

.iframe-container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
}

/* 紧凑的标题区域 */
.iframe-mode .heading {
  margin-bottom: 15px;
}

.iframe-mode h1.title {
  font-size: 60px;
  margin: 0;
}

.iframe-mode .scores-container {
  margin-top: 5px;
}

.iframe-mode .score-container,
.iframe-mode .best-container {
  font-size: 20px;
  padding: 10px 20px;
  margin-top: 5px;
}

/* 游戏区域调整 - 只修改间距 */
.iframe-mode .above-game {
  margin-bottom: 15px;
}

.iframe-mode .game-intro {
  font-size: 16px;
  margin-bottom: 0;
}

/* 不覆盖游戏容器的尺寸和背景 */
.iframe-mode .game-container {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* 简化说明文字 */
.iframe-mode .game-explanation {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  text-align: center;
}

/* iframe 底部链接 */
.iframe-footer {
  text-align: center;
  margin-top: 15px;
  padding: 10px;
  background: #eee4da;
  border: 1px solid #bbada0;
  border-radius: 3px;
}

.iframe-footer a {
  color: #776e65;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

.iframe-footer a:hover {
  text-decoration: underline;
  color: #8f7a66;
}

/* 响应式设计 - 小尺寸 iframe */
@media screen and (max-width: 520px) {
  .iframe-container {
    width: 100%;
    padding: 5px;
  }
  
  .iframe-mode h1.title {
    font-size: 40px;
  }
  
  .iframe-mode .score-container,
  .iframe-mode .best-container {
    font-size: 16px;
    padding: 8px 15px;
    min-width: 30px;
  }
  
  /* 让游戏容器使用原始的响应式样式 */
  .iframe-mode .game-container {
    margin: 15px auto;
  }
  
  .iframe-mode .game-intro {
    font-size: 14px;
  }
  
  .iframe-mode .restart-button {
    padding: 0 15px;
    font-size: 14px;
  }
}

/* 超小尺寸 iframe */
@media screen and (max-width: 320px) {
  .iframe-mode .heading {
    text-align: center;
  }
  
  .iframe-mode .scores-container {
    float: none;
    text-align: center;
    margin-top: 10px;
  }
  
  .iframe-mode .above-game {
    text-align: center;
  }
  
  .iframe-mode .game-intro {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .iframe-mode .restart-button {
    float: none;
    display: inline-block;
  }
}

/* 隐藏不必要的元素以保持简洁 */
.iframe-mode .game-features,
.iframe-mode .game-faq {
  display: none;
} 