/* ============================================================
   nustar ph login - Core Stylesheet
   Class prefix: gdf5-
   Palette: #FFAA00 (amber/primary) | #212F3D (dark navy/bg) | #F5DEB3 (wheat/text)
   Mobile-first, rem units, root font 62.5%
   ============================================================ */

:root {
  --gdf5-primary: #FFAA00;
  --gdf5-bg: #212F3D;
  --gdf5-text: #F5DEB3;
  --gdf5-bg-dark: #18222C;
  --gdf5-bg-light: #2C3E50;
  --gdf5-accent: #FFD24D;
  --gdf5-danger: #FF6B6B;
  --gdf5-success: #4ADE80;
  --gdf5-border: rgba(245, 222, 179, 0.18);
  --gdf5-radius: 1.2rem;
  --gdf5-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--gdf5-bg);
  color: var(--gdf5-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gdf5-primary);
  text-decoration: none;
}

/* ============================================================
   Layout containers
   ============================================================ */
.gdf5-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.gdf5-wrapper {
  width: 100%;
  padding: 1.5rem 1.2rem;
}

.gdf5-section {
  padding: 2rem 1.2rem;
  border-bottom: 0.1rem solid var(--gdf5-border);
}

main {
  padding-top: 5.6rem;
}

@media (max-width: 768px) {
  main {
    padding-bottom: 8rem;
  }
}

/* ============================================================
   Header / Top Navigation
   ============================================================ */
.gdf5-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--gdf5-bg-dark);
  border-bottom: 0.2rem solid var(--gdf5-primary);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  min-height: 5.6rem;
}

.gdf5-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.gdf5-logo img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.6rem;
}

.gdf5-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gdf5-primary);
  white-space: nowrap;
}

.gdf5-logo-text span {
  color: var(--gdf5-text);
  font-weight: 500;
}

.gdf5-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.gdf5-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 0.8rem;
  padding: 0.7rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
  min-height: 3.6rem;
  text-align: center;
}

.gdf5-btn:active {
  transform: scale(0.96);
}

.gdf5-btn-login {
  background: transparent;
  color: var(--gdf5-text);
  border: 0.15rem solid var(--gdf5-text);
}

.gdf5-btn-register {
  background: var(--gdf5-primary);
  color: var(--gdf5-bg-dark);
}

.gdf5-btn-register:hover {
  background: var(--gdf5-accent);
}

.gdf5-menu-btn {
  background: transparent;
  border: none;
  color: var(--gdf5-primary);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.4rem;
  min-width: 4.4rem;
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   Mobile Menu (slide-down)
   ============================================================ */
.gdf5-mobile-menu {
  display: none;
  position: fixed;
  top: 5.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--gdf5-bg-dark);
  border-bottom: 0.2rem solid var(--gdf5-primary);
  z-index: 9999;
  padding: 1rem 1.2rem 1.5rem;
}

.gdf5-mobile-menu.gdf5-menu-open {
  display: block;
}

.gdf5-mobile-menu a {
  display: block;
  padding: 1rem 0.8rem;
  color: var(--gdf5-text);
  font-size: 1.4rem;
  border-bottom: 0.1rem solid var(--gdf5-border);
  transition: background 0.2s, color 0.2s;
}

.gdf5-mobile-menu a:hover,
.gdf5-mobile-menu a:active {
  background: var(--gdf5-bg-light);
  color: var(--gdf5-primary);
}

.gdf5-mobile-menu a i {
  color: var(--gdf5-primary);
  margin-right: 0.6rem;
  width: 2rem;
  text-align: center;
}

/* ============================================================
   Carousel / Hero
   ============================================================ */
.gdf5-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--gdf5-radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--gdf5-shadow);
}

.gdf5-carousel-track {
  position: relative;
  width: 100%;
  height: 18rem;
}

.gdf5-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.gdf5-carousel-slide.gdf5-slide-active {
  opacity: 1;
}

.gdf5-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gdf5-carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(24, 34, 44, 0.92));
  color: var(--gdf5-text);
  padding: 2.5rem 1.2rem 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.gdf5-carousel-caption span {
  color: var(--gdf5-primary);
}

.gdf5-carousel-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.gdf5-carousel-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(245, 222, 179, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.gdf5-carousel-dot.gdf5-dot-active {
  background: var(--gdf5-primary);
  width: 2rem;
  border-radius: 0.4rem;
}

/* ============================================================
   Headings & text
   ============================================================ */
.gdf5-h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gdf5-primary);
  line-height: 2.4rem;
  margin-bottom: 1rem;
}

.gdf5-h1 span {
  color: var(--gdf5-text);
}

