/* Base styles for the page */.page-nustar-cebu-opening {  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;  color: #e0e0e0;  background-color: #1a1a2e; /* Dark background */  line-height: 1.6;}.page-nustar-cebu-opening__container {  max-width: 1200px;  margin: 0 auto;  padding: 20px 15px;  box-sizing: border-box;}.page-nustar-cebu-opening__section-title {  font-size: 2.5em;  color: #ffcc00; /* Gold accent */  text-align: center;  margin-bottom: 40px;  position: relative;  padding-bottom: 10px;}.page-nustar-cebu-opening__section-title::after {  content: '';  position: absolute;  left: 50%;  bottom: 0;  transform: translateX(-50%);  width: 80px;  height: 3px;  background-color: #ffcc00;}.page-nustar-cebu-opening__text-content {  font-size: 1.1em;  text-align: center;  margin-bottom: 20px;  max-width: 800px;  margin-left: auto;  margin-right: auto;}.page-nustar-cebu-opening__button {  display: inline-block;  padding: 12px 25px;  border-radius: 5px;  text-decoration: none;  font-weight: bold;  transition: background-color 0.3s ease, transform 0.3s ease;  font-size: 1em;  text-align: center;  border: none;  cursor: pointer;}.page-nustar-cebu-opening__button--primary {  background-color: #ffcc00; /* Gold */  color: #1a1a2e;}.page-nustar-cebu-opening__button--primary:hover {  background-color: #e6b800;  transform: translateY(-2px);}.page-nustar-cebu-opening__button--secondary {  background-color: #3f51b5; /* Blue */  color: #ffffff;}.page-nustar-cebu-opening__button--secondary:hover {  background-color: #303f9f;  transform: translateY(-2px);}.page-nustar-cebu-opening__button--small {  padding: 8px 15px;  font-size: 0.9em;}/* Hero Section */.page-nustar-cebu-opening__hero-section {  position: relative;  width: 100%;  min-height: 600px;  display: flex;  align-items: center;  justify-content: center;  text-align: center;  color: #ffffff;  overflow: hidden;  padding-top: 10px; /* Small padding top for visual separation from header */}.page-nustar-cebu-opening__hero-image {  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  object-fit: cover;  z-index: 1;}.page-nustar-cebu-opening__hero-overlay {  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  background: rgba(0, 0, 0, 0.6);  z-index: 2;}.page-nustar-cebu-opening__hero-content {  position: relative;  z-index: 3;  max-width: 900px;  padding: 20px;}.page-nustar-cebu-opening__hero-title {  font-size: 3.5em;  margin-bottom: 20px;  line-height: 1.2;  color: #ffcc00;}.page-nustar-cebu-opening__hero-subtitle {  font-size: 1.5em;  margin-bottom: 30px;}.page-nustar-cebu-opening__hero-cta-buttons {  display: flex;  gap: 20px;  justify-content: center;}/* Introduction Section */.page-nustar-cebu-opening__introduction-section {  padding: 60px 0;  background-color: #1a1a2e;}/* Quick Access Section */.page-nustar-cebu-opening__quick-access-section {  padding: 60px 0;  background-color: #24243e;}.page-nustar-cebu-opening__access-grid {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));  gap: 30px;  margin-top: 40px;}.page-nustar-cebu-opening__access-card {  background-color: #1a1a2e;  border-radius: 10px;  padding: 25px;  text-align: center;  text-decoration: none;  color: #e0e0e0;  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);  transition: transform 0.3s ease, box-shadow 0.3s ease;  display: flex;  flex-direction: column;  align-items: center;  justify-content: center;  box-sizing: border-box; /* Crucial for responsive lists */}.page-nustar-cebu-opening__access-card:hover {  transform: translateY(-5px);  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);}.page-nustar-cebu-opening__access-icon {  width: 80px;  height: 80px;  object-fit: contain;  margin-bottom: 15px;  max-width: 100%; /* Responsive image */  height: auto; /* Responsive image */}.page-nustar-cebu-opening__access-title {  font-size: 1.4em;  color: #ffcc00;  margin-bottom: 10px;}.page-nustar-cebu-opening__access-description {  font-size: 0.95em;  color: #b0b0b0;}/* Games Section */.page-nustar-cebu-opening__games-section {  padding: 60px 0;  background-color: #1a1a2e;}.page-nustar-cebu-opening__game-tabs {  display: flex;  justify-content: center;  gap: 15px;  margin-bottom: 40px;  flex-wrap: wrap;}.page-nustar-cebu-opening__tab-button {  background-color: #3f51b5;  color: #ffffff;  padding: 10px 20px;  border: none;  border-radius: 5px;  cursor: pointer;  font-size: 1.1em;  transition: background-color 0.3s ease;}.page-nustar-cebu-opening__tab-button:hover {  background-color: #303f9f;}.page-nustar-cebu-opening__tab-button.active {  background-color: #ffcc00;  color: #1a1a2e;}.page-nustar-cebu-opening__game-content {  display: none;  animation: fadeIn 0.5s ease-in-out forwards;}.page-nustar-cebu-opening__game-content.active {  display: block;}.page-nustar-cebu-opening__game-grid {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));  gap: 30px;}.page-nustar-cebu-opening__game-card {  background-color: #24243e;  border-radius: 10px;  overflow: hidden;  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);  text-align: center;  transition: transform 0.3s ease, box-shadow 0.3s ease;  box-sizing: border-box; /* Crucial for responsive lists */}.page-nustar-cebu-opening__game-card:hover {  transform: translateY(-5px);  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);}.page-nustar-cebu-opening__game-image {  width: 100%;  height: 200px;  object-fit: cover;  max-width: 100%; /* Responsive image */  height: auto; /* Responsive image */}.page-nustar-cebu-opening__game-title {  font-size: 1.3em;  color: #ffcc00;  margin: 15px 10px 5px;}.page-nustar-cebu-opening__game-description {  font-size: 0.9em;  color: #b0b0b0;  padding: 0 10px 15px;}.page-nustar-cebu-opening__game-card .page-nustar-cebu-opening__button {  margin-bottom: 20px;}/* Promotions Section */.page-nustar-cebu-opening__promotions-section {  padding: 60px 0;  background-color: #24243e;}.page-nustar-cebu-opening__promo-grid {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  gap: 30px;  margin-top: 40px;}.page-nustar-cebu-opening__promo-card {  background-color: #1a1a2e;  border-radius: 10px;  overflow: hidden;  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);  text-align: center;  transition: transform 0.3s ease, box-shadow 0.3s ease;  box-sizing: border-box; /* Crucial for responsive lists */}.page-nustar-cebu-opening__promo-card:hover {  transform: translateY(-5px);  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);}.page-nustar-cebu-opening__promo-image {  width: 100%;  height: 220px;  object-fit: cover;  max-width: 100%; /* Responsive image */  height: auto; /* Responsive image */}.page-nustar-cebu-opening__promo-title {  font-size: 1.5em;  color: #ffcc00;  margin: 20px 15px 10px;}.page-nustar-cebu-opening__promo-description {  font-size: 1em;  color: #b0b0b0;  padding: 0 15px 20px;}.page-nustar-cebu-opening__promo-card .page-nustar-cebu-opening__button {  margin-bottom: 25px;}/* Security Section */.page-nustar-cebu-opening__security-section {  padding: 60px 0;  background-color: #1a1a2e;}.page-nustar-cebu-opening__security-grid {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));  gap: 30px;  margin-top: 40px;  margin-bottom: 40px;}.page-nustar-cebu-opening__security-item {  background-color: #24243e;  border-radius: 10px;  padding: 30px;  text-align: center;  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);  box-sizing: border-box; /* Crucial for responsive lists */}.page-nustar-cebu-opening__security-icon {  width: 90px;  height: 90px;  object-fit: contain;  margin-bottom: 20px;  max-width: 100%; /* Responsive image */  height: auto; /* Responsive image */}.page-nustar-cebu-opening__security-title {  font-size: 1.4em;  color: #ffcc00;  margin-bottom: 10px;}.page-nustar-cebu-opening__security-description {  font-size: 0.95em;  color: #b0b0b0;}.page-nustar-cebu-opening__contact-cta {  text-align: center;  margin-top: 30px;}/* FAQ Section */.page-nustar-cebu-opening__faq-section {  padding: 60px 0;  background-color: #24243e;}.page-nustar-cebu-opening__faq-list {  max-width: 800px;  margin: 40px auto 0;}.page-nustar-cebu-opening__faq-item {  background-color: #1a1a2e;  border-radius: 8px;  margin-bottom: 15px;  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);  overflow: hidden;}.page-nustar-cebu-opening__faq-question {  display: flex;  justify-content: space-between;  align-items: center;  padding: 20px 25px;  cursor: pointer;  user-select: none;  background-color: #2c2c4a;  transition: background-color 0.3s ease;}.page-nustar-cebu-opening__faq-question:hover {  background-color: #3f51b5;}.page-nustar-cebu-opening__faq-question-title {  font-size: 1.2em;  color: #ffcc00;  margin: 0;  pointer-events: none; /* Prevents text selection from interfering with click */}.page-nustar-cebu-opening__faq-toggle {  font-size: 1.8em;  color: #ffffff;  font-weight: bold;  transition: transform 0.3s ease;  pointer-events: none; /* Prevents icon from interfering with click */}.page-nustar-cebu-opening__faq-item.active .page-nustar-cebu-opening__faq-toggle {  transform: rotate(45deg);}.page-nustar-cebu-opening__faq-answer {  max-height: 0;  overflow: hidden;  padding: 0 25px;  color: #d0d0d0;  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;  opacity: 0;}.page-nustar-cebu-opening__faq-item.active .page-nustar-cebu-opening__faq-answer {  max-height: 2000px !important; /* Sufficiently large value */  padding: 20px 25px !important;  opacity: 1;}.page-nustar-cebu-opening__faq-answer p {  margin: 0;  padding-bottom: 10px;}/* Blog Section */.page-nustar-cebu-opening__blog-section {  padding: 60px 0;  background-color: #1a1a2e;}.page-nustar-cebu-opening__blog-grid {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  gap: 30px;  margin-top: 40px;}.page-nustar-cebu-opening__blog-card {  background-color: #24243e;  border-radius: 10px;  overflow: hidden;  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);  transition: transform 0.3s ease, box-shadow 0.3s ease;  box-sizing: border-box; /* Crucial for responsive lists */}.page-nustar-cebu-opening__blog-card:hover {  transform: translateY(-5px);  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);}.page-nustar-cebu-opening__blog-image {  width: 100%;  height: 200px;  object-fit: cover;  max-width: 100%; /* Responsive image */  height: auto; /* Responsive image */}.page-nustar-cebu-opening__blog-title {  font-size: 1.3em;  margin: 15px 15px 10px;}.page-nustar-cebu-opening__blog-title a {  color: #ffcc00;  text-decoration: none;  transition: color 0.3s ease;}.page-nustar-cebu-opening__blog-title a:hover {  color: #e6b800;}.page-nustar-cebu-opening__blog-excerpt {  font-size: 0.95em;  color: #b0b0b0;  padding: 0 15px;  margin-bottom: 15px;}.page-nustar-cebu-opening__blog-date {  display: block;  font-size: 0.85em;  color: #888;  padding: 0 15px 20px;}/* Responsive Adjustments */@media (max-width: 1024px) {  .page-nustar-cebu-opening__hero-title {    font-size: 3em;  }  .page-nustar-cebu-opening__hero-subtitle {    font-size: 1.3em;  }  .page-nustar-cebu-opening__section-title {    font-size: 2em;  }}@media (max-width: 768px) {  .page-nustar-cebu-opening__hero-section {    min-height: 450px;  }  .page-nustar-cebu-opening__hero-title {    font-size: 2.5em;  }  .page-nustar-cebu-opening__hero-subtitle {    font-size: 1.1em;  }  .page-nustar-cebu-opening__hero-cta-buttons {    flex-direction: column;    gap: 15px;  }  .page-nustar-cebu-opening__button {    width: 100%;    max-width: 250px;    margin: 0 auto;  }  .page-nustar-cebu-opening__section-title {    font-size: 1.8em;  }  .page-nustar-cebu-opening__text-content {    font-size: 1em;  }  /* Responsive list items */  .page-nustar-cebu-opening__access-grid,  .page-nustar-cebu-opening__game-grid,  .page-nustar-cebu-opening__promo-grid,  .page-nustar-cebu-opening__security-grid,  .page-nustar-cebu-opening__blog-grid {    grid-template-columns: 1fr;    gap: 20px;  }  .page-nustar-cebu-opening__access-card,  .page-nustar-cebu-opening__game-card,  .page-nustar-cebu-opening__promo-card,  .page-nustar-cebu-opening__security-item,  .page-nustar-cebu-opening__blog-card {    width: 100% !important;    max-width: 100% !important;    margin-left: 0 !important;    margin-right: 0 !important;    box-sizing: border-box !important;    padding: 20px !important; /* Adjust padding for mobile */    word-wrap: break-word !important;    overflow-wrap: break-word !important;  }  .page-nustar-cebu-opening__access-card .page-nustar-cebu-opening__access-description,  .page-nustar-cebu-opening__game-card .page-nustar-cebu-opening__game-description,  .page-nustar-cebu-opening__promo-card .page-nustar-cebu-opening__promo-description,  .page-nustar-cebu-opening__security-item .page-nustar-cebu-opening__security-description,  .page-nustar-cebu-opening__blog-card .page-nustar-cebu-opening__blog-excerpt {    word-break: break-word !important;  }  .page-nustar-cebu-opening__game-tabs {    flex-direction: column;    gap: 10px;  }  .page-nustar-cebu-opening__tab-button {    width: 100%;  }  .page-nustar-cebu-opening__faq-question {    padding: 15px 20px;  }  .page-nustar-cebu-opening__faq-question-title {    font-size: 1.1em;  }  .page-nustar-cebu-opening__faq-answer {    padding: 0 20px;  }  .page-nustar-cebu-opening__faq-item.active .page-nustar-cebu-opening__faq-answer {    padding: 15px 20px !important;  }}@media (max-width: 480px) {  .page-nustar-cebu-opening__hero-title {    font-size: 2em;  }  .page-nustar-cebu-opening__hero-subtitle {    font-size: 1em;  }  .page-nustar-cebu-opening__section-title {    font-size: 1.5em;  }  .page-nustar-cebu-opening__hero-section {    min-height: 400px;  }}/* Keyframe for fade in */@keyframes fadeIn {  from { opacity: 0; transform: translateY(20px); }  to { opacity: 1; transform: translateY(0); }}