
*{
    
margin:0;
padding:0;
box-sizing:border-box;
font-family:Inter,Segoe UI,sans-serif;
}
body{
min-height:100vh;
display:flex;
justify-content:center;
align-items:flex-start;
padding:30px 15px;
overflow-x:hidden;
overflow-y:auto;
background:
radial-gradient(circle at 20% 20%,rgba(212,175,55,.25),transparent 30%),
radial-gradient(circle at 80% 80%,rgba(255,255,255,.12),transparent 25%),
linear-gradient(135deg,#020202,#090909,#151515);
}
body::before{
position:fixed;
inset:0;
}
body::before{
content:"";
position:fixed;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:700px;
height:700px;
pointer-events:none;
z-index:0;
filter:blur(90px);
}
/* CARD */
/* CARD DESKTOP */
.container-box{
position:relative;
z-index:2;
width:520px;
max-width:100%;
padding:45px 45px 40px;
border-radius:30px;
background:
linear-gradient(
145deg,
rgba(255,255,255,.12),
rgba(255,255,255,.04)
);
backdrop-filter:blur(25px);
border:1px solid rgba(255,215,80,.35);
box-shadow:
0 30px 80px rgba(0,0,0,.8),
0 0 50px rgba(255,215,80,.15);
}
/* GOLD BORDER */
.content{
position:relative;
z-index:2;
}
/* LOGO */
.logo{
width:320px;
max-width:100%;
display:block;
margin:-10px auto 10px;
filter:
drop-shadow(0 0 35px rgba(255,215,0,.75));
transform:scale(1.05);
}
/* TITLE */
.title{
text-align:center;
margin-top:20px;
color:white;
}
.title h1{
font-size:34px;
font-weight:900;
letter-spacing:2px;
background:
linear-gradient(
90deg,
#fff,
#ffd700,
#fff
);
-webkit-background-clip:text;
color:transparent;
}
.title p{
color:#cfcfcf;
margin-top:8px;
}
/* SEARCH AREA */
.search-box{
margin-top:35px;
display:flex;
background:
rgba(0,0,0,.55);
border:
1px solid rgba(255,215,0,.35);
border-radius:18px;
overflow:hidden;
box-shadow:
inset 0 0 20px rgba(255,255,255,.08);
}
.search-box input{
flex:1;
height:60px;
background:transparent;
border:none;
outline:none;
padding:0 20px;
color:white;
font-size:16px;
}
.search-box input::placeholder{
color:#aaa;
}
.search-box button{
width:70px;
border:none;
background:
linear-gradient(
135deg,
#ffd700,
#b8860b
);
color:#111;
font-size:24px;
cursor:pointer;
transition:.3s;
}
.search-box button:hover{
transform:scale(1.05);
box-shadow:
0 0 30px gold;
}
/* RESULT */
#result{
margin-top:20px;
text-align:center;
color:#ffd700;
font-weight:bold;
}
/* INFO */
.info{
margin-top:30px;
padding:20px;
border-radius:20px;
background:
rgba(255,255,255,.06);
border:
1px solid rgba(255,255,255,.12);
color:#ddd;
}
.info h3{
color:#ffd700;
font-size:18px;
}
.info li{
margin:10px 0;
}
.footer{
margin-top:30px;
padding-top:20px;
border-top:1px solid rgba(255,215,0,.15);
color:#888;
font-size:13px;
letter-spacing:2px;
text-align:center;
width:100%;
}
/* GUIDE ITEM */
.guide-item{
display:flex;
align-items:flex-start;
gap:14px;
margin:16px 0;
padding:14px;
border-radius:18px;
background:
linear-gradient(
145deg,
rgba(255,215,0,.10),
rgba(255,255,255,.03)
);
border:1px solid rgba(255,215,0,.18);
transition:.3s;
}
.guide-item:hover{
transform:translateY(-3px);
box-shadow:
0 10px 30px rgba(255,215,0,.15);
border-color:rgba(255,215,0,.5);
}
.guide-item span{
font-size:13px;
font-weight:900;
letter-spacing:1px;
color:#ffd700;
min-width:32px;
padding-top:3px;
}
.guide-item p{
margin:0;
color:#ddd;
font-size:14px;
line-height:1.6;
}
.guide-item strong{
display:block;
font-size:16px;
color:white;
margin-bottom:3px;
}
@media (max-width:600px){

html,
body{
width:100%;
min-height:100%;
overflow-x:hidden;
}

body{
padding:12px;
display:flex;
justify-content:center;
align-items:center;
}

body:before{
width:420px;
height:420px;
}

.container-box{
width:100%;
max-width:100%;
margin:0;
padding:20px 16px;
border-radius:22px;
box-sizing:border-box;
}

.content{
width:100%;
}

.logo{
width:190px;
max-width:100%;
margin:0 auto 8px;
display:block;
}

.title{
margin-top:6px;
}

.title h1{
font-size:25px;
}

.title p{
font-size:14px;
line-height:1.5;
}

.search-box{
width:100%;
margin-top:18px;
height:50px;
border-radius:15px;
overflow:hidden;
}

.search-box input{
flex:1;
width:100%;
min-width:0;
height:50px;
padding:0 15px;
font-size:14px;
}

.search-box button{
width:52px;
height:50px;
font-size:20px;
flex-shrink:0;
}

#result{
font-size:14px;
margin-top:15px;
}

.info{
margin-top:18px;
padding:15px;
}

.info h3{
font-size:16px;
}

.guide-item{
padding:12px;
margin:12px 0;
gap:10px;
}

.guide-item span{
font-size:12px;
min-width:28px;
}

.guide-item strong{
font-size:15px;
}

.guide-item p{
font-size:13px;
line-height:1.5;
}

.image-section{
margin-top:16px;
padding:10px;
}

.promo-image{
width:100%;
height:auto;
display:block;
border-radius:10px;
}

.footer{
margin-top:20px;
padding-top:15px;
font-size:11px;
letter-spacing:1px;
}

img{
max-width:100%;
height:auto;
display:block;
}

}
    /* IMAGE SECTION */
.image-section{
margin-top:18px;
padding:14px;
border-radius:18px;
background:
linear-gradient(
145deg,
rgba(255,215,0,.10),
rgba(255,255,255,.03)
);
border:1px solid rgba(255,215,0,.18);
display:flex;
justify-content:center;
align-items:center;
transition:.3s;
}

.image-section:hover{
transform:translateY(-3px);
box-shadow:
0 10px 30px rgba(255,215,0,.15);
border-color:rgba(255,215,0,.5);
}

.promo-image{
width:100%;
display:block;
border-radius:12px;
object-fit:cover;
}



    .partner-section{
    margin-top:18px;
    padding:12px 0;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
}

.partner-title{
    display:block;
    margin-bottom:8px;
    font-size:12px;
    color:rgba(255,255,255,.6);
    letter-spacing:2px;
    text-transform:uppercase;
}

.partner-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.partner-links span{
    color:rgba(255,255,255,.25);
}

.partner-links a{
    color:#d4af37;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.25s ease;
}

.partner-links a:hover{
    color:#ffd86b;
}
