.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: #F3F8FF;
  background-color: var(--deep-navy-color, #08162B);
}

.page-no-hu__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-no-hu__section-title {
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E;
  line-height: 1.2;
}

.page-no-hu__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #AFC4E8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-play {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  border: 2px solid transparent;
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-no-hu__btn-secondary {
  background: transparent;
  color: #F3F8FF;
  border: 2px solid #1D5FD1;
}

.page-no-hu__btn-secondary:hover {
  background: #1D5FD1;
  color: #F3F8FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-no-hu__btn-play {
    background: #F2C14E;
    color: #113B7A;
    border: none;
    padding: 10px 20px;
    font-size: 0.95em;
    font-weight: 600;
    border-radius: 5px;
}

.page-no-hu__btn-play:hover {
    background: #e0b040;
    transform: translateY(-1px);
}

.page-no-hu__hero-section {
  padding-top: 10px;
  padding-bottom: 80px;
  background-color: var(--deep-navy-color, #08162B);
}

.page-no-hu__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 16px;
  gap: 40px;
}

.page-no-hu__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
}

.page-no-hu__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 800;
  margin-bottom: 20px;
  color: #F2C14E;
  line-height: 1.2;
}

.page-no-hu__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #AFC4E8;
  line-height: 1.6;
}

.page-no-hu__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-no-hu__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-no-hu__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: block;
}

.page-no-hu__intro-section {
    padding: 80px 0;
    background-color: #10233F;
}

.page-no-hu__dark-section {
    background-color: #10233F;
}

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

.page-no-hu__feature-item {
  background-color: var(--deep-navy-color, #08162B);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-no-hu__feature-item:hover {
  transform: translateY(-5px);
}

.page-no-hu__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #1D5FD1;
  box-shadow: 0 0 15px rgba(29, 95, 209, 0.6);
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-no-hu__feature-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #F2C14E;
}

.page-no-hu__feature-text {
  font-size: 1em;
  color: #AFC4E8;
  line-height: 1.6;
}

.page-no-hu__game-showcase-section {
    padding: 80px 0;
    background-color: var(--deep-navy-color, #08162B);
}

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

.page-no-hu__game-card {
  background-color: #10233F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-no-hu__game-card:hover {
  transform: translateY(-5px);
}

.page-no-hu__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.page-no-hu__game-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #F2C14E;
}

.page-no-hu__game-provider {
  font-size: 0.9em;
  color: #AFC4E8;
  margin-bottom: 15px;
}

.page-no-hu__view-all-games {
  text-align: center;
  margin-top: 60px;
}

.page-no-hu__promo-section {
    padding: 80px 0;
    background-color: #10233F;
}

.page-no-hu__promo-card {
  background-color: var(--deep-navy-color, #08162B);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.page-no-hu__promo-card img {
  flex: 1 1 400px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-no-hu__promo-content {
  flex: 1 1 400px;
  padding: 30px;
}

.page-no-hu__promo-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #F2C14E;
}

.page-no-hu__promo-text {
  font-size: 1.1em;
  color: #AFC4E8;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-no-hu__guide-section {
    padding: 80px 0;
    background-color: var(--deep-navy-color, #08162B);
}

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

.page-no-hu__guide-item {
  background-color: #10233F;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
}

.page-no-hu__guide-step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1D5FD1;
  color: #F3F8FF;
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(29, 95, 209, 0.6);
}

.page-no-hu__guide-item-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #F2C14E;
}

.page-no-hu__guide-item-text {
  font-size: 1em;
  color: #AFC4E8;
  line-height: 1.6;
}

.page-no-hu__guide-cta {
  text-align: center;
  margin-top: 60px;
}