*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI,Tahoma,sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:linear-gradient(180deg,#f6f6f6,#e4e4e4,#d4d4d4);
color:#2d2d2d;
line-height:1.7;
}

a{
text-decoration:none;
color:inherit;
}

img{
max-width:100%;
display:block;
}

header{
position:sticky;
top:0;
z-index:999;
background:linear-gradient(135deg,#6f4d18,#9f7426,#c89b42,#efefef);
box-shadow:0 5px 25px rgba(0,0,0,.18);
backdrop-filter:blur(10px);
}
.navbar{
max-width:1250px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:18px;
gap:25px;
}
.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo img{
height:55px;
width:auto;
display:block;
object-fit:contain;
background:none;
padding:0;
border-radius:0;
}

.menu{

display:flex;
gap:28px;

}

.menu a{

color:#fff;
font-weight:600;
transition:.3s;
}
.menu a:hover{
color:#ffe08a;

}

.search-area{

display:flex;
gap:10px;

}

.search-area input{

width:260px;

padding:12px 18px;

border:none;
outline:none;

border-radius:50px;

background:#fff;

}

.search-area button{

padding:12px 20px;

border:none;

border-radius:50px;

background:#6a4513;

color:#fff;

cursor:pointer;

font-weight:bold;

transition:.3s;

}

.search-area button:hover{

background:#3f2a09;

}

/*====================*/

.hero{

max-width:1250px;

margin:auto;

padding:70px 20px;

display:grid;

grid-template-columns:1.1fr 1fr;

gap:50px;

align-items:center;

}

.hero h1{

font-size:52px;

line-height:1.2;

margin-bottom:20px;

color:#5d3d11;

}

.hero p{

font-size:18px;

margin-bottom:30px;

color:#131212;

}

.hero-btn{

display:flex;
gap:15px;
flex-wrap:wrap;

}

.btn{

padding:15px 32px;

border-radius:50px;

font-weight:bold;

transition:.35s;

display:inline-block;

}

.btn-gold{

background:linear-gradient(135deg,#6f4d18,#b88b2f,#f5d17b);

color:#fff;

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

}

.btn-gold:hover{

transform:translateY(-4px);

}

.btn-gray{

background:#555;

color:#fff;

}

.btn-gray:hover{

background:#333;

}

/*====================*/

.hero-image{

display:flex;
justify-content:center;

}

.hero-image img{

aspect-ratio:1/1;

width:100%;

max-width:520px;

object-fit:cover;

border-radius:25px;

border:8px solid #fff;

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

}

/*====================*/

.info-strip{

background:linear-gradient(90deg,#6f4d18,#b88b2f,#dedede);

margin-top:30px;

}

.info-wrap{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

padding:25px;

}

.info-box{

background:rgba(255,255,255,.15);

backdrop-filter:blur(10px);

border-radius:18px;

padding:25px;

text-align:center;

color:#fff;

}

.info-box h3{

font-size:32px;

margin-bottom:10px;

}

/*====================*/

section{

max-width:1200px;

margin:auto;

padding:70px 20px;

}

.section-title{

text-align:center;

font-size:38px;

color:#6f4d18;

margin-bottom:20px;

}

.section-desc{

text-align:center;

color:#666;

max-width:900px;

margin:auto;

margin-bottom:50px;

}

/*====================*/

@media(max-width:1000px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero-btn{

justify-content:center;

}

.menu{

display:none;

}

.navbar{

flex-wrap:wrap;

}

.search-area{

width:100%;

}

.search-area input{

width:100%;

}

.info-wrap{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.hero h1{

font-size:34px;

}

.info-wrap{

grid-template-columns:1fr;

}
}
.sport-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
margin-bottom:70px;
}

.sport-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.35s;
border:1px solid #ececec;
}

.sport-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 45px rgba(0,0,0,.18);
}

.sport-card img{
width:100%;
aspect-ratio:1/1;
object-fit:cover;
}

.sport-content{
padding:22px;
}

.sport-content h3{
color:#6f4d18;
margin-bottom:12px;
font-size:22px;
}

.sport-content p{
color:#666;
font-size:15px;
line-height:1.7;
}

.article-box{
background:#fff;
padding:45px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.article-box h2{
color:#6f4d18;
margin:35px 0 15px;
font-size:34px;
}

.article-box h3{
margin:30px 0 15px;
color:#7a5317;
font-size:28px;
}

.article-box p{
margin-bottom:18px;
text-align:justify;
color:#555;
line-height:1.9;
}

.article-box ul{
margin:20px 0;
padding-left:25px;
}

.article-box li{
margin-bottom:12px;
color:#f6fa01;
}

.highlight{
background:linear-gradient(135deg,#6f4d18,#b88b2f);
padding:25px;
border-radius:20px;
color:#fff;
margin:30px 0;
}
.faq-container{
max-width:1000px;
margin:auto;
}

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

.faq-question{
padding:22px 25px;
cursor:pointer;
font-size:18px;
font-weight:bold;
display:flex;
justify-content:space-between;
align-items:center;
background:linear-gradient(135deg,#6f4d18,#b88b2f);
color:#fff;
}

.faq-question span{
font-size:24px;
transition:.3s;
}

.faq-answer{
display:none;
padding:22px;
background:#fff;
color:#555;
line-height:1.8;
}
.review-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.review-card{
background:#fff;
padding:28px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.35s;
}

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

.review-star{
color:#d69b2c;
font-size:20px;
margin-bottom:15px;
}

.review-name{
font-weight:bold;
margin-top:20px;
color:#6f4d18;
}
footer{
background:linear-gradient(135deg,#4a3110,#76501a,#b88b2f,#444);
color:#fff;
margin-top:80px;
}

.footer-wrap{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
padding:60px 20px;
}

.footer-wrap h3{
margin-bottom:18px;
}

.footer-wrap p,
.footer-wrap li{
color:#f1f1f1;
font-size:15px;
line-height:1.8;
}

.footer-wrap ul{
list-style:none;
}

.footer-wrap li{
margin-bottom:10px;
}

.footer-bottom{
text-align:center;
padding:25px;
border-top:1px solid rgba(255,255,255,.15);
font-size:14px;
}

#topButton{
position:fixed;
right:25px;
bottom:25px;
width:55px;
height:55px;
border:none;
border-radius:50%;
background:linear-gradient(135deg,#8c611f,#d8a63f);
color:#fff;
font-size:22px;
cursor:pointer;
display:none;
box-shadow:0 10px 20px rgba(0,0,0,.25);
}
.jp-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.82);
display:flex;
align-items:center;
justify-content:center;
padding:20px;
z-index:999999;
backdrop-filter:blur(8px);
animation:fadeOverlay .35s ease;
}

.jp-overlay-box{
width:100%;
max-width:430px;
background:linear-gradient(145deg,#f5f5f5,#d8d8d8,#9f9f9f);
border-radius:22px;
padding:28px;
text-align:center;
box-shadow:0 20px 60px rgba(0,0,0,.45);
border:2px solid #b88a37;
position:relative;
overflow:hidden;
}

.jp-overlay-box:before{
content:"";
position:absolute;
left:-40%;
top:-40%;
width:180%;
height:180%;
background:radial-gradient(circle,rgba(184,138,55,.18),transparent 65%);
pointer-events:none;
}

.jp-logo{
display:block;
width:170px;
max-width:100%;
margin:0 auto 22px;
height:auto;
position:relative;
z-index:2;
}

.jp-banner{
display:block;
width:100%;
border-radius:18px;
margin-bottom:25px;
box-shadow:0 12px 35px rgba(0,0,0,.25);
position:relative;
z-index:2;
}

.jp-btn-group{
display:flex;
gap:14px;
position:relative;
z-index:2;
}

.jp-btn{
flex:1;
padding:15px 10px;
border-radius:14px;
text-decoration:none;
font-size:16px;
font-weight:700;
letter-spacing:.5px;
transition:.25s;
}

.jp-login{
background:linear-gradient(180deg,#f7d78d,#b67a23);
color:#fff;
box-shadow:0 8px 20px rgba(182,122,35,.35);
}

.jp-login:hover{
transform:translateY(-3px);
box-shadow:0 14px 30px rgba(182,122,35,.45);
}

.jp-daftar{
background:linear-gradient(180deg,#666,#2f2f2f);
color:#fff;
box-shadow:0 8px 20px rgba(0,0,0,.3);
}

.jp-daftar:hover{
transform:translateY(-3px);
box-shadow:0 14px 30px rgba(0,0,0,.45);
}

@keyframes fadeOverlay{
from{
opacity:0;
}
to{
opacity:1;
}
}

@media(max-width:600px){

.jp-overlay-box{
padding:22px;
border-radius:18px;
}

.jp-logo{
width:145px;
}

.jp-btn-group{
flex-direction:column;
}

.jp-btn{
padding:15px;
font-size:15px;
}

}
.jp-close{
position:absolute;
top:12px;
right:12px;
width:38px;
height:38px;
border:none;
border-radius:50%;
background:rgba(0,0,0,.55);
color:#fff;
font-size:20px;
font-weight:bold;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:.25s;
z-index:10;
}

.jp-close:hover{
background:#b67a23;
transform:rotate(90deg);
}