.logo{
    display:flex;
    align-items:center;
}
.logo img {
    height: clamp(40px, 8vw, 60px);
    width: auto;
}
/* LOGIN - OUTLINE BUTTON */
.btn-login {
    margin-left: auto;
    padding: clamp(6px, 1.5vw, 10px);
    width: 90px;
    text-align: center;
    font-size: clamp(11px, 1.5vw, 15px);
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s ease;
}

.btn-login:hover {
    background: #ffffff;
    color: #962509;
}

/* DAFTAR - GRADIENT BUTTON */
.btn-daftar{
    margin-left: clamp(3px, 1vw, 10px);

    width:90px;
    height:38px;

    padding:0;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:clamp(11px,1.5vw,15px);
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;

    color:#fff !important;

    background:linear-gradient(45deg,#ffcc00,#ff8800);
    background-size:200% 200%;

    transition:all .4s ease;
}

.btn-daftar:hover {
    transform: scale(1.08);
    background-position: right center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.artikel-img{
    width:100%;
    max-height:auto;
    object-fit:cover;
    border-radius:10px;
    margin:20px 0;
    display:block;
}
.banner {
    margin: 30px 0;
    text-align: center;
    
}
.banner {
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner img {
    width: 100%;
    max-width: auto;
    height: auto;
    border-radius: 10px;
}
body{
    margin:0;
    padding-top:80px;
    background:#f4f4f4;
    font-family:Arial,sans-serif;
}
.container{
    width:90%;
    max-width:1100px;
    margin:auto
}
header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    height:80px;

    background:#962509;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 8px;
    box-sizing:border-box;

    z-index:999999999;

    box-shadow:0 3px 12px rgba(0,0,0,.18);
}

.logo img{
    margin-left: 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: clamp(3px, 2vw, 15px);
}
.menu-wrapper {
    position: relative;
}

.menu-toggle {
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.menu-toggle:hover {
    color: #ffcc00;
    transform: translateY(-2px) scale(1.08);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.5);
}

#menu {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    width: 180px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 99999;
}

.menu-wrapper:hover #menu,
#menu:hover {
    display: block;
}

#menu a {
    display: block;
    padding: 15px;
    color: #300;
    text-decoration: none;
    font-weight: bold;
}

#menu a:hover {
    background: #eee;
}
.live-score {
    background: #962509;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1100px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.about-banner {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 5;
    overflow: hidden;
    border-radius: 15px;
    margin: 20px auto;
}

.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fitur {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.item {
    background: #111;
    color: white;
    padding: 15px;
    border-radius: 10px;
}
.about-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:center;
    margin:40px 0;
}

.about-image img{
    width:100%;
    border-radius:15px;
    display:block;
}

.about-content h2{
    color:#962509;
    margin-bottom:15px;
}

.about-content p{
    line-height:1.8;
}

.section-title{
    text-align:center;
    margin:50px 0 25px;
    color:#962509;
}

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.stat-card{
    background:white;
    padding:25px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-5px);
}

.stat-card h3{
    color:#962509;
    margin:0;
    font-size:30px;
}

.fitur-modern{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:50px;
}

.fitur-card{
    background:white;
    padding:25px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.fitur-card:hover{
    transform:translateY(-5px);
}

.fitur-card h3{
    color:#962509;
}

.cta-box{
    background:linear-gradient(45deg,#962509,#d74c21);
    color:white;
    text-align:center;
    padding:50px 20px;
    border-radius:15px;
    margin:50px 0;
}

.hero-btns{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:10px;
}

@media(max-width:768px){

    .about-section{
        grid-template-columns:1fr;
    }

    .hero-btns{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
}

}
.hero-btns .btn-daftar,
.hero-btns .btn-login{
    width:200px;
    text-align:center;
    margin-left:0;
    box-sizing:border-box;
}
.hero{
    padding:80px 20px;
    text-align:center;
    color:#fff;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('https://picsum.photos/1600/700');
    background-size:cover;
    background-position:center;
}
.about-hero .btn-login{
    margin-left:0;
}
/* FEATURE */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin:35px 0;
}

.feature-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
}

