*{

margin:0;

padding:0;

box-sizing:border-box;

}

body{

background:#031d4e;

font-family:Arial;

}

header{

height:100px;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 30px;

background:#133769;

}

@media(max-width:768px){

header{
    flex-direction:column;
    height:auto;
    padding:20px;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
}

}

@media(max-width:768px){

header{
    flex-direction:column;
    gap:15px;
}

.button{
    display:flex;
    gap:10px;
}

}

.logo img{

height:80px;

}

nav{

display:flex;

gap:25px;

}

nav a{

color:white;

text-decoration:none;

font-size:15px;

}

nav a:hover{

color:gold;

}

.button button{

padding:10px 20px;

border:none;

border-radius:300px;

cursor:pointer;

margin-left:10px;

}

.daftar{

background:gold;

}

.login{

background:lime;

}

.button button{

    transition:.3s;

}

.button button:hover{

    transform:translateY(-3px);

}

.banner{

width:100%;

display:flex;

justify-content:center;

margin-top:20px;

}

.banner img{
    width:100%;
    max-width:900px;
}

.banner img{
    display:block;
}

.provider {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 50px 20px;
}

.provider h2 {
    text-align: center;
    color: #FFD700;
    font-size: 36px;
    margin-bottom: 40px;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.provider-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #15213d;
    cursor: pointer;
    transition: .4s ease;
}

.provider-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: .5s ease;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: .4s;
}

.overlay a {
    padding: 14px 35px;
    background: #FFD700;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: .3s;
}

.overlay a:hover {
    background: white;
}

.provider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255,215,0,.35);
}

.provider-card:hover img {
    transform: scale(1.08);
}

.provider-card:hover .overlay {
    opacity: 1;
}

/* Tablet */
@media (max-width:992px){

.provider-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* HP */
@media (max-width:600px){

.provider-grid{
    grid-template-columns:1fr;
}

.provider h2{
    font-size:28px;
}

.provider-card img{
    height:180px;
}

}
.jackpot{

    width:100%;
max-width:500px;

    margin:20px auto;

    padding:20px;

    text-align:center;

    border:2px solid gold;

    border-radius:20px;

    background:#0215389c;

}

h2{
  color:rgb(246, 248, 241);

}

.seo{

width:500px;

margin:auto;

padding:40px;

background:#13233d;

border-radius:10px;

margin-top:40px;

}

.seo h1{

color:#FFD700;

margin-bottom:20px;

}

.seo h2{

margin-top:30px;

color:#FFD700;

}

.seo p{

line-height:32px;

color:white;

margin-top:10px;

}

.seo li{

color:white;

margin-left:25px;

line-height:30px;

}

.jackpot p{

    color:rgb(187, 232, 25);

    letter-spacing:5px;

    font-size:20px

}

.jackpot h1{

    color:rgb(237, 240, 227);

    font-size:30px;

    margin-top:25px;

    text-shadow:
    0 0 10px gold,
    0 0 20px gold,
    0 0 35px gold;

}

@keyframes glow{

0%{

text-shadow:
0 0 5px gold;

}

50%{

text-shadow:
0 0 10px gold,
0 0 30px gold;

}

100%{

text-shadow:
0 0 5px gold;

}

}

.jackpot h1{

animation:glow 1.9s infinite;

}
.marquee{

overflow:hidden;

white-space:nowrap;

color:#FFD700;

margin-top:10px;

}

.marquee span{

display:inline-block;

padding-left:100%;

animation:jalan 25s linear infinite;

}

@keyframes jalan{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-100%);
}

}

.slider{
    width:100%;
    overflow:hidden;
    padding:20px 0;
}


.slide-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:scroll 30s linear infinite;
}

@keyframes scroll{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

.slide-track:hover{

animation-play-state:paused;

}

.card{
    width:220px;
    background:#0d67e6;
    border-radius:12px;
    overflow:hidden;
    flex-shrink:0;
    transition:0.3s;
    display:flex;
    flex-direction:column;
}

.card img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
}

.card-content h3{
    color:#fff;
    font-size:18px;
    margin-bottom:8px;
}

.card-content p{
    color:#01080f;
    font-size:14px;
}
.card:hover{

transform:translateY(-10px);

box-shadow:0 0 25px gold;

}

.faq{
    max-width:1100px;
    width:95%;
    margin:auto;
}

details{

margin-top:15px;

background:#1d3154;

padding:15px;

border-radius:10px;

color:white;

}

summary{

cursor:pointer;

font-weight:bold;

}

footer{

margin-top:50px;

padding:40px;

background:#081122;

text-align:center;

}

footer img{

height:35px;

margin:10px;

}

footer p{

margin-top:20px;

color:white;

}

.provider-menu{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

.provider-menu h2{
    color:#9ca7b8;
    font-size:26px;
    font-weight:700;
    margin-bottom:25px;
    text-transform:uppercase;
}

.provider-list{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.provider-list a{

    flex:1;
    min-width:120px;

    text-align:center;

    padding:18px 10px;

    background:#111;

    color:#bfbfbf;

    text-decoration:none;

    font-weight:700;

    border-radius:4px;

    transition:.3s;
}

.provider-list a:hover{

    background:#FFD700;

    color:#000;

    transform:translateY(-3px);

}

@media(max-width:768px){

.provider-list{

    justify-content:center;

}

.provider-list a{

    flex:0 0 calc(50% - 10px);

}

}

@media(max-width:480px){

.provider-list a{

    flex:0 0 100%;

}

}

.chat{

position:fixed;

bottom:30px;

right:30px;

width:55px;

height:55px;

background:#00c853;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:30px;

text-decoration:none;

box-shadow:0 0 20px lime;

}

#topBtn{
    position: fixed;
    bottom: 110px;
    right: 30px;

    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;

    background: linear-gradient(135deg,#FFD700,#FFA500);
    color: #111;

    font-size: 24px;
    font-weight: bold;
    cursor: pointer;

    opacity:0;
visibility:hidden;

    box-shadow: 0 0 20px rgba(255,215,0,.5);
    transition: .3s ease;

    z-index: 999;
}

#topBtn.show{

opacity:1;
visibility:visible;

}