.gdf5-h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gdf5-primary);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.15rem solid var(--gdf5-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gdf5-h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gdf5-accent);
  margin: 1rem 0 0.5rem;
}

.gdf5-text {
  color: var(--gdf5-text);
  font-size: 1.4rem;
  line-height: 1.5rem;
  margin-bottom: 0.8rem;
}

.gdf5-text-bold {
  font-weight: 700;
  color: var(--gdf5-primary);
}

.gdf5-promo-text {
  color: var(--gdf5-primary);
  font-weight: 700;
  cursor: pointer;
}

.gdf5-promo-text:hover {
  text-decoration: underline;
}

.gdf5-intro {
  background: var(--gdf5-bg-light);
  border-radius: var(--gdf5-radius);
  padding: 1.2rem;
  border-left: 0.4rem solid var(--gdf5-primary);
  margin-bottom: 1rem;
}

/* ============================================================
   Game filter tabs
   ============================================================ */
.gdf5-filter-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.8rem 0;
  margin-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.gdf5-filter-bar::-webkit-scrollbar {
  display: none;
}

.gdf5-filter-tab {
  flex-shrink: 0;
  padding: 0.6rem 1.2rem;
  background: var(--gdf5-bg-light);
  color: var(--gdf5-text);
  border: 0.1rem solid var(--gdf5-border);
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.gdf5-filter-tab.gdf5-tab-active {
  background: var(--gdf5-primary);
  color: var(--gdf5-bg-dark);
  border-color: var(--gdf5-primary);
}

/* ============================================================
   Game grid - compact icon layout
   ============================================================ */
.gdf5-game-section {
  margin-bottom: 2rem;
}

.gdf5-game-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gdf5-primary);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gdf5-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.gdf5-game-card {
  background: var(--gdf5-bg-light);
  border-radius: 0.8rem;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  border: 0.1rem solid var(--gdf5-border);
}

.gdf5-game-card:hover,
.gdf5-game-card:active {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.4rem 1rem rgba(255, 170, 0, 0.25);
  border-color: var(--gdf5-primary);
}

.gdf5-game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 0.1rem solid var(--gdf5-border);
}

.gdf5-game-name {
  font-size: 1.1rem;
  color: var(--gdf5-text);
  padding: 0.5rem 0.3rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3rem;
}

/* ============================================================
   Cards / generic content blocks
   ============================================================ */
.gdf5-card {
  background: var(--gdf5-bg-light);
  border-radius: var(--gdf5-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border: 0.1rem solid var(--gdf5-border);
}

.gdf5-card-highlight {
  border-left: 0.4rem solid var(--gdf5-primary);
}

.gdf5-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.gdf5-feature-item {
  background: var(--gdf5-bg-dark);
  border-radius: 0.8rem;
  padding: 1rem;
  text-align: center;
  border: 0.1rem solid var(--gdf5-border);
}

.gdf5-feature-item i {
  font-size: 2.4rem;
  color: var(--gdf5-primary);
  margin-bottom: 0.5rem;
}

.gdf5-feature-item .gdf5-feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gdf5-accent);
  margin-bottom: 0.3rem;
}

.gdf5-feature-item p {
  font-size: 1.1rem;
  color: var(--gdf5-text);
  line-height: 1.4rem;
}

/* ============================================================
   RTP compact table
   ============================================================ */
.gdf5-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
}

.gdf5-rtp-table th,
.gdf5-rtp-table td {
  padding: 0.7rem 0.5rem;
  text-align: left;
  border-bottom: 0.1rem solid var(--gdf5-border);
}

.gdf5-rtp-table th {
  background: var(--gdf5-bg-dark);
  color: var(--gdf5-primary);
  font-weight: 700;
}

.gdf5-rtp-table td {
  color: var(--gdf5-text);
}

.gdf5-rtp-table .gdf5-rtp-high {
  color: var(--gdf5-success);
  font-weight: 700;
}

.gdf5-rtp-table .gdf5-rtp-mid {
  color: var(--gdf5-accent);
  font-weight: 700;
}

/* ============================================================
   Steps list
   ============================================================ */
.gdf5-steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.gdf5-steps li {
  position: relative;
  padding: 0.6rem 0.6rem 0.6rem 3.2rem;
  margin-bottom: 0.6rem;
  background: var(--gdf5-bg-light);
  border-radius: 0.6rem;
  font-size: 1.3rem;
  color: var(--gdf5-text);
  line-height: 1.4rem;
  counter-increment: step;
}

