.page-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-news__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-news__main-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Gold color for emphasis */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-news__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-news__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-news__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-news__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-news__latest-articles-section {
  background: #121212;
  color: #f0f0f0;
}

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

.page-news__article-card {
  background: #1A1A1A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  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.6);
}

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

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

.page-news__article-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news__article-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-news__article-excerpt {
  font-size: 0.95em;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-news__article-date {
  font-size: 0.85em;
  color: #888888;
  margin-top: auto;
}

.page-news__load-more {
  text-align: center;
  margin-top: 50px;
}

.page-news__load-more-button {
  background: #FFD700;
  color: #1A1A1A;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-news__load-more-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

.page-news__categories-section {
  background: #1A1A1A;
  color: #f0f0f0;
}

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

.page-news__category-card {
  background: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.page-news__category-title {
  font-size: 1.3em;
  font-weight: 600;
  margin: 15px 0 10px;
}

.page-news__category-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__category-title a:hover {
  color: #e6c200;
}

.page-news__category-description {
  font-size: 0.9em;
  color: #cccccc;
  padding: 0 15px 20px;
  line-height: 1.5;
}

.page-news__analysis-section {
  background: #121212;
  color: #f0f0f0;
}

.page-news__analysis-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-news__analysis-text {
  flex: 2;
}

.page-news__analysis-text h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-news__analysis-text p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-news__analysis-text ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-news__analysis-text ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-news__analysis-text ul li strong {
  color: #FFD700;
}

.page-news__analysis-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-news__analysis-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-news__btn-primary {
  background: #FFD700;
  color: #1A1A1A;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.page-news__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

.page-news__responsible-gaming-section {
  background: #1A1A1A;
  color: #f0f0f0;
}

.page-news__responsible-gaming-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-news__responsible-gaming-image {
  flex: 1;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-news__responsible-gaming-text {
  flex: 2;
}

.page-news__responsible-gaming-text h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-news__responsible-gaming-text p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-news__btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.page-news__btn-secondary:hover {
  background: #FFD700;
  color: #1A1A1A;
}

.page-news__newsletter-section {
  background: #121212;
  color: #f0f0f0;
  text-align: center;
}

.page-news__newsletter-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-news__newsletter-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-news__newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 600px;
}

.page-news__newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  border: 1px solid #FFD700;
  border-radius: 8px;
  font-size: 1em;
  background: #2a2a2a;
  color: #f0f0f0;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-news__newsletter-input::placeholder {
  color: #888888;
}

.page-news__newsletter-input:focus {
  border-color: #e6c200;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

/* General text color for page */
.page-news {
  color: #f0f0f0;
}

.page-news__card {
  background: #1A1A1A;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news__main-title {
    font-size: 3em;
  }

  .page-news__hero-description {
    font-size: 1.2em;
  }

  .page-news__section-title {
    font-size: 2em;
  }

  .page-news__analysis-content, .page-news__responsible-gaming-content {
    flex-direction: column;
    align-items: center;
  }

  .page-news__analysis-image-wrapper, .page-news__responsible-gaming-image {
    order: -1; /* Image first on mobile */
    margin-bottom: 30px;
  }

  .page-news__analysis-text, .page-news__responsible-gaming-text {
    text-align: center;
  }

  .page-news__analysis-text ul {
    text-align: left;
    margin: 0 auto 20px;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-news__hero-container {
    padding: 0 15px;
  }

  .page-news__main-title {
    font-size: 2.5em;
  }

  .page-news__hero-description {
    font-size: 1em;
  }

  .page-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-news__container {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-news__section-title {
    font-size: 1.8em;
  }

  .page-news__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-news__articles-grid, .page-news__categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news__article-card, .page-news__category-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-news__article-image, .page-news__category-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news__article-title {
    font-size: 1.2em;
  }

  .page-news__analysis-text h3, .page-news__responsible-gaming-text h3 {
    font-size: 1.5em;
  }

  .page-news__analysis-text p, .page-news__responsible-gaming-text p {
    font-size: 1em;
  }

  .page-news__analysis-image-wrapper, .page-news__responsible-gaming-image, .page-news__newsletter-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0;
    margin-right: 0;
  }

  .page-news__newsletter-form {
    flex-direction: column;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-news__newsletter-input {
    min-width: unset;
    width: 100%;
  }

  .page-news__btn-primary, .page-news__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}