/* ===============================
AU UNLOCKER - STYLE
================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset */
*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#050505;
color:#fff;
overflow-x:hidden;
background-image:
radial-gradient(rgba(255,215,0,.08) 1px, transparent 1px);
background-size:28px 28px;
}

/* Scrollbar */
::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#111;
}

::-webkit-scrollbar-thumb{
background:#ffd700;
border-radius:10px;
}

/* Loader */
#loader{
position:fixed;
inset:0;
background:#000;
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
z-index:9999;
}

.loader-box{
width:70px;
height:70px;
border:5px solid #333;
border-top:5px solid #ffd700;
border-radius:50%;
animation:spin 1s linear infinite;
}

#loader p{
margin-top:20px;
color:#ffd700;
font-size:18px;
letter-spacing:2px;
}

@keyframes spin{
to{
transform:rotate(360deg);
}
}

/* Header */
header{
position:sticky;
top:0;
z-index:999;
background:#0a0a0a;
border-bottom:1px solid rgba(255,215,0,.15);
backdrop-filter:blur(10px);
}

.topbar{
max-width:1300px;
margin:auto;
padding:15px 25px;
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

/* Menu Button */
#menuBtn{
width:50px;
height:50px;
border:none;
border-radius:12px;
background:#ffd700;
color:#000;
cursor:pointer;
font-size:22px;
transition:.3s;
}

#menuBtn:hover{
transform:scale(1.08);
box-shadow:0 0 20px #ffd700;
}

/* Logo */
.logo h1{
font-family:'Orbitron',sans-serif;
color:#ffd700;
font-size:30px;
text-shadow:0 0 15px rgba(255,215,0,.6);
}

.logo p{
color:#bbb;
font-size:14px;
margin-top:4px;
}

/* Search */
.search-box{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
}

.search-box input{
    width:220px;
    opacity:1;
    padding:12px 15px;
    border:1px solid #ffd700;
    border-radius:30px;
    background:#111;
    color:#fff;
    transition:.3s;
    outline:none;
}

.search-box input:focus{
    box-shadow:0 0 12px rgba(255,215,0,.4);
}

.search-box i{
    position:static;
    transform:none;
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ffd700;
    color:#000;
    border-radius:50%;
    cursor:pointer;
}

/* Hero */
.hero{
text-align:center;
padding:90px 20px;
}

.hero h1{
font-size:52px;
color:#ffd700;
font-family:'Orbitron',sans-serif;
margin-bottom:20px;
text-shadow:0 0 25px rgba(255,215,0,.7);
}

.hero p{
max-width:720px;
margin:auto;
color:#bbb;
line-height:1.8;
font-size:18px;
}

.hero-btn{
display:inline-block;
margin-top:35px;
padding:15px 34px;
background:#ffd700;
color:#000;
border-radius:12px;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.hero-btn:hover{
transform:translateY(-5px);
box-shadow:0 0 25px rgba(255,215,0,.6);
}

/* ===============================
SECTION
================================== */

.section{
width:100%;
max-width:1300px;
margin:auto;
padding:70px 20px;
}

.section-title{
text-align:center;
font-family:'Orbitron',sans-serif;
font-size:34px;
color:#ffd700;
margin-bottom:40px;
text-shadow:0 0 15px rgba(255,215,0,.6);
}

.section-title i{
margin-right:10px;
}

/* ===============================
CARD GRID
================================== */

.card-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

/* ===============================
CARD
================================== */

.card{
background:#111;
border:1px solid rgba(255,215,0,.18);
border-radius:18px;
overflow:hidden;
transition:.35s;
text-align:center;
padding:18px;
position:relative;
}

.card:hover{
transform:translateY(-8px);
border-color:#ffd700;
box-shadow:0 0 30px rgba(255,215,0,.30);
}

/* ===============================
TOOL IMAGE
================================== */

.tool-img{
width:100%;
height:180px;
object-fit:contain;
object-position:center;
background:#111;
border-radius:12px;
margin-bottom:18px;
border:1px solid rgba(255,215,0,.15);
padding:5px;
}

/* ===============================
TITLE
================================== */

.card h3{
font-size:20px;
margin-bottom:18px;
color:#fff;
line-height:1.5;
min-height:58px;
}

/* ===============================
PRICE
================================== */

.price{
color:#ffd700;
font-size:32px;
margin:15px 0;
text-shadow:0 0 15px rgba(255,215,0,.5);
}

/* ===============================
BUTTON
================================== */

.button-group{
display:flex;
gap:10px;
margin-top:15px;
}

.download-btn,
.buy-btn{
flex:1;
display:flex;
justify-content:center;
align-items:center;
gap:8px;
padding:14px 10px;
border:none;
border-radius:12px;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.download-btn{
background:#ffd700;
color:#000;
}

.buy-btn{
background:#25D366;
color:#fff;
}

.download-btn:hover,
.buy-btn:hover{
transform:translateY(-3px);
box-shadow:0 0 20px rgba(255,215,0,.5);
}

.done-btn{
display:flex;
align-items:center;
justify-content:center;
width:100%;
margin-top:20px;
padding:14px;
border:none;
border-radius:12px;
background:#ffd700;
color:#000;
text-decoration:none;
font-size:16px;
font-weight:700;
cursor:pointer;
transition:.3s;
}

.done-btn:hover{
box-shadow:0 0 20px rgba(255,215,0,.6);
transform:translateY(-2px);
}

/* ===============================
SEARCH ITEM
================================== */

.search-item{

transition:.3s;

}

/* ===============================
SIDEBAR
================================== */

#sidebar{
position:fixed;
top:0;
left:-280px;
width:280px;
height:100%;
background:#111;
padding:25px 0;
transition:.35s;
z-index:9999;
box-shadow:5px 0 20px rgba(0,0,0,.5);
}

#sidebar.active{
left:0;
}