.gdf5-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.6rem;
  top: 0.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--gdf5-primary);
  color: var(--gdf5-bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.gdf5-faq-item {
  background: var(--gdf5-bg-light);
  border-radius: 0.8rem;
  margin-bottom: 0.6rem;
  overflow: hidden;
  border: 0.1rem solid var(--gdf5-border);
}

.gdf5-faq-question {
  padding: 1rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gdf5-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gdf5-bg-dark);
}

.gdf5-faq-question i {
  color: var(--gdf5-primary);
  transition: transform 0.2s;
}

.gdf5-faq-item.gdf5-faq-open .gdf5-faq-question i {
  transform: rotate(180deg);
}

.gdf5-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.2rem;
  color: var(--gdf5-text);
  font-size: 1.3rem;
  line-height: 1.4rem;
}

.gdf5-faq-item.gdf5-faq-open .gdf5-faq-answer {
  max-height: 30rem;
  padding: 1rem 1.2rem;
}

/* ============================================================
   Testimonials
   ============================================================ */
.gdf5-testimonial {
  background: var(--gdf5-bg-light);
  border-radius: 0.8rem;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-left: 0.3rem solid var(--gdf5-primary);
}

.gdf5-testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.gdf5-testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gdf5-primary);
  color: var(--gdf5-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
}

.gdf5-testimonial-name {
  font-weight: 700;
  color: var(--gdf5-accent);
  font-size: 1.3rem;
}

.gdf5-testimonial-stars {
  color: var(--gdf5-primary);
  font-size: 1.1rem;
}

.gdf5-testimonial p {
  font-size: 1.2rem;
  color: var(--gdf5-text);
  line-height: 1.4rem;
}

/* ============================================================
   Winners showcase
   ============================================================ */
.gdf5-winner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.gdf5-winner-item {
  background: var(--gdf5-bg-dark);
  border-radius: 0.6rem;
  padding: 0.7rem;
  border: 0.1rem solid var(--gdf5-border);
  text-align: center;
}

.gdf5-winner-name {
  font-size: 1.1rem;
  color: var(--gdf5-accent);
  font-weight: 700;
}

.gdf5-winner-amount {
  font-size: 1.3rem;
  color: var(--gdf5-primary);
  font-weight: 800;
  margin: 0.2rem 0;
}

.gdf5-winner-game {
  font-size: 1rem;
  color: var(--gdf5-text);
  opacity: 0.85;
}

/* ============================================================
   Payment methods
   ============================================================ */
.gdf5-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.gdf5-payment-item {
  background: var(--gdf5-bg-dark);
  border-radius: 0.6rem;
  padding: 0.8rem 0.4rem;
  text-align: center;
  border: 0.1rem solid var(--gdf5-border);
}

.gdf5-payment-item i {
  font-size: 2rem;
  color: var(--gdf5-primary);
  margin-bottom: 0.3rem;
}

.gdf5-payment-item span {
  font-size: 1rem;
  color: var(--gdf5-text);
  font-weight: 600;
}

/* ============================================================
   App download CTA
   ============================================================ */
.gdf5-app-cta {
  background: linear-gradient(135deg, var(--gdf5-bg-light), var(--gdf5-bg-dark));
  border-radius: var(--gdf5-radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  border: 0.15rem solid var(--gdf5-primary);
  margin-bottom: 1rem;
}

.gdf5-app-cta h3 {
  color: var(--gdf5-primary);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.gdf5-app-cta p {
  color: var(--gdf5-text);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.gdf5-app-buttons {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gdf5-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gdf5-primary);
  color: var(--gdf5-bg-dark);
  padding: 0.8rem 1.2rem;
  border-radius: 0.6rem;
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
  border: none;
}

.gdf5-app-btn:active {
  transform: scale(0.96);
}

.gdf5-app-btn i {
  font-size: 1.6rem;
}

/* ============================================================
   Play now CTA bar
   ============================================================ */
.gdf5-playnow-bar {
  background: var(--gdf5-primary);
  color: var(--gdf5-bg-dark);
  border-radius: var(--gdf5-radius);
  padding: 1.2rem;
  text-align: center;
  margin: 1rem 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: none;
  width: 100%;
}

.gdf5-playnow-bar:active {
  transform: scale(0.98);
}

.gdf5-playnow-bar i {
  font-size: 1.8rem;
}

/* ============================================================
   Inline promo links
   ============================================================ */
.gdf5-link-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0.8rem 0;
}

.gdf5-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gdf5-bg-dark);
  color: var(--gdf5-primary);
  border: 0.1rem solid var(--gdf5-primary);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.gdf5-link-pill:active {
  background: var(--gdf5-primary);
  color: var(--gdf5-bg-dark);
}

/* ============================================================
   Footer
   ============================================================ */
.gdf5-footer {
  background: var(--gdf5-bg-dark);
  border-top: 0.2rem solid var(--gdf5-primary);
  padding: 2rem 1.2rem 9rem;
  margin-top: 2rem;
}

.gdf5-footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gdf5-primary);
  margin-bottom: 0.6rem;
}

.gdf5-footer-desc {
  font-size: 1.2rem;
  color: var(--gdf5-text);
  line-height: 1.5rem;
  margin-bottom: 1rem;
}

.gdf5-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.gdf5-footer-links a {
  background: var(--gdf5-bg-light);
  color: var(--gdf5-text);
  padding: 0.5rem 0.9rem;
  border-radius: 0.6rem;
  font-size: 1.1rem;
  border: 0.1rem solid var(--gdf5-border);
  transition: background 0.2s, color 0.2s;
}

.gdf5-footer-links a:hover {
  background: var(--gdf5-primary);
  color: var(--gdf5-bg-dark);
}

.gdf5-footer-promo {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.gdf5-footer-promo button {
  flex: 1 1 auto;
  min-width: 8rem;
}

.gdf5-footer-copy {
  font-size: 1.1rem;
  color: var(--gdf5-text);
  opacity: 0.7;
  text-align: center;
  border-top: 0.1rem solid var(--gdf5-border);
  padding-top: 1rem;
}

/* ============================================================
   Mobile Bottom Navigation (fixed)
   ============================================================ */
.gdf5-bottomnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 6rem;
  background: var(--gdf5-bg-dark);
  border-top: 0.2rem solid var(--gdf5-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -0.3rem 1rem rgba(0, 0, 0, 0.4);
}

.gdf5-bottomnav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background: transparent;
  border: none;
  color: var(--gdf5-text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  min-width: 6rem;
  min-height: 6rem;
  padding: 0.4rem;
  transition: color 0.2s, transform 0.15s;
}

.gdf5-bottomnav-btn i {
  font-size: 2.2rem;
  color: var(--gdf5-text);
  transition: color 0.2s;
}

.gdf5-bottomnav-btn:active {
  transform: scale(0.92);
}

.gdf5-bottomnav-btn.gdf5-bottomnav-active i,
.gdf5-bottomnav-btn.gdf5-bottomnav-active {
  color: var(--gdf5-primary);
}

.gdf5-bottomnav-btn:hover i {
  color: var(--gdf5-primary);
}

.gdf5-bottomnav-badge {
  position: absolute;
  top: 0.6rem;
  right: 1.6rem;
  background: var(--gdf5-danger);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 1rem;
  padding: 0.1rem 0.4rem;
  min-width: 1.4rem;
  text-align: center;
}

.gdf5-bottomnav-btn {
  position: relative;
}

/* Help-page content helpers */
.gdf5-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 15rem;
  display: flex;
  align-items: flex-end;
  border-radius: var(--gdf5-radius);
  margin-bottom: 1.5rem;
  background: var(--gdf5-bg-dark);
  box-shadow: var(--gdf5-shadow);
}

.gdf5-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.gdf5-page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2rem 1.2rem 1.2rem;
  background: linear-gradient(transparent, rgba(24, 34, 44, 0.95));
}

.gdf5-page-hero-content .gdf5-h1 {
  margin-bottom: 0.4rem;
}

.gdf5-page-hero-content p {
  font-size: 1.3rem;
  line-height: 1.5rem;
}

.gdf5-check-list {
  list-style: none;
  margin: 0.8rem 0;
}

.gdf5-check-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 2.4rem;
  font-size: 1.3rem;
  line-height: 1.45rem;
  border-bottom: 0.1rem solid var(--gdf5-border);
}

.gdf5-check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0.3rem;
  top: 0.5rem;
  color: var(--gdf5-success);
  font-weight: 800;
  font-size: 1.5rem;
}

.gdf5-note {
  background: rgba(255, 170, 0, 0.12);
  border: 0.1rem solid rgba(255, 170, 0, 0.45);
  border-radius: 0.8rem;
  padding: 1rem;
  font-size: 1.25rem;
  line-height: 1.45rem;
  color: var(--gdf5-text);
}

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
  .gdf5-bottomnav {
    display: none;
  }
  .gdf5-footer {
    padding-bottom: 2rem;
  }
}

/* Desktop wider layout adjustments */
@media (min-width: 431px) and (max-width: 768px) {
  .gdf5-game-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Small phone tweaks */
@media (max-width: 360px) {
  .gdf5-h1 {
    font-size: 1.8rem;
  }
  .gdf5-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gdf5-logo-text {
    font-size: 1.3rem;
  }
}
