.sbobet-fixed-footer {
display: flex;
justify-content: space-around;
align-items: center;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to bottom, #67a2a6 0%, #427073 100%);
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.5);
padding: 8px max(8px, env(safe-area-inset-right))
max(12px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
z-index: 999;
border-radius: 40px 40px 0 0;
border-top: 1px solid rgba(255, 255, 255, 0.2);
box-sizing: border-box;
}

.sbobet-fixed-footer a {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #fcfbfb;
text-decoration: none;
font-size: clamp(9.5px, 2.6vw, 12px);
line-height: 1.1;
padding: 4px 2px;
min-width: 0;
}

.sbobet-fixed-footer img {
width: 24px;
height: 24px;
object-fit: contain;
margin-bottom: 3px;
filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.sbobet-fixed-footer .center,
.sbobet-fixed-footer .tada {
transform: scale(1.25) translateY(-3px);
}

.sbobet-fixed-footer a:hover,
.sbobet-fixed-footer a:active {
color: #fff;
font-weight: 600;
}

/* Responsive Adjustment */
@media (max-width: 380px) {
.sbobet-fixed-footer {
padding-bottom: max(12px, env(safe-area-inset-bottom));
max-width: 100vw;
}

.sbobet-fixed-footer img {
width: 22px;
height: 22px;
}

.sbobet-fixed-footer a {
font-size: 9.5px;
}
}

@media (max-width: 320px) {
.sbobet-fixed-footer img {
width: 20px;
height: 20px;
}
}
.n-columns-2x {
display: grid;
grid-template-columns: repeat(2, 1fr);
font-weight: 700;
}

.n-columns-2x a {
text-align: center;
margin: 3px;
}

.login,
.register {
color: #fff;
padding: 10px 10px;
}

.login,
.login-button {
border-radius: 10px 10px;
border: 1px solid #427073;
background: linear-gradient(to bottom, #67a2a6 0%, #427073 100%);
color: #fff;
}

.register,
.register-button {
border-radius: 10px 10px;
background: linear-gradient(to bottom, #1b1b1b 0%, #101010 100%);
border: 1px solid #101010;
}

@media (max-width: 480px) {
.n-columns-2x {
grid-template-columns: 1fr;
}

.login,
.register {
padding: 12px 10px;
font-size: 14px;
}
}
.breadcrumb-list {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
 }

 .breadcrumb-list li {
     display: flex;
     align-items: center;
 }

 .breadcrumb-list li:after {
     content: "›";
     margin-left: 8px;
     color: #999;
 }

 .breadcrumb-list li:last-child:after {
     content: "";
 }

 .breadcrumb-list a {
  
     text-decoration: none;
 }

 .breadcrumb-list a:hover {
     text-decoration: underline;
 }

 .breadcrumb-list .active {
     color: #333;
     font-weight: 600;
     pointer-events: none;
 }
/* CSS Variables - Kustomisasi Palet Putih & Emas */
:root {
--lp-bg: #3056632b;
--lp-card-bg: #3056632b;
--lp-border: #67a2a6;
--lp-border-sec: #67a2a6;
--lp-text-main: #888888;
--lp-text-muted: #6e6e6e;
--lp-border: #67a2a6;
--lp-border-light: rgba(189, 162, 112, 0.3);
--lp-shadow: rgba(189, 162, 112, 0.15);
}

/* Container Utama */
.main-container {
max-width: 1200px;
margin: 30px auto;
padding: 40px 20px;
background-color: var(--lp-bg);
color: var(--lp-text-main);
border: 2px solid var(--lp-border);
border-radius: 20px;
box-shadow: 0 10px 30px var(--lp-shadow);
}

/* Subtitle dan Title Section */
.section-title {
text-align: center;
font-size: 26px;
font-weight: 700;
margin: 40px 0 25px;
color: var(--lp-text-main);
position: relative;
padding-bottom: 12px;
}

.section-title::after {
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background-color: var(--lp-border);
border-radius: 2px;
}

.section-title:first-of-type {
margin-top: 10px;
}

/* ==================== 1. INFORMASI LENGKAP TABLE ==================== */
.info-box {
background: var(--lp-card-bg);
border: 2px solid var(--lp-border);
border-radius: 16px;
overflow: hidden;
margin-bottom: 50px;
box-shadow: 0 8px 24px var(--lp-shadow);
}

.info-table {
width: 100%;
border-collapse: collapse;
}

.info-table tr {
border-bottom: 1px solid var(--lp-border-light);
transition: background-color 0.2s ease;
}

.info-table tr:hover {
background-color: rgba(189, 162, 112, 0.05);
}

.info-table tr:last-child {
border-bottom: none;
}

.info-table td {
padding: 16px 24px;
font-size: 15px;
}

.info-label {
font-weight: 600;
color: var(--lp-text-muted);
width: 45%;
}

.info-value {
text-align: right;
font-weight: 700;
color: var(--lp-text-main);
}

/* ==================== 2. PANDUAN BERMAIN ==================== */
.panduan-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-bottom: 50px;
}

.panduan-card {
background: var(--lp-card-bg);
border: 1px solid var(--lp-border);
border-radius: 16px;
padding: 24px;
position: relative;
box-shadow: 0 4px 12px var(--lp-shadow);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panduan-card:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(189, 162, 112, 0.25);
}

.panduan-card h3 {
color: var(--lp-border-sec);
font-size: 18px;
margin-bottom: 15px;
font-weight: 700;
}

.panduan-list {
list-style: none;
padding: 0;
}

.panduan-list li {
position: relative;
padding-left: 28px;
margin-bottom: 12px;
font-size: 14px;
color: var(--lp-text-muted);
line-height: 1.5;
}

.panduan-list li::before {
content: attr(data-number);
position: absolute;
left: 0;
top: 2px;
width: 18px;
height: 18px;
background-color: var(--lp-border);
color: #ffffff;
font-weight: bold;
font-size: 11px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

/* ==================== 3. ARTIKEL EDUKASI ==================== */
.artikel-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-bottom: 50px;
}

.artikel-card {
background: var(--lp-card-bg);
border: 1px solid var(--lp-border);
border-radius: 16px;
padding: 24px;
display: flex;
flex-direction: column;
justify-content: space-between;
box-shadow: 0 4px 12px var(--lp-shadow);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artikel-card:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(189, 162, 112, 0.25);
}

.artikel-card h3 {
color: var(--lp-text-main);
font-size: 17px;
margin-bottom: 12px;
line-height: 1.4;
font-weight: 700;
}

.artikel-card p {
color: var(--lp-text-muted);
font-size: 13.5px;
line-height: 1.6;
margin-bottom: 20px;
}

.artikel-tag {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--lp-border-sec);
font-weight: 700;
}

/* ==================== 4. TESTIMONI MEMBER ==================== */
.testi-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
margin-bottom: 50px;
}

