/* style/index-login-uw88.css */
:root {
  --page-primary-color: #FFD700;
  --page-secondary-color: #0A2463;
  --page-text-dark: #0A2463;
  --page-text-light: #FFFFFF;
  --page-background-light: #F5F5F5;
  --page-background-dark: #0A2463;
  --page-accent-color: #FF4500; /* OrangeRed for emphasis */
}

.page-index-login-uw88 {
  font-family: 'Arial', sans-serif;
  color: var(--page-text-dark);
  line-height: 1.6;
}

.page-index-login-uw88-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-index-login-uw88-h1,
.page-index-login-uw88-h2,
.page-index-login-uw88-h3 {
  color: var(--page-secondary-color);
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-index-login-uw88-h1 {
  font-size: 3.2em;
  color: var(--page-primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-login-uw88-h2 {
  font-size: 2.5em;
  margin-top: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-login-uw88-h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-primary-color);
  border-radius: 2px;
}

.page-index-login-uw88-h3 {
  font-size: 1.8em;
  color: var(--page-text-dark);
  margin-bottom: 15px;
}

.page-index-login-uw88 p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-index-login-uw88-cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 10px;
  text-align: center;
}

.page-index-login-uw88-cta-button.primary-button {
  background-color: var(--page-primary-color);
  color: var(--page-secondary-color);
  border: 2px solid var(--page-primary-color);
}

.page-index-login-uw88-cta-button.primary-button:hover {
  background-color: #e6c200;
  color: var(--page-secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index-login-uw88-cta-button.secondary-button {
  background-color: var(--page-secondary-color);
  color: var(--page-text-light);
  border: 2px solid var(--page-secondary-color);
}

.page-index-login-uw88-cta-button.secondary-button:hover {
  background-color: #071c4a;
  color: var(--page-text-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index-login-uw88-cta-button.small-button {
    padding: 10px 20px;
    font-size: 0.95em;
}

/* HERO Section */
.page-index-login-uw88.hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--page-secondary-color) 0%, #0A2463 50%, #061536 100%);
  color: var(--page-text-light);
  overflow: hidden;
}

.page-index-login-uw88 .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-index-login-uw88 .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-login-uw88 .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.8); /* Slightly dim the image for text readability, not color change */
}

.page-index-login-uw88 .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-index-login-uw88 .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-index-login-uw88 .hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Introduction Section */
.page-index-login-uw88.introduction-section {
  background-color: var(--page-background-light);
  padding: 60px 0;
}

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

.page-index-login-uw88-card {
  background-color: var(--page-text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-login-uw88-card-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-login-uw88-card p {
  font-size: 1em;
  color: #555;
  text-align: left;
}

/* Quick Access Section */
.page-index-login-uw88.quick-access-section {
  background-color: var(--page-secondary-color);
  color: var(--page-text-light);
  padding: 60px 0;
}

.page-index-login-uw88.quick-access-section p {
  color: rgba(255, 255, 255, 0.9);
}

.page-index-login-uw88.quick-access-section .page-index-login-uw88-h2 {
  color: var(--page-primary-color);
}

.page-index-login-uw88.quick-access-section .page-index-login-uw88-h2::after {
  background-color: var(--page-primary-color);
}

.page-index-login-uw88-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-index-login-uw88-link-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: var(--page-text-light);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-login-uw88-link-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.page-index-login-uw88-link-card .page-index-login-uw88-h3 {
  color: var(--page-primary-color);
  margin-bottom: 10px;
  font-size: 1.5em;
}

.page-index-login-uw88-link-card p {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.8);
}

/* Games Section */
.page-index-login-uw88.games-section {
  background-color: var(--page-background-light);
  padding: 60px 0;
}

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

.page-index-login-uw88-game-card {
  background-color: var(--page-text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-login-uw88-game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-login-uw88-game-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index-login-uw88-game-card .page-index-login-uw88-h3 {
  margin-top: 20px;
  font-size: 1.6em;
}

.page-index-login-uw88-game-card p {
  padding: 0 20px 20px;
  font-size: 0.95em;
  color: #666;
  text-align: left;
}

.page-index-login-uw88-read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--page-primary-color);
  color: var(--page-secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-index-login-uw88-read-more:hover {
  background-color: #e6c200;
}

/* Promotions Section */
.page-index-login-uw88.promotions-section {
  background-color: var(--page-secondary-color);
  color: var(--page-text-light);
  padding: 60px 0;
}

.page-index-login-uw88.promotions-section p {
  color: rgba(255, 255, 255, 0.9);
}

.page-index-login-uw88.promotions-section .page-index-login-uw88-h2 {
  color: var(--page-primary-color);
}

.page-index-login-uw88.promotions-section .page-index-login-uw88-h2::after {
  background-color: var(--page-primary-color);
}

.page-index-login-uw88-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-index-login-uw88-promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-login-uw88-promo-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.page-index-login-uw88-promo-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-index-login-uw88-promo-card .page-index-login-uw88-h3 {
  color: var(--page-primary-color);
  font-size: 1.5em;
}

.page-index-login-uw88-promo-card p {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.8);
}

.page-index-login-uw88-promo-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--page-primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-login-uw88-promo-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Security & Support Section */
.page-index-login-uw88.security-support-section {
  background-color: var(--page-background-light);
  padding: 60px 0;
}

.page-index-login-uw88-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-login-uw88-info-block {
  background-color: var(--page-text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-login-uw88-info-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-login-uw88-info-block .page-index-login-uw88-h3 {
  color: var(--page-secondary-color);
  font-size: 1.6em;
}

.page-index-login-uw88-info-block p {
  font-size: 1em;
  color: #555;
  text-align: left;
  margin-bottom: 20px;
}

.page-index-login-uw88-block-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    object-fit: cover;
}

/* FAQ Section */
.page-index-login-uw88.faq-section {
  background-color: var(--page-secondary-color);
  color: var(--page-text-light);
  padding: 60px 0;
}

.page-index-login-uw88.faq-section p {
  color: rgba(255, 255, 255, 0.9);
}

.page-index-login-uw88.faq-section .page-index-login-uw88-h2 {
  color: var(--page-primary-color);
}

.page-index-login-uw88.faq-section .page-index-login-uw88-h2::after {
  background-color: var(--page-primary-color);
}

.page-index-login-uw88-faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--page-text-light);
  color: var(--page-text-dark);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question .page-index-login-uw88-h3 {
  margin: 0;
  font-size: 1.2em;
  text-align: left;
  color: var(--page-secondary-color);
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--page-primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: var(--page-background-light);
  color: var(--page-text-dark);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

.faq-answer p {
    text-align: left;
    font-size: 1em;
    color: #444;
}

.faq-answer a {
    color: var(--page-secondary-color);
    font-weight: bold;
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--page-primary-color);
}

/* Blog Section */
.page-index-login-uw88.blog-section {
  background-color: var(--page-background-light);
  padding: 60px 0;
}

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

.page-index-login-uw88-blog-card {
  background-color: var(--page-text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-login-uw88-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-login-uw88-blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index-login-uw88-blog-card .page-index-login-uw88-h3 {
  margin: 20px 20px 10px;
  font-size: 1.4em;
  text-align: left;
}

.page-index-login-uw88-blog-card .page-index-login-uw88-h3 a {
    color: var(--page-secondary-color);
    text-decoration: none;
}

.page-index-login-uw88-blog-card .page-index-login-uw88-h3 a:hover {
    color: var(--page-primary-color);
}

.page-index-login-uw88-blog-card p {
  padding: 0 20px;
  font-size: 0.95em;
  color: #666;
  text-align: left;
}

.page-index-login-uw88-blog-date {
  display: block;
  font-size: 0.85em;
  color: #999;
  padding: 10px 20px 20px;
  text-align: left;
}

.page-index-login-uw88-view-all {
    text-align: center;
    margin-top: 40px;
}

/* Floating Buttons */
.page-index-login-uw88-floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-index-login-uw88-floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 50px;
  border-radius: 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--page-text-light);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.page-index-login-uw88-floating-btn.register-btn {
  background-color: var(--page-primary-color);
  color: var(--page-secondary-color);
}

.page-index-login-uw88-floating-btn.register-btn:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

.page-index-login-uw88-floating-btn.login-btn {
  background-color: var(--page-secondary-color);
}

.page-index-login-uw88-floating-btn.login-btn:hover {
  background-color: #071c4a;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-login-uw88-h1 {
    font-size: 2.8em;
  }
  .page-index-login-uw88-h2 {
    font-size: 2em;
  }
  .page-index-login-uw88-h3 {
    font-size: 1.5em;
  }
  .page-index-login-uw88 p {
    font-size: 1em;
  }
  .page-index-login-uw88-grid-3,
  .page-index-login-uw88-links-grid,
  .page-index-login-uw88-games-grid,
  .page-index-login-uw88-promo-grid,
  .page-index-login-uw88-grid-2,
  .page-index-login-uw88-blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .page-index-login-uw88 .hero-content p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-index-login-uw88-h1 {
    font-size: 2.2em;
  }
  .page-index-login-uw88-h2 {
    font-size: 1.8em;
  }
  .page-index-login-uw88-h3 {
    font-size: 1.3em;
  }
  .page-index-login-uw88-container {
    padding: 15px;
  }
  .page-index-login-uw88.hero-section {
    padding: 60px 15px;
  }
  .page-index-login-uw88 .hero-image {
    margin-bottom: 20px;
  }
  .page-index-login-uw88 .hero-ctas {
    flex-direction: column;
  }
  .page-index-login-uw88-cta-button {
    width: 80%;
    margin: 8px auto;
  }
  .page-index-login-uw88-grid-3,
  .page-index-login-uw88-links-grid,
  .page-index-login-uw88-games-grid,
  .page-index-login-uw88-promo-grid,
  .page-index-login-uw88-grid-2,
  .page-index-login-uw88-blog-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question .page-index-login-uw88-h3 {
    font-size: 1.1em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-index-login-uw88-floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .page-index-login-uw88-floating-btn {
    width: 130px;
    height: 45px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index-login-uw88-h1 {
    font-size: 1.8em;
  }
  .page-index-login-uw88-h2 {
    font-size: 1.6em;
  }
  .page-index-login-uw88-floating-buttons {
    bottom: 15px;
    right: 15px;
  }
  .page-index-login-uw88-floating-btn {
    width: 110px;
    height: 40px;
    font-size: 0.9em;
  }
}