/* style/news-platform-update.css */

/* Base Styles */
.page-news-platform-update {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Assuming body background is dark */
}

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

.page-news-platform-update__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-news-platform-update__sub-title {
  font-size: 28px;
  font-weight: 600;
  color: #f0f0f0;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 25px;
}

.page-news-platform-update__text-block {
  font-size: 17px;
  margin-bottom: 25px;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-platform-update__text-block strong {
  color: #FFD700;
}

/* Buttons */
.page-news-platform-update__btn-primary {
  display: inline-block;
  background: #FFD700;
  color: #000000; /* Dark text for gold background */
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-news-platform-update__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-news-platform-update__btn-secondary {
  display: inline-block;
  background: none;
  color: #FFD700; /* Gold text for dark background */
  padding: 10px 25px;
  border: 2px solid #FFD700;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-news-platform-update__btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-2px);
}

/* Images */
.page-news-platform-update img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* HERO Section */
.page-news-platform-update__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px; /* Fixed navigation bar spacing */
  margin-top: 0;
}

.page-news-platform-update__hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.page-news-platform-update__hero-image {
  width: 100%;
  margin: 0;
}

.page-news-platform-update__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* LOGO Carousel Section */
.page-news-platform-update__logo-carousel-section {
  width: 100%;
  padding: 30px 20px;
  background: #0a0a0a;
}

.page-news-platform-update__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-news-platform-update__logo-carousel {
  display: flex;
  gap: 15px;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.page-news-platform-update__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-news-platform-update__logo-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
}

.page-news-platform-update__logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 8px rgba(255, 215, 0, 0.2);
}

.page-news-platform-update__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  pointer-events: auto;
}

.page-news-platform-update__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Game Showcase Section */
.page-news-platform-update__games-section {
  width: 100%;
  padding: 60px 20px;
  background: #000000;
}

.page-news-platform-update__games-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-news-platform-update__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.page-news-platform-update__featured-game-area {
  width: 100%;
}

.page-news-platform-update__featured-game-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #FFD700;
  text-align: left;
}

.page-news-platform-update__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid #333333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-platform-update__featured-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.page-news-platform-update__featured-game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-news-platform-update__featured-game-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.page-news-platform-update__featured-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news-platform-update__games-grid-area {
  width: 100%;
}

.page-news-platform-update__games-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: flex-start;
}

.page-news-platform-update__games-tab {
  background: none;
  border: none;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #666666;
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.page-news-platform-update__games-tab:hover {
  color: #FFD700;
}

.page-news-platform-update__games-tab.active {
  color: #FFD700;
  text-decoration: underline;
}

.page-news-platform-update__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none;
}

.page-news-platform-update__games-grid.active {
  display: grid;
}

.page-news-platform-update__game-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid #333333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-platform-update__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-news-platform-update__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-news-platform-update__game-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.page-news-platform-update__game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news-platform-update__game-card-title {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 15px 0;
  padding: 0 5px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* Module 1: Platform Introduction */
.page-news-platform-update__intro-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.page-news-platform-update__dark-bg .page-news-platform-update__text-block {
  color: #e0e0e0;
}

.page-news-platform-update__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-news-platform-update__feature-item {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333333;
}

.page-news-platform-update__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news-platform-update__feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-news-platform-update__feature-item p {
  font-size: 16px;
  color: #cccccc;
}

/* Module 2: Quick Access Links */
.page-news-platform-update__quick-access-section {
  padding: 80px 0;
  background: #000000;
}

.page-news-platform-update__access-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-news-platform-update__access-btn {
  display: block;
  background: #2a2a2a;
  color: #FFD700;
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #444444;
}

.page-news-platform-update__access-btn:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

/* Module 3: Core Games/Services Introduction */
.page-news-platform-update__core-games-section {
  padding: 80px 0;
  background: #0a0a0a;
}

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

.page-news-platform-update__game-category-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 25px;
}

.page-news-platform-update__game-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news-platform-update__game-category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-news-platform-update__game-category-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-news-platform-update__game-category-card p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 25px;
  padding: 0 20px;
  flex-grow: 1;
}

/* Module 4: Promotions */
.page-news-platform-update__promotions-section {
  padding: 80px 0;
  background: #000000;
}

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

.page-news-platform-update__promo-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333333;
  text-align: center;
  padding-bottom: 30px;
}

.page-news-platform-update__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news-platform-update__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 25px;
}

.page-news-platform-update__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-news-platform-update__promo-card p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 30px;
  padding: 0 20px;
}

/* Module 5: Security & Customer Service */
.page-news-platform-update__security-cs-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.page-news-platform-update__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-news-platform-update__security-item {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333333;
}

.page-news-platform-update__security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news-platform-update__security-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: invert(100%) brightness(150%) saturate(150%) hue-rotate(30deg); /* Adjust icon color to gold */
}

.page-news-platform-update__security-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-news-platform-update__security-item p {
  font-size: 16px;
  color: #cccccc;
}

.page-news-platform-update__contact-btn {
  margin-top: 50px;
}

/* Module 6: FAQ */
.page-news-platform-update__faq-section {
  padding: 80px 0;
  background: #000000;
}

.page-news-platform-update__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-news-platform-update__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333333;
}

.page-news-platform-update__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1a1a1a;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-news-platform-update__faq-question:hover {
  background: #2a2a2a;
}

.page-news-platform-update__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-news-platform-update__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-news-platform-update__faq-item.active .page-news-platform-update__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg);
}

.page-news-platform-update__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #121212;
}

.page-news-platform-update__faq-item.active .page-news-platform-update__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid #333333;
}