.feature-card span{
    font-size:40px;
    display:block;
    margin-bottom:10px;
}

.feature-card h3{
    color:#962509;
}

/* ARTIKEL */

.article-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:20px;
    margin:30px 0;
}

.read-more{
    display:inline-block;
    margin-top:10px;
    color:#962509;
    font-weight:bold;
    text-decoration:none;
}

/* CTA */

.cta-banner{
    text-align:center;
    padding:60px 20px;
    border-radius:15px;
    margin:40px 0;
    color:#fff;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('../img/home-apikuda.webp');
    background-size:cover;
    background-position:center;
}

.cta-banner h2{
    margin-bottom:15px;
}

.cta-banner p{
    max-width:700px;
    margin:auto auto 20px;
}

/* STATISTIK */

.stats-home{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin:50px 0;
}

.stat-box{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.stat-box h2{
    color:#962509;
    font-size:34px;
    margin:0;
}

/* HERO */

.hero{
    padding:100px 20px;
    text-align:center;
    color:#fff;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('https://picsum.photos/1600/700');
    background-size:cover;
    background-position:center;
}
.register-hero{
    background:
    linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url('../img/home-apikuda.webp');
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:120px 20px;
}

.register-hero h1{
    font-size:48px;
    margin-bottom:15px;
}

.register-features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin:50px 0;
}

