.page-news {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-news__hero {
  position: relative;
  background: linear-gradient(135deg, #003366 0%, #0a4d8c 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-news__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
  color: #e0e0e0;
}

.page-news__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-news__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  position: relative;
  z-index: 2;
}

.page-news__btn--primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
}

.page-news__btn--primary:hover {
  background-color: #e6c200;
  color: #001a33;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news__btn--secondary {
  background-color: #003366;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-news__btn--secondary:hover {
  background-color: #001a33;
  color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-news__latest-news {
  padding: 60px 0;
  background-color: #fff;
}

.page-news__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

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

.page-news__article-card {
  background-color: #fcfcfc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-news__article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-news__article-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__article-title {
  font-size: 1.7em;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-news__article-title a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__article-title a:hover {
  color: #FFD700;
}

.page-news__article-meta {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 15px;
}

.page-news__article-excerpt {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__pagination {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.page-news__pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #003366;
  border-radius: 8px;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  background-color: #fff;
}

.page-news__pagination-link:hover {
  background-color: #FFD700;
  color: #003366;
  border-color: #FFD700;
}

.page-news__pagination-link--active {
  background-color: #003366;
  color: #FFD700;
  border-color: #003366;
  cursor: default;
}

.page-news__pagination-link--active:hover {
  background-color: #003366;
  color: #FFD700;
}

.page-news__cta-section {
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-top: 5px solid #FFD700;
  border-bottom: 5px solid #FFD700;
}

.page-news__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-news__responsible-gaming {
  padding: 60px 0;
  background-color: #f4f7f6;
  text-align: center;
}

.page-news__responsible-gaming .page-news__section-title {
  color: #003366;
  font-size: 2em;
}

.page-news__responsible-gaming .page-news__section-description {
  color: #666;
  max-width: 800px;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .page-news__hero-title {
    font-size: 2.8em;
  }
  .page-news__hero-description {
    font-size: 1.1em;
  }
  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__cta-title {
    font-size: 2.5em;
  }
  .page-news__articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-news__hero {
    padding: 80px 0;
  }
  .page-news__hero-title {
    font-size: 2.2em;
  }
  .page-news__hero-description {
    font-size: 1em;
  }
  .page-news__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-news__latest-news, .page-news__cta-section, .page-news__responsible-gaming {
    padding: 40px 0;
  }
  .page-news__section-title {
    font-size: 1.8em;
  }
  .page-news__section-description {
    font-size: 0.95em;
  }
  .page-news__article-title {
    font-size: 1.5em;
  }
  .page-news__cta-title {
    font-size: 2em;
  }
  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news__btn--large {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-news__hero-title {
    font-size: 1.8em;
  }
  .page-news__hero-description {
    font-size: 0.9em;
  }
  .page-news__section-title {
    font-size: 1.5em;
  }
  .page-news__article-title {
    font-size: 1.3em;
  }
  .page-news__article-excerpt {
    font-size: 0.9em;
  }
  .page-news__cta-title {
    font-size: 1.8em;
  }
  .page-news__btn--large {
    width: 90%;
  }
  .page-news__pagination-link {
    min-width: 35px;
    height: 35px;
    font-size: 0.9em;
  }
}