.page-news-platform-update__faq-answer p {
  margin: 0;
  font-size: 16px;
  color: #cccccc;
  text-align: left;
}

/* Module 7: Latest Blog Content */
.page-news-platform-update__blog-section {
  padding: 80px 0;
  background: #0a0a0a;
}

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

.page-news-platform-update__blog-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333333;
}

.page-news-platform-update__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news-platform-update__blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-news-platform-update__blog-content {
  padding: 20px;
}

.page-news-platform-update__blog-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

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

.page-news-platform-update__blog-title a:hover {
  color: #e6c200;
}

.page-news-platform-update__blog-excerpt {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.page-news-platform-update__blog-date {
  font-size: 14px;
  color: #999999;
  display: block;
}

.page-news-platform-update__view-all-btn-wrapper {
  text-align: center;
  margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-platform-update__section-title {
    font-size: 32px;
  }
  .page-news-platform-update__sub-title {
    font-size: 24px;
  }
  .page-news-platform-update__text-block {
    font-size: 16px;
  }
  .page-news-platform-update__games-layout {
    grid-template-columns: 1fr;
  }
  .page-news-platform-update__featured-game-image {
    height: 400px;
  }
  .page-news-platform-update__games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-news-platform-update__game-card-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-news-platform-update {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-news-platform-update__hero-section {
    padding-top: 10px; 
  }
  .page-news-platform-update__logo-carousel-section {
    padding: 20px 15px;
  }
  .page-news-platform-update__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
  }
  .page-news-platform-update__logo-carousel {
    gap: 12px;
  }
  .page-news-platform-update__logo-item a {
    padding: 8px;
  }
  .page-news-platform-update__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-news-platform-update__sub-title {
    font-size: 22px;
    margin-top: 40px;
  }
  .page-news-platform-update__text-block {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .page-news-platform-update__games-section,
  .page-news-platform-update__intro-section,
  .page-news-platform-update__quick-access-section,
  .page-news-platform-update__core-games-section,
  .page-news-platform-update__promotions-section,
  .page-news-platform-update__security-cs-section,
  .page-news-platform-update__faq-section,
  .page-news-platform-update__blog-section {
    padding: 40px 0;
  }
  .page-news-platform-update__container {
    padding: 0 15px;
  }
  .page-news-platform-update__games-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news-platform-update__featured-game-title {
    font-size: 24px;
    text-align: center;
  }
  .page-news-platform-update__featured-game-image {
    height: 300px;
  }
  .page-news-platform-update__games-tabs {
    justify-content: center;
    gap: 15px;
  }
  .page-news-platform-update__games-tab {
    font-size: 18px;
  }
  .page-news-platform-update__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .page-news-platform-update__game-card-image {
    height: 150px;
  }
  .page-news-platform-update__game-card-title {
    font-size: 13px;
    margin: 8px 0 12px 0;
    padding: 0 3px;
  }
  .page-news-platform-update__feature-grid,
  .page-news-platform-update__access-links-grid,
  .page-news-platform-update__game-categories-grid,
  .page-news-platform-update__promo-grid,
  .page-news-platform-update__security-grid,
  .page-news-platform-update__blog-grid {
    gap: 20px;
  }
  .page-news-platform-update__feature-item,
  .page-news-platform-update__security-item {
    padding: 25px;
  }
  .page-news-platform-update__feature-title,
  .page-news-platform-update__security-title {
    font-size: 20px;
  }
  .page-news-platform-update__game-category-title,
  .page-news-platform-update__promo-title,
  .page-news-platform-update__blog-title {
    font-size: 18px;
  }
  .page-news-platform-update__game-category-card img,
  .page-news-platform-update__promo-card img,
  .page-news-platform-update__blog-card img {
    height: 180px;
  }
  .page-news-platform-update__faq-question {
    padding: 15px 20px;
  }
  .page-news-platform-update__faq-question h3 {
    font-size: 16px;
  }
  .page-news-platform-update__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-news-platform-update__faq-answer {
    padding: 0 20px;
  }
  .page-news-platform-update__faq-item.active .page-news-platform-update__faq-answer {
    padding: 15px 20px !important;
  }
  .page-news-platform-update__btn-primary,
  .page-news-platform-update__btn-secondary {
    font-size: 15px;
    padding: 10px 20px;
  }
  .page-news-platform-update__contact-btn,
  .page-news-platform-update__view-all-btn-wrapper {
    margin-top: 40px;
  }
  /* Universal image responsive for mobile */
  .page-news-platform-update img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-news-platform-update__section,
  .page-news-platform-update__card,
  .page-news-platform-update__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-news-platform-update__section-title {
    font-size: 24px;
  }
  .page-news-platform-update__featured-game-image {
    height: 250px;
  }
  .page-news-platform-update__games-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-news-platform-update__games-tab {
    font-size: 16px;
    padding: 5px 10px;
  }
  .page-news-platform-update__games-grid {
    grid-template-columns: 1fr;
  }
  .page-news-platform-update__game-card-image {
    height: 180px;
  }
  .page-news-platform-update__feature-grid,
  .page-news-platform-update__access-links-grid,
  .page-news-platform-update__game-categories-grid,
  .page-news-platform-update__promo-grid,
  .page-news-platform-update__security-grid,
  .page-news-platform-update__blog-grid {
    grid-template-columns: 1fr;
  }
  .page-news-platform-update__security-item img {
    width: 80px;
    height: 80px;
  }
  .page-news-platform-update__faq-question h3 {
    font-size: 15px;
  }
  .page-news-platform-update__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
  .page-news-platform-update__btn-primary,
  .page-news-platform-update__btn-secondary {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}