/*------------------------------------- info --------------------------------------------------*/

/* CSS Variables - Kustomisasi Palet Putih & Emas */
:root {
    --lp-bg: #30633a2b;
    --lp-card-bg: #30633a2b;
    --lp-border: #2f7d28;
    --lp-border-sec: #2f7d28;
    --lp-text-main: #818181;
    --lp-text-muted: #6e6e6e;
    --lp-border: #2f7d28;
    --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%;
    }
}

/*------------------------------------- Grid Footer --------------------------------------------------*/

 .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: #fff;
     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: #ccc;
     text-decoration: none;
 }

 .footer-col a:hover {
     color: #ff3b3b;
 }

 .footer-bottom {
     border-top: 1px solid #222;
     padding-top: 25px;
     text-align: center;
     font-size: 14px;
 }

 /*------------------------------------- Button Regis Login --------------------------------------------------*/
 .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 #a96f44;
     background: linear-gradient(to bottom, #2f7d28 0%, #000000 100%);
     color: #fff;
 }

 .register,
 .register-button {
     text-shadow: 2px 2px #000000;
     border-radius: 10px 10px;
     background: linear-gradient(to bottom, #1b1b1b 0%, #101010 100%);
     border: 1px solid #2E2E2E;
 }

 @media (max-width: 480px) {
     .n-columns-2x {
         grid-template-columns: 1fr;
     }

     .login,
     .register {
         padding: 12px 10px;
         font-size: 14px;
     }
 }


 /*------------------------------------- Nav Button --------------------------------------------------*/

 .Slot777-fixed-footer {
     display: flex;
     justify-content: space-around;
     align-items: center;
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to bottom, #2f7d28 0%, #000000 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;
 }

 .Slot777-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;
 }

 .Slot777-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));
 }

 .Slot777-fixed-footer .center,
 .Slot777-fixed-footer .tada {
     transform: scale(1.25) translateY(-3px);
 }

 .Slot777-fixed-footer a:hover,
 .Slot777-fixed-footer a:active {
     color: #fff;
     font-weight: 600;
 }

 /* Responsive Adjustment */
 @media (max-width: 380px) {
     .Slot777-fixed-footer {
         padding-bottom: max(12px, env(safe-area-inset-bottom));
         max-width: 100vw;
     }

     .Slot777-fixed-footer img {
         width: 22px;
         height: 22px;
     }

     .Slot777-fixed-footer a {
         font-size: 9.5px;
     }
 }

 @media (max-width: 320px) {
     .Slot777-fixed-footer img {
         width: 20px;
         height: 20px;
     }
 }

 /*------------------------------------- breadcrumb --------------------------------------------------*/

 .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;
 }

  /*------------------------------------- END --------------------------------------------------*/