/* style/no-hu.css */
:root {
  --primary-color: #0A2342;
  --secondary-color: #FFD700;
  --accent-color: #DC143C; /* Deep Red for highlights */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f4f7f6;
  --bg-dark: #07172B;
}

.page-no-hu {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.page-no-hu .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-no-hu h1, .page-no-hu h2, .page-no-hu h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}

.page-no-hu h1 {
  font-size: 3.2em;
  color: var(--text-light);
}

.page-no-hu h2 {
  font-size: 2.5em;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-no-hu h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-no-hu p {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.1em;
}

.page-no-hu .text-center {
  text-align: center;
}

.page-no-hu .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: none;
  cursor: pointer;
}

.page-no-hu .cta-button:hover {
  background: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-no-hu .btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-no-hu .btn-small:hover {
  background: var(--accent-color);
}

/* Hero Section */
.page-no-hu .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: var(--primary-color);
  color: var(--text-light);
}

.page-no-hu .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-no-hu .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-no-hu .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-no-hu .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-no-hu .hero-content p {
  color: var(--text-light);
  font-size: 1.2em;
}

/* Intro Section */
.page-no-hu .intro-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-no-hu .intro-section p {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-no-hu .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu .feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-no-hu .feature-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-no-hu .feature-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
}

.page-no-hu .feature-item p {
  font-size: 1em;
  color: var(--text-dark);
  text-align: center;
}

/* Popular Games Section */
.page-no-hu .popular-games-section {
  padding: 60px 0;
  background-color: #eef3f6;
}

.page-no-hu .popular-games-section p {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-no-hu .game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-no-hu .game-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-no-hu .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-no-hu .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-no-hu .game-card .card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-no-hu .game-card h3 {
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: left;
}

.page-no-hu .game-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-no-hu .game-card h3 a:hover {
  color: var(--secondary-color);
}

.page-no-hu .game-card p {
  font-size: 0.95em;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-align: left;
}

/* Tips Section */
.page-no-hu .tips-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-no-hu .tips-section ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-no-hu .tips-section ul li {
  background: #ffffff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1.05em;
  color: var(--text-dark);
}

.page-no-hu .tips-section ul li strong {
  color: var(--primary-color);
}

/* Promotions Section */
.page-no-hu .promotions-section {
  padding: 60px 0;
  background-color: #eef3f6;
}

.page-no-hu .promotions-section p {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-no-hu .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-no-hu .promo-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu .promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-no-hu .promo-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-no-hu .promo-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
}

.page-no-hu .promo-item p {
  font-size: 1em;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-no-hu .faq-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-no-hu .faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-no-hu .faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-no-hu .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-no-hu .faq-question:hover {
  background: #f5f5f5;
  border-color: var(--secondary-color);
}

.page-no-hu .faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: var(--primary-color);
  text-align: left;
}

.page-no-hu .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-no-hu .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.page-no-hu .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0 0 5px 5px;
}

.page-no-hu .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
}

.page-no-hu .faq-answer p {
  margin: 0;
  color: var(--text-dark);
  text-align: left;
  font-size: 1em;
}

/* Final CTA Section */
.page-no-hu .cta-final-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
  color: var(--text-light);
  text-align: center;
}

.page-no-hu .cta-final-section h2 {
  color: var(--secondary-color);
  font-size: 2.8em;
}

.page-no-hu .cta-final-section p {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-no-hu h1 {
    font-size: 2.8em;
  }
  .page-no-hu h2 {
    font-size: 2em;
  }
  .page-no-hu h3 {
    font-size: 1.6em;
  }
  .page-no-hu .hero-section {
    padding: 60px 15px;
  }
  .page-no-hu .intro-section, .page-no-hu .popular-games-section, .page-no-hu .tips-section, .page-no-hu .promotions-section, .page-no-hu .faq-section, .page-no-hu .cta-final-section {
    padding: 40px 0;
  }
  .page-no-hu .features-grid, .page-no-hu .game-cards-grid, .page-no-hu .promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-no-hu .game-card img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-no-hu h1 {
    font-size: 2.2em;
  }
  .page-no-hu h2 {
    font-size: 1.8em;
  }
  .page-no-hu h3 {
    font-size: 1.4em;
  }
  .page-no-hu p {
    font-size: 1em;
  }
  .page-no-hu .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-no-hu .hero-image {
    margin-bottom: 20px;
  }
  .page-no-hu .hero-image img {
    border-radius: 4px;
  }
  .page-no-hu .feature-item, .page-no-hu .game-card, .page-no-hu .promo-item {
    padding: 20px;
  }
  .page-no-hu .game-card img {
    height: 160px;
  }
  .page-no-hu .faq-question {
    padding: 15px 20px;
  }
  .page-no-hu .faq-question h3 {
    font-size: 1em;
  }
  .page-no-hu .faq-toggle {
    font-size: 20px;
  }
  .page-no-hu .faq-answer {
    padding: 0 20px;
  }
  .page-no-hu .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-no-hu .cta-final-section h2 {
    font-size: 2.2em;
  }
  .page-no-hu .cta-final-section p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-no-hu h1 {
    font-size: 1.8em;
  }
  .page-no-hu h2 {
    font-size: 1.6em;
  }
  .page-no-hu h3 {
    font-size: 1.2em;
  }
  .page-no-hu .hero-content p {
    font-size: 1em;
  }
  .page-no-hu .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-no-hu .features-grid, .page-no-hu .game-cards-grid, .page-no-hu .promo-grid {
    grid-template-columns: 1fr;
  }
  .page-no-hu .feature-item img, .page-no-hu .promo-item img {
    max-width: 200px;
  }
  .page-no-hu .tips-section ul li {
    font-size: 0.95em;
    padding: 15px 20px;
  }
  .page-no-hu .cta-final-section h2 {
    font-size: 1.8em;
  }
  .page-no-hu .cta-final-section p {
    font-size: 1em;
  }
}