.register-card{
    background:white;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.register-card:hover{
    transform:translateY(-8px);
}

.register-card span{
    font-size:42px;
}

.steps-section{
    text-align:center;
    margin:60px 0;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    margin-top:30px;
}

.step-box{
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.step-number{
    width:60px;
    height:60px;
    background:#962509;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:24px;
    font-weight:bold;
}

.stats-register{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin:60px 0;
}

.stat-register{
    background:white;
    text-align:center;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.stat-register h2{
    color:#962509;
    font-size:36px;
}

.register-cta{
    text-align:center;
    color:white;
    padding:70px 20px;
    border-radius:20px;
    margin:60px 0;
    background:linear-gradient(45deg,#962509,#d74c21);
}
/* FAQ */

.faq-section{
    margin:60px 0;
}

.faq-section h2{
    text-align:center;
    color:#962509;
    margin-bottom:30px;
}

.faq-item{
    background:#fff;
    border-radius:12px;
    margin-bottom:15px;
    overflow:hidden;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:20px;
    text-align:left;
    cursor:pointer;
    font-size:16px;
    font-weight:bold;
    color:#962509;
}

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

.faq-answer{
    display:none;
    padding:0 20px 20px;
    line-height:1.8;
}
.service-hero{
    padding:120px 20px;
    text-align:center;
    color:white;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('../img/home-apikuda.webp');
    background-size:cover;
    background-position:center;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin:50px 0;
}

.service-card{
    background:white;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-6px);
}

.service-card span{
    font-size:40px;
    display:block;
    margin-bottom:10px;
}

.service-card h3{
    color:#962509;
}

.service-info{
    background:white;
    padding:30px;
    border-radius:15px;
    margin:40px 0;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.service-info h2{
    color:#962509;
}

.service-cta{
    text-align:center;
    padding:70px 20px;
    border-radius:15px;
    margin:50px 0;
    color:white;
    background:linear-gradient(45deg,#962509,#d74c21);
}
.floating-chat{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:9999;
    background:#00b894;
    color:white;
    text-decoration:none;
    padding:14px 22px;
    border-radius:50px;
    font-weight:bold;
    display:block;
}

.floating-chat:hover{
    transform:translateY(-3px);
}
.mobile-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#962509;
    height:60px;
    padding:0 12px;
}

.menu-toggle{
    background:none;
    border:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

.logo-text{
    font-size:20px;
    font-weight:bold;
}

.mobile-menu{
    display:none;
    background:white;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.mobile-menu a{
    display:block;
    padding:15px 20px;
    text-decoration:none;
    color:#333;
    border-bottom:1px solid #eee;
}

.mobile-menu a:hover{
    background:#f5f5f5;
}


.header-logo img{
    height:38px;
    width:auto;
}
.login-section{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;

    background:
    linear-gradient(rgba(0,0,0,.6),
    rgba(0,0,0,.6)),
    url('../img/home-apikuda.webp');

    background-size:cover;
    background-position:center;
}

.login-box{
    width:100%;
    max-width:420px;
    background:white;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.login-logo{
    height:60px;
    margin-bottom:20px;
}

.login-box input{
    width:100%;
    padding:14px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:8px;
}

.login-box button{
    width:100%;
    margin-top:10px;
}

.login-feature{
    display:flex;
    justify-content:space-between;
    margin:25px 0;
    font-size:14px;
}

.login-feature div{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.register-link{
    margin-top:20px;
}
.portal-hero{
    min-height:70vh;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('../img/home-apikuda.webp');
    background-size:cover;
    background-position:center;
}

.portal-overlay{
    min-height:70vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.portal-logo{
    width:180px;
    height:auto;
    margin-bottom:20px;
}

.portal-overlay h1{
    font-size:48px;
    margin-bottom:15px;
}

.portal-overlay p{
    max-width:700px;
    line-height:1.8;
}

.portal-buttons{
    margin-top:25px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
}

.portal-btn{
    text-decoration:none;
    padding:14px 28px;
    border-radius:8px;
    font-weight:bold;
}

.primary-btn{
    background:#962509;
    color:white;
}

.secondary-btn{
    background:#f0b400;
    color:white;
}

.portal-stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin:60px auto;
}

.portal-stat{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.portal-stat h2{
    color:#962509;
    font-size:40px;
    margin:0;
}

.portal-feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.portal-feature-card{
    background:white;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.portal-feature-card span{
    font-size:40px;
    display:block;
    margin-bottom:10px;
}

.portal-feature-card h3{
    color:#962509;
}

.portal-services{
    margin:60px auto;
}

.portal-service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.portal-service-card{
    background:white;
    padding:30px;
    border-radius:15px;
    text-decoration:none;
    color:#333;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.portal-service-card:hover{
    transform:translateY(-6px);
}

.portal-service-card h3{
    color:#962509;
}

.portal-cta{
    margin:60px 20px;
    padding:70px 20px;
    text-align:center;
    color:white;
    border-radius:20px;
    background:linear-gradient(45deg,#962509,#d74c21);
}

.portal-cta h2{
    margin-bottom:15px;
}

@media(max-width:768px){

    .portal-overlay h1{
        font-size:34px;
    }

    .portal-logo{
        width:140px;
    }

}
.card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.artikel-img{
    width:100%;
    border-radius:15px;
    margin-bottom:25px;
}

.artikel-badge{
    display:inline-block;
    background:#962509;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

.artikel-header h1{
    color:#962509;
    font-size:42px;
    line-height:1.3;
    margin-bottom:10px;
}

@media(max-width:768px){

    .artikel-header h1{
        font-size:28px;
        line-height:1.3;
    }

    .card p{
        font-size:17px;
        line-height:1.9;
    }

}
@media(max-width:768px){

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-daftar,
    .btn-chat{
        width:220px;
        text-align:center;
    }

}
.artikel-meta{
    color:#888;
    margin-bottom:25px;
}

.card p{
    line-height:1.9;
    color:#444;
    margin-bottom:20px;
}

.artikel-info{
    background:#f8f8f8;
    padding:20px;
    border-radius:12px;
    margin-top:30px;
}

.artikel-info h3{
    color:#962509;
    margin-bottom:15px;
}

.artikel-info li{
    margin-bottom:10px;
}

.artikel-cta{
    margin-top:35px;
    background:linear-gradient(45deg,#962509,#d94a20);
    color:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.cta-buttons{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn-chat{
    background:#f0b400;
    color:white;
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
    font-weight:bold;
}
/* Artikel Mobile */
@media(max-width:768px){

    .card{
        padding:20px;
    }

    .artikel-header h1{
        font-size:30px !important;
        line-height:1.3;
    }

    .card p{
        font-size:16px !important;
        line-height:1.9;
    }

    .artikel-meta{
        font-size:14px;
    }

    .artikel-info li{
        font-size:15px;
    }

    .artikel-cta h2{
        font-size:24px;
    }

    .artikel-cta p{
        font-size:15px !important;
    }

}
.article-container{
    max-width:1100px;
    margin:40px auto;
    padding:0 15px;
}

.article-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.article-banner{
    width:100%;
    display:block;
}

.article-header{
    padding:30px;
}

.article-badge{
    display:inline-block;
    background:#962509;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:bold;
    margin-bottom:15px;
}

.article-header h1{
    color:#962509;
    font-size:40px;
    line-height:1.3;
    margin-bottom:10px;
}

.article-meta{
    color:#888;
}

.article-content{
    padding:0 30px 30px;
}

.lead-text{
    font-size:22px;
    color:#962509;
    font-weight:600;
    line-height:1.8;
}

.article-content p{
    font-size:17px;
    line-height:2;
    color:#444;
    margin-bottom:20px;
}

.highlight-box{
    margin:0 30px 30px;
    background:#fff7f3;
    padding:30px;
    border-radius:15px;
}

.highlight-box h2{
    color:#962509;
    margin-bottom:20px;
}

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
}

.highlight-item{
    background:#fff;
    padding:20px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.highlight-item h3{
    color:#962509;
    margin:10px 0;
}

.article-cta{
    margin:30px;
    padding:40px;
    text-align:center;
    color:#fff;
    border-radius:15px;
    background:linear-gradient(45deg,#962509,#d74c21);
}

.article-cta h2{
    margin-bottom:15px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:20px;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:14px 28px;
    border-radius:8px;
    font-weight:bold;
    color:#fff;
}

.btn-primary{
    background:#f0b400;
}

.btn-secondary{
    background:#222;
}

.related-posts{
    margin:30px;
    padding:25px;
    background:#f8f8f8;
    border-radius:15px;
}

.related-posts h2{
    color:#962509;
    margin-bottom:15px;
}

.related-posts a{
    display:block;
    padding:15px;
    background:#fff;
    border-radius:10px;
    color:#333;
    text-decoration:none;
    font-weight:bold;
}

.related-posts a:hover{
    background:#fff1ea;
}

.back-link{
    display:inline-block;
    margin:0 30px 30px;
    text-decoration:none;
    color:#962509;
    font-weight:bold;
}

.back-link:hover{
    text-decoration:underline;
}

@media(max-width:768px){

    .article-header{
        padding:20px;
    }

    .article-content{
        padding:0 20px 20px;
    }

    .article-header h1{
        font-size:28px;
    }

    .lead-text{
        font-size:18px;
    }

    .article-content p{
        font-size:16px;
    }

    .highlight-box{
        margin:0 20px 20px;
    }

    .article-cta{
        margin:20px;
        padding:25px;
    }

    .related-posts{
        margin:20px;
    }

}
.transaction-hero{
    min-height:300px;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('../img/home-apikuda.webp');
    background-size:cover;
    background-position:center;
}

.transaction-overlay{
    min-height:300px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.transaction-overlay h1{
    font-size:42px;
    margin-bottom:15px;
}

.transaction-container{
    max-width:1200px;
    margin:auto;
    padding:50px 20px;
}

.step-section,
.payment-section,
.tips-section{
    margin-bottom:60px;
}

.step-section h2,
.payment-section h2,
.tips-section h2{
    text-align:center;
    color:#962509;
    margin-bottom:30px;
}

.step-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.step-card{
    background:white;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.step-number{
    width:60px;
    height:60px;
    margin:auto;
    margin-bottom:15px;
    border-radius:50%;
    background:#962509;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:bold;
}

.payment-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.payment-card{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
    font-size:22px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.payment-card h3{
    color:#962509;
    margin:15px 0;
}

.tips-section ul{
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    list-style:none;
}

.tips-section li{
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.transaction-cta{
    background:linear-gradient(45deg,#962509,#d74c21);
    color:white;
    text-align:center;
    padding:50px 20px;
    border-radius:20px;
}

.transaction-cta h2{
    margin-bottom:15px;
}

@media(max-width:768px){

    .transaction-overlay h1{
        font-size:30px;
    }

    .transaction-container{
        padding:30px 15px;
    }

}
.btn-login,
.btn-daftar{
    width:90px;
    height:38px;

    padding:0;

    display:flex;
    align-items:center;
    justify-content:center;

    box-sizing:border-box;
    flex:none;
}
/* Hanya untuk CTA halaman daftar */
.halaman-daftar{
    text-align:center;
}

.halaman-daftar .btn-daftar{
    width:250px;
    height:55px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:20px;
    margin-left:0;

    font-size:17px;
    font-weight:700;

    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.site-daftar{
    text-align:center;
}

.site-daftar .btn-daftar{
    width:250px;
    height:55px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:20px;
    margin-left:0;

    font-size:17px;
    font-weight:700;
    
    border-radius:10px;
    box-shadow:0 5px 5px rgba(201, 91, 1, 0.2);
}
/* WASPADA PENIPUAN */

.fraud-hero{
    min-height:320px;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('../img/home-apikuda.webp');
    background-size:cover;
    background-position:center;
}

.fraud-overlay{
    min-height:320px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.fraud-badge{
    background:#ffcc00;
    color:#000;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:bold;
    margin-bottom:15px;
}

.fraud-overlay h1{
    font-size:48px;
    margin-bottom:15px;
}

.fraud-overlay p{
    max-width:700px;
    line-height:1.8;
}

.fraud-container{
    max-width:1200px;
    margin:auto;
    padding:50px 20px;
}

.alert-box{
    background:#fff8e7;
    border-left:6px solid #ffcc00;
    padding:25px;
    border-radius:15px;
    display:flex;
    gap:20px;
    align-items:flex-start;
    margin-bottom:50px;
}

.alert-icon{
    font-size:40px;
}

.alert-box h2{
    color:#962509;
    margin-top:0;
}

.fraud-section{
    margin-bottom:60px;
}

.fraud-section h2{
    text-align:center;
    color:#962509;
    margin-bottom:30px;
}

.fraud-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.fraud-card{
    background:white;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.fraud-card:hover{
    transform:translateY(-6px);
}

.fraud-card span{
    font-size:45px;
    display:block;
    margin-bottom:10px;
}

.fraud-card h3{
    color:#962509;
}

.security-section{
    margin-bottom:60px;
}

.security-section h2{
    text-align:center;
    color:#962509;
    margin-bottom:30px;
}

.security-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}

.security-item{
    background:white;
    padding:18px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.fraud-contact{
    text-align:center;
    padding:60px 20px;
    border-radius:20px;
    color:white;
    background:linear-gradient(45deg,#962509,#d74c21);
}

.fraud-contact h2{
    margin-bottom:15px;
}

.fraud-contact p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.fraud-buttons{
    margin-top:25px;
}

.fraud-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:280px;
    height:55px;
    background:#ffcc00;
    color:#000;
    text-decoration:none;
    font-weight:bold;
    border-radius:10px;
    transition:.3s;
}

.fraud-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:768px){

    .fraud-overlay h1{
        font-size:32px;
    }

    .alert-box{
        flex-direction:column;
    }

    .fraud-btn{
        width:100%;
        max-width:300px;
    }

}

/* =====================================
   HALAMAN PANDUAN KEAMANAN AKUN
===================================== */

.security-hero{
    min-height:350px;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('../img/home-apikuda.webp');
    background-size:cover;
    background-position:center;
}

.security-overlay{
    min-height:350px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.security-badge{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:bold;
    margin-bottom:15px;
}

.security-overlay h1{
    font-size:48px;
    margin-bottom:15px;
}

.security-overlay p{
    max-width:700px;
    line-height:1.8;
    font-size:18px;
}

.security-alert{
    background:#fff5d8;
    border-left:5px solid #ffcc00;
    padding:25px;
    margin:40px 0;
    border-radius:15px;
}

.security-alert h2{
    color:#962509;
    margin-top:0;
}

.security-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin:40px 0;
}

.security-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.security-card:hover{
    transform:translateY(-6px);
}

.security-icon{
    font-size:50px;
    margin-bottom:15px;
}

.security-card h2{
    color:#962509;
    font-size:24px;
    margin-bottom:15px;
}

.security-card p{
    color:#555;
    line-height:1.8;
}

.security-card ul{
    margin-top:15px;
    padding-left:20px;
}

.security-card li{
    margin-bottom:10px;
    line-height:1.8;
}

.security-warning-box{
    margin:60px 0;
}

.security-warning-box h2{
    text-align:center;
    color:#962509;
    margin-bottom:25px;
}

.warning-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.warning-item{
    background:#fff1f1;
    border:1px solid #ffd8d8;
    color:#c40000;
    padding:20px;
    border-radius:12px;
    text-align:center;
    font-weight:bold;
}

.security-cta{
    margin:60px 0;
    background:linear-gradient(45deg,#962509,#d74c21);
    color:white;
    text-align:center;
    padding:70px 20px;
    border-radius:20px;
}

.security-cta h2{
    margin-bottom:15px;
}

.security-cta p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.security-cta .btn-daftar{
    margin:25px auto 0;
    width:260px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* MOBILE */

@media(max-width:768px){

    .security-overlay h1{
        font-size:32px;
    }

    .security-overlay p{
        font-size:16px;
    }

    .security-content{
        grid-template-columns:1fr;
    }

    .security-card{
        padding:25px;
    }

    .security-card h2{
        font-size:22px;
    }

    .security-cta{
        padding:50px 15px;
    }

    .security-cta .btn-daftar{
        width:100%;
        max-width:280px;
    }

}

/* ================================
   HALAMAN BUKTI KEMENANGAN
================================ */

.bk-hero{

height:360px;

background:
linear-gradient(rgba(0,0,0,.65),
rgba(0,0,0,.65)),
url('../img/home-apikuda.webp');

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;

text-align:center;

color:white;

}

.bk-overlay{

width:90%;
max-width:900px;

}

.bk-overlay h1{

font-size:42px;
margin-bottom:15px;

}

.bk-overlay p{

font-size:18px;
line-height:1.8;

}

.hero-btn{

margin-top:25px;

display:flex;
justify-content:center;
gap:15px;

}

.bk-wrapper{

width:90%;
max-width:1200px;

margin:60px auto;

}

.bk-title{

text-align:center;

color:#962509;

margin-bottom:30px;

font-size:34px;

}

.slider{

overflow:hidden;

border-radius:18px;

background:white;

padding:20px;

box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.slides{

display:flex;

width:max-content;

animation:slide 35s linear infinite;

}

.slides img{

width:320px;

height:580px;

margin-right:20px;

object-fit:cover;

border-radius:15px;

transition:.3s;

}

.slides img:hover{

transform:scale(1.05);

}

@keyframes slide{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

@media(max-width:768px){

.bk-overlay h1{

font-size:30px;

}

.bk-overlay p{

font-size:16px;

}

.hero-btn{

flex-direction:column;
align-items:center;

}

.slides img{

width:220px;
height:400px;

}

}

/*=================================
STATISTIK
=================================*/

.bk-stats{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;

width:90%;
max-width:1200px;

margin:50px auto;

}

.bk-stat-card{

background:#fff;

padding:30px;

border-radius:18px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.bk-stat-card:hover{

transform:translateY(-8px);

}

.bk-stat-card h2{

color:#962509;

font-size:38px;

margin-bottom:10px;

}

.bk-stat-card span{

font-size:16px;

color:#666;

}


/*=================================
GALERI
=================================*/

.gallery-section{

width:90%;
max-width:1200px;

margin:70px auto;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:25px;

}

.gallery-card{

background:white;

overflow:hidden;

border-radius:18px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.35s;

}

.gallery-card:hover{

transform:translateY(-8px);

}

.gallery-card video{
    width:100%;
    height:auto;
    object-fit:contain;   /* atau cover jika ingin memenuhi area */
    display:block;
    background:#000;
}

.gallery-info{

padding:20px;

}

.gallery-info h3{

color:#962509;

margin-bottom:10px;

}

.gallery-info p{

line-height:1.7;

color:#555;

margin-bottom:15px;

}

.gallery-info span{

background:#962509;

color:white;

padding:6px 14px;

border-radius:30px;

font-size:13px;

}


/*=================================
FEATURE
=================================*/

.winner-feature{

width:90%;

max-width:1200px;

margin:80px auto;

}

.winner-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

gap:25px;

}

.winner-card{

background:white;

padding:30px;

text-align:center;

border-radius:18px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.35s;

}

.winner-card:hover{

transform:translateY(-8px);

}

.winner-icon{

font-size:50px;

margin-bottom:15px;

}

.winner-card h3{

color:#962509;

margin-bottom:15px;

}

.winner-card p{

line-height:1.8;

color:#555;

}


/*===============================
RESPONSIVE
===============================*/

@media(max-width:768px){

.gallery-card img{

height:320px;

}

.bk-stat-card h2{

font-size:30px;

}

}

/*=================================
FAQ
=================================*/

.bk-faq{

width:90%;
max-width:1100px;

margin:80px auto;

}

.faq-box{

display:flex;
flex-direction:column;
gap:15px;

}

.bk-faq .faq-item{

background:#fff;

border-radius:15px;

overflow:hidden;

box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.bk-faq .faq-question{

width:100%;

padding:20px;

border:none;

background:#fff;

text-align:left;

font-size:17px;

font-weight:bold;

color:#962509;

cursor:pointer;

transition:.3s;

}

.bk-faq .faq-question:hover{

background:#fafafa;

}

.bk-faq .faq-answer{

display:none;

padding:0 20px 20px;

line-height:1.8;

color:#555;

}



/*=================================
CTA
=================================*/

.bk-cta{

width:90%;

max-width:1200px;

margin:80px auto;

padding:70px 25px;

text-align:center;

color:white;

border-radius:20px;

background:linear-gradient(45deg,#962509,#d74c21);

}

.bk-cta h2{

font-size:38px;

margin-bottom:15px;

}

.bk-cta p{

max-width:700px;

margin:auto;

line-height:1.9;

}

.bk-cta-button{

margin-top:30px;

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

}



/*=================================
FOOTER
=================================*/

.bk-footer{

margin-top:70px;

background:#962509;

color:white;

text-align:center;

padding:25px;

font-size:15px;

}



/*=================================
RESPONSIVE
=================================*/

@media(max-width:768px){

.bk-cta{

padding:50px 20px;

}

.bk-cta h2{

font-size:28px;

}

.bk-cta-button{

flex-direction:column;

align-items:center;

}

.bk-footer{

font-size:14px;

}

}

.card{background:#fff;padding:20px;margin:20px 0;border-radius:10px}
footer{background:#962509;color:#fff;text-align:center;padding:20px;margin-top:30px}