/* 回放页面通用组件样式 */

/* 页头样式 */
.replay-header {
  background: #f8f9fa;
  color: #333;
  padding: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e9ecef;
  box-shadow: none;
}

.share-info {
  max-width: 800px;
  margin: 0 auto;
}

.friend-share {
  text-align: center;
  margin-bottom: 8px;
}

.share-text {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.8;
  color: #666;
}

.share-text strong {
  font-weight: 600;
  color: #333;
}

.game-info-header {
  text-align: center;
}

.game-info-header h2 {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 600;
  text-shadow: none;
  color: #333;
}

.game-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  opacity: 0.8;
  color: #666;
}

.separator {
  color: rgba(102, 102, 102, 0.6);
}

.result-win {
  color: #28a745;
  font-weight: 600;
}

.result-lose {
  color: #dc3545;
  font-weight: 600;
}

/* 页尾样式 */
.replay-footer {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
  color: #6c757d;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.app-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}

.app-name {
  font-weight: 600;
  color: #495057;
}

.download-hint {
  font-size: 13px;
  color: #6c757d;
}

.download-text strong {
  color: #495057;
  font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .replay-header {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .share-text {
    font-size: 14px;
  }
  
  .game-info-header h2 {
    font-size: 20px;
  }
  
  .game-details {
    font-size: 12px;
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .replay-footer {
    padding: 15px;
    margin-top: 30px;
  }
  
  .app-info {
    font-size: 13px;
  }
  
  .download-hint {
    font-size: 12px;
  }
}

/* 浅色主题适配 */
@media (prefers-color-scheme: light) {
  .replay-footer {
    background: #ffffff;
    border-top-color: #dee2e6;
  }
}

/* 深色主题适配 */
@media (prefers-color-scheme: dark) {
  .replay-footer {
    background: #212529;
    border-top-color: #495057;
    color: #adb5bd;
  }
  
  .app-name {
    color: #f8f9fa;
  }
  
  .download-text strong {
    color: #f8f9fa;
  }
} 