#closeBtn{
background:none;
border:none;
color:#ffd700;
font-size:28px;
margin:0 20px 25px;
cursor:pointer;
}

#sidebar a{
display:block;
padding:16px 25px;
color:#fff;
text-decoration:none;
transition:.3s;
font-size:16px;
}

#sidebar a i{
width:28px;
color:#ffd700;
}

#sidebar a:hover{
background:rgba(255,215,0,.12);
color:#ffd700;
}

/* ===============================
QR POPUP
================================== */

.popup{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,.8);
justify-content:center;
align-items:center;
z-index:99999;
}

.popup-box{
width:90%;
max-width:420px;
background:#111;
border:1px solid #ffd700;
border-radius:18px;
padding:25px;
text-align:center;
position:relative;
}

.popup-box h2{
color:#ffd700;
margin-bottom:20px;
}

.qr-img{
width:220px;
max-width:100%;
border-radius:10px;
}

.popup-box p{
color:#ccc;
margin:20px 0;
}

.close-popup{
position:absolute;
right:18px;
top:12px;
color:#ffd700;
font-size:30px;
cursor:pointer;
}

/* ===============================
WHATSAPP
================================== */

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
border-radius:50%;
background:#25D366;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size:30px;
box-shadow:0 0 20px rgba(37,211,102,.5);
z-index:999;
}

.whatsapp:hover{
transform:scale(1.08);
}

/* ===============================
BACK TO TOP
================================== */

#topBtn{
display:none;
position:fixed;
right:20px;
bottom:95px;
width:50px;
height:50px;
border:none;
border-radius:50%;
background:#ffd700;
color:#000;
cursor:pointer;
font-size:18px;
box-shadow:0 0 15px rgba(255,215,0,.5);
}

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

footer{
background:#0b0b0b;
text-align:center;
padding:40px 20px;
border-top:1px solid rgba(255,215,0,.2);
}

footer h3{
color:#ffd700;
font-family:'Orbitron',sans-serif;
margin-bottom:10px;
}

footer p{
color:#aaa;
margin:6px 0;
}

/* Service Card Buttons */

.btn-group{
display:flex;
gap:12px;
margin-top:18px;
}

.btn-group .download-btn{
flex:1;
display:flex;
align-items:center;
justify-content:center;
height:48px;
border:none;
border-radius:12px;
background:#ffd700;
color:#000;
font-weight:700;
text-decoration:none;
cursor:pointer;
transition:.3s;
}

.btn-group .download-btn:hover{
transform:translateY(-3px);
box-shadow:0 0 20px rgba(255,215,0,.6);
}

/* ===============================
   MOBILE HEADER FIX
================================== */

@media (max-width:768px){

.topbar{
    display:grid;
    grid-template-columns:50px 1fr 50px;
    align-items:center;
    gap:10px;
    padding:12px 15px;
}

#menuBtn{
    width:50px;
    height:50px;
}

.logo{
    text-align:center;
}

.logo h1{
    font-size:22px;
}

.logo p{
    font-size:11px;
}

.search-box{
    width:auto;
    justify-self:end;
    position:relative;
}

.search-box input{
    width:160px;
}

.search-box i{
    width:46px;
    height:46px;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:15px;
}

.card-container{
    grid-template-columns:1fr;
}

.tool-img{
    height:200px;
}

.section-title{
    font-size:26px;
}

}