/* fortune slots v2 - 全新橙红色+深蓝色主题 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-orange: #FF6B35;
  --primary-blue: #004E89;
  --accent-red: #E63946;
  --accent-gold: #FFB703;
  --dark-bg: #1A1A2E;
  --light-bg: #F7F7F7;
  --text-dark: #2B2D42;
  --text-light: #FFFFFF;
  --border-color: #DDDDDD;
}

body {
  font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--light-bg);
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
  padding: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1.05rem;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.cta-button {
  background-color: var(--accent-red);
  color: var(--text-light);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(230, 57, 70, 0.3);
}

.cta-button:hover {
  background-color: #D62839;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(230, 57, 70, 0.4);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .nav-links.active {
    display: flex;
  }
}

/* Hero Section */
.hero {
  background: url('../images/hero-banner.webp') center/cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: var(--text-light);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,78,137,0.85) 0%, rgba(255,107,53,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), var(--accent-red));
  border-radius: 2px;
}

/* Game Cards */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.game-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255,107,53,0.25);
}

.game-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.game-info {
  padding: 1.8rem;
}

.game-info h3 {
  font-size: 1.6rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.game-info p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.game-link {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-red));
  color: var(--text-light);
  padding: 0.7rem 1.8rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.game-link:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}

/* Info Sections */
.info-section {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-section h2 {
  color: var(--primary-blue);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid var(--primary-orange);
  padding-left: 1.5rem;
}

.info-section h3 {
  color: var(--primary-orange);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.info-section ul {
  list-style: none;
  padding-left: 0;
}

.info-section li {
  padding: 0.7rem 0;
  padding-left: 2rem;
  position: relative;
}

.info-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Payment Methods */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.payment-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.payment-item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.payment-item img {
  max-width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

/* FAQ */
.faq-item {
  background: white;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-orange);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  margin-top: 1rem;
  color: #555;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-orange);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.review-rating {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.review-location {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.review-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-date {
  color: #999;
  font-size: 0.85rem;
  text-align: right;
}

/* Footer */
footer {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 3rem 2rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #CCC;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #AAA;
  font-size: 0.9rem;
}

.age-restriction {
  display: inline-block;
  background: var(--accent-red);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 1rem;
}

/* Breadcrumb */
.breadcrumb {
  background: white;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.breadcrumb a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-orange);
}

.breadcrumb span {
  color: #777;
  margin: 0 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 2rem 1rem;
  }
  
  .info-section {
    padding: 2rem 1.5rem;
  }
}