.testi-card {
background: var(--lp-card-bg);
border: 1px solid var(--lp-border);
border-radius: 16px;
padding: 24px;
text-align: center;
box-shadow: 0 5px 15px var(--lp-shadow);
transition: transform 0.3s ease;
}

.testi-card:hover {
transform: translateY(-5px);
}

.testi-avatar {
width: 55px;
height: 55px;
background: rgba(189, 162, 112, 0.1);
border: 1.5px solid var(--lp-border);
border-radius: 50%;
margin: 0 auto 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
}

.testi-card p.testi-name {
color: var(--lp-text-main);
font-weight: 700;
margin: 5px 0 2px;
}

.testi-card p.testi-city {
color: var(--lp-text-muted);
font-size: 12px;
margin-bottom: 12px;
}

.testi-quote {
font-style: italic;
margin: 15px 0;
color: var(--lp-text-muted);
font-size: 13.5px;
line-height: 1.6;
}

/* ==================== 5. FAQ ==================== */
.faq-item {
background: var(--lp-card-bg);
border: 1px solid var(--lp-border);
border-radius: 12px;
margin-bottom: 12px;
overflow: hidden;
box-shadow: 0 2px 8px var(--lp-shadow);
transition: border-color 0.3s ease;
}

.faq-item:hover {
border-color: var(--lp-border-sec);
}

.faq-summary {
padding: 18px 24px;
cursor: pointer;
font-weight: 600;
font-size: 15px;
display: flex;
justify-content: space-between;
align-items: center;
user-select: none;
color: var(--lp-text-main);
}

/* Sembunyikan default marker */
.faq-summary::-webkit-details-marker {
display: none;
}

.faq-summary {
list-style: none;
}

.faq-content {
padding: 0 24px 22px;
color: var(--lp-text-muted);
line-height: 1.6;
font-size: 14px;
border-top: 1px solid var(--lp-border-light);
padding-top: 15px;
}

.arrow {
font-size: 14px;
color: var(--lp-border-sec);
transition: transform 0.3s ease;
}

/* Memutar Arrow Saat Terbuka */
.faq-item[open] .arrow {
transform: rotate(180deg);
}

/* Responsivitas Layar Kecil */
@media (max-width: 600px) {
.main-container {
padding: 20px 10px;
}

.section-title {
font-size: 22px;
}

.info-table td {
padding: 12px 16px;
font-size: 14px;
}

.info-label {
width: 50%;
}
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 40px;
margin-bottom: 50px;
}

.footer-col h4 {
color: #666666;
margin-bottom: 18px;
font-size: 17px;
}

.footer-col ul {
list-style: none;
padding: 0;
}

.footer-col ul li {
margin-bottom: 10px;
}

.footer-col a {
color: #689a9d;
text-decoration: none;
}

.footer-col a:hover {
color: #689a9d;
}

.footer-bottom {
border-top: 1px solid #222;
padding-top: 25px;
text-align: center;
font-size: 14px;
}
