/* Policy links bar — match main page (.popular-games / announcement navy stack) */
.policy-links-bar {
    background: linear-gradient(180deg, #0a0a12 0%, #0f0f1a 100%);
    padding: 1rem 0;
    border-top: 1px solid rgba(220, 0, 0, 0.2);
    border-bottom: 1px solid rgba(220, 0, 0, 0.1);
    box-shadow: 0 0 24px rgba(220, 0, 0, 0.06);
  }
  
  .policy-links-bar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2rem;
  }
  
  .policy-links-bar a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  
  .policy-links-bar a:hover {
    color: #fe1f03;
  }
  
  /* About / Pengetahuan — same palette as neon game blocks */
  .about-site-section {
    background: linear-gradient(180deg, #0f0f1a 0%, #12121f 52%, #0d0d18 100%);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(220, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }
  
  .about-site-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    text-align: left;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(220, 0, 0, 0.45);
  }
  
  .about-site-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.12rem;
    line-height: 1.7;
  }
  
  .about-site-content p {
    margin: 0 0 1rem;
  }
  
  .about-site-content p:last-child {
    margin-bottom: 0;
  }
  
  .about-site-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    text-align: left;
  }
  
  .about-site-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.12rem;
    line-height: 1.6;
  }
  
  .about-site-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fe1f03;
  }
  
  .about-site-list li strong {
    color: rgba(255, 255, 255, 0.92);
  }
  
  .about-site-content a {
    color: #fe1f03;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
  }
  
  .about-site-content a:hover {
    color: #ff4d4d;
    text-decoration: underline;
  }
  
  /* Footer sitemap — scoped to .site-footer (matches index.html) */
  
  .site-footer .brand {
    color: #fe1f03;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 8, 68, 0.5);
  }
  
  .footer-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-section-title {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #737373;
    margin-bottom: 0.75rem;
  }
  
  .site-footer .hover-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .site-footer .hover-list li {
    position: relative;
  }
  
  .site-footer .hover-list a {
    display: inline-block;
    text-decoration: none;
  }
  
  .site-footer .powered-by-logo,
  .site-footer .footer-badge {
    height: 40px;
    width: auto;
    display: block;
    transition: opacity 0.2s;
  }
  
  .site-footer .hover-list li .img-active {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
  }
  
  .site-footer .hover-list li:hover .img-default {
    opacity: 0;
  }
  
  .site-footer .hover-list li:hover .img-active {
    opacity: 1;
  }
  
  .site-footer .copyright {
    font-size: 0.98rem;
    color: #737373;
    margin-top: 1rem;
  }
  
  .site-footer .providers-wrap {
    width: 100%;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .site-footer .provider-container {
    margin-bottom: 1.5rem;
  }
  
  .site-footer .provider-container h5 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #737373;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .site-footer .provider-container .hover-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  
  .site-footer .provider-logo {
    height: 50px;
    width: 130px;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s;
  }
  
  .site-footer .provider-container .hover-list li {
    position: relative;
  }
  
  .site-footer .provider-container .hover-list li .img-active {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
  }
  
  .site-footer .provider-container .hover-list li:hover .img-default {
    opacity: 0;
  }
  
  .site-footer .provider-container .hover-list li:hover .img-active {
    opacity: 1;
  }
  
  .site-footer .footer-sitemap-section {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 2.5rem;
    padding: 2.5rem 2rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    background:
      radial-gradient(circle at top, rgba(196, 30, 58, 0.08), transparent 55%),
      rgba(13, 6, 6, 0.45);
    width: 100%;
    box-sizing: border-box;
  }
  
  .site-footer .footer-sitemap-section > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1 1 0;
    min-width: 0;
    padding: 0 0.5rem;
  }
  
  .site-footer .footer-sitemap-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--rg-gold, #d4af37);
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
  }
  
  .site-footer .footer-sitemap-section .footer-links,
  .site-footer .footer-sitemap-section .contact-list,
  .site-footer .footer-sitemap-section .social-media-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
  
  .site-footer .footer-sitemap-section .footer-links li,
  .site-footer .footer-sitemap-section .contact-list li,
  .site-footer .footer-sitemap-section .social-media-list li {
    display: block;
    margin-bottom: 0.35rem;
  }
  
  .site-footer .footer-sitemap-section .footer-links > li > a,
  .site-footer .footer-sitemap-section .contact-list a,
  .site-footer .footer-sitemap-section .social-media-list a {
    color: #c4a882;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.45;
    transition: color 0.2s, text-shadow 0.2s;
    padding-right: 0;
    border-left: none;
  }
  
  .site-footer .footer-sitemap-section .footer-links > li + li > a {
    padding-left: 0;
    border-left: none;
  }
  
  .site-footer .footer-sitemap-section .footer-links a:hover,
  .site-footer .footer-sitemap-section .contact-list a:hover,
  .site-footer .footer-sitemap-section .social-media-list a:hover {
    color: var(--rg-gold, #d4af37);
    text-shadow: 0 0 14px rgba(212, 175, 55, 0.65);
  }
  
  .site-footer .footer-sitemap-section .contact-list a,
  .site-footer .footer-sitemap-section .social-media-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border-radius: 0;
    color: #c4a882;
  }
  
  .site-footer .footer-sitemap-section .contact-list a i,
  .site-footer .footer-sitemap-section .social-media-list a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin-right: 0;
    border-radius: 0;
    background: none;
    color: #c4a882;
  }
  
  .site-footer .footer-sitemap-section .contact-list a svg,
  .site-footer .footer-sitemap-section .social-media-list a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: currentColor;
    color: #c4a882;
    transition: color 0.2s;
  }
  
  .site-footer .footer-sitemap-section .contact-list a:hover,
  .site-footer .footer-sitemap-section .social-media-list a:hover {
    background: none;
  }
  
  .site-footer .footer-sitemap-section .contact-list a:hover i,
  .site-footer .footer-sitemap-section .social-media-list a:hover i {
    background: none;
    color: var(--rg-gold, #d4af37);
  }
  
  .site-footer .footer-sitemap-section .contact-list a:hover svg,
  .site-footer .footer-sitemap-section .social-media-list a:hover svg {
    color: var(--rg-gold, #d4af37);
  }
  
  .site-footer .footer-sitemap-section .contact-list a img,
  .site-footer .footer-sitemap-section .social-media-list a img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-sections {
      gap: 1.5rem;
    }

    .site-footer .footer-sitemap-section {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 1.25rem 1.5rem;
    }

    .site-footer .footer-sitemap-section > div {
      padding: 0;
    }
  }
  