/* RESET */

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

body{
background:#050505;
color:white;
overflow-x:hidden;
}



/* TOPBAR */

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

padding:18px 20px;

background:#000;

border-bottom:1px solid #161616;

position:sticky;
top:0;

z-index:999;
}

.brand{
display:flex;
align-items:center;
gap:14px;
}

.logo-box{
width:55px;
height:55px;

background:#ffb300;

border-radius:18px;

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

font-size:28px;
font-weight:bold;

color:black;
}

.brand h2{
font-size:20px;
color:#ffb300;
}

.top-icons{
display:flex;
gap:18px;

font-size:32px;
}



/* HERO */

.hero{
padding:70px 20px 40px;
text-align:center;
}

.hero-badge{
display:inline-flex;
align-items:center;
gap:10px;

padding:12px 22px;

border-radius:50px;

border:1px solid #4a3810;

background:#161102;

color:#ffb300;

margin-bottom:28px;

font-size:15px;
}

.hero h1{
font-size:42px;
line-height:1.4;

margin-bottom:20px;
}

.hero p{
font-size:18px;
line-height:1.7;

color:#999;
}



/* STATS */

.stats-grid{
display:grid;
grid-template-columns:1fr 1fr;

gap:18px;

padding:20px;
}

.stats-card{

background:#111;
border:1px solid #2a2a2a;
border-radius:28px;
padding:24px;
text-align:center;

box-shadow:
0 0 12px #ffb30055,
0 0 25px #ffb30022;

transition:.3s;

}

.active-card{
background:#171203;
border:1px solid #5b4310;
}

.icon-box{
width:72px;
height:72px;

border-radius:24px;

background:#191303;

border:1px solid #4d3a0d;

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

font-size:28px;

color:#ffb300;

margin-bottom:25px;
}

.stats-card h2{
font-size:46px;
color:#ffb300;

margin-bottom:12px;
}

.stats-card p{
font-size:19px;
line-height:1.6;

color:#8d8d8d;
}



/* BANNER */

.banner-slider{
padding:20px;
}

.banner-card{
background:linear-gradient(135deg,#1a1303,#0d0d0d);

border:1px solid #4f3a0d;

border-radius:32px;

padding:35px 25px;
}

.banner-card h2{
font-size:38px;
line-height:1.4;

margin-bottom:18px;

color:white;
}

.banner-card p{
font-size:18px;
line-height:1.8;

color:#d0d0d0;
}



/* INFO */

.info-section{
padding:20px;
}

.info-box{
background:#111;

border:1px solid #222;

border-radius:30px;

padding:30px 24px;
}

.info-box h2{
font-size:38px;

margin-bottom:18px;

color:white;
}

.info-box p{
font-size:18px;
line-height:1.8;

color:#aaa;
}



/* SOCIAL */

.social-section{
padding:40px 20px 20px;

display:flex;

justify-content:center;

align-items:center;

gap:20px;

flex-wrap:nowrap;
overflow-x:auto;
}

.social-link{
height:95px;

background:white;

border-radius:26px;

display:flex;
align-items:center;

padding:0 24px;

gap:20px;

text-decoration:none;

color:black;

font-size:28px;
font-weight:bold;
}

.social-link img{
width:60px;
height:60px;

object-fit:contain;
}



/* FOOTER */

.site-footer{
padding:25px 20px 120px;
text-align:center;
}

.site-footer p{
margin-top:10px;

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

color:#999;
}

.footer-dev{
color:#ffb300 !important;
font-weight:bold;
}



/* BOTTOM NAV */

.bottom-nav{
position:fixed;

bottom:0;
left:0;

width:100%;

background:#000;

border-top:1px solid #1a1a1a;

display:flex;
justify-content:space-around;

padding:14px 5px;

z-index:999;
}

.bottom-nav a{
display:flex;
flex-direction:column;
align-items:center;

gap:6px;

text-decoration:none;

color:#8f8f8f;

font-size:13px;
}

.bottom-nav i{
font-size:24px;
}

.bottom-nav a.active{
color:#ffb300;
}



/* MOBILE */

@media(max-width:768px){

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

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

.stats-card{
padding:24px 16px;
}

.stats-card h2{
font-size:34px;
}

.stats-card p{
font-size:15px;
}

.icon-box{
width:60px;
height:60px;

font-size:24px;
}

.banner-card h2{
font-size:28px;
}

.banner-card p{
font-size:15px;
}

.info-box h2{
font-size:28px;
}

.info-box p{
font-size:15px;
}

.social-link{
height:82px;

font-size:22px;
}

.social-link img{
width:50px;
height:50px;
}

}
/* NEON SOCIAL FIX */

.social-section{
padding:40px 20px 20px;

display:flex;

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

gap:20px;

flex-wrap:nowrap;

overflow-x:auto;
}

.social-section a{
width:110px;
min-width:110px;

height:110px;

border-radius:28px;

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

background:#0d0d0d;

font-size:55px;

text-decoration:none;
}



/* FACEBOOK */

.social-section a:nth-child(1){
color:#1877f2;

box-shadow:
0 0 10px #1877f2,
0 0 25px #1877f2;
}



/* INSTAGRAM */

.social-section a:nth-child(2){
color:#ff2fb9;

box-shadow:
0 0 10px #ff2fb9,
0 0 25px #ff2fb9;
}



/* YOUTUBE */

.social-section a:nth-child(3){
color:#ff0000;

box-shadow:
0 0 10px #ff0000,
0 0 25px #ff0000;
}




/* NEW SOCIAL FIX */

.social-section{
width:100%;

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

gap:25px;

padding:40px 20px 120px;
}

.social-btn{
width:95px;
height:95px;

border-radius:28px;

background:#111;

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

font-size:42px;

text-decoration:none;
}



/* COLORS */

.social-btn:nth-child(1){
color:#1877f2;
box-shadow:0 0 20px #1877f2;
}

.social-btn:nth-child(2){
color:#ff2fb9;
box-shadow:0 0 20px #ff2fb9;
}

.social-btn:nth-child(3){
color:#ff0000;
box-shadow:0 0 20px #ff0000;
}
/* FINAL NAV FIX */

.bottom-nav a{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

gap:5px;

font-size:13px;

text-decoration:none;

color:white;
}

.bottom-nav a.active{
color:#ffb300;
}
/* SERVICE CARDS */

.cards{
display:grid;
grid-template-columns:1fr 1fr;
gap:16px;

padding:16px;
padding-bottom:120px;
}

.product-card{
background:#111;

border:1px solid #222;

border-radius:24px;

overflow:hidden;
}

.product-card img{
width:100%;
height:180px;

object-fit:cover;

display:block;
}

.product-card h2{
font-size:16px;

line-height:1.4;

padding:14px 14px 6px;

color:white;
}

.product-card p{
padding:0 14px;

font-size:13px;

color:#999;

margin-bottom:12px;
}

.price{
padding:0 14px;

margin-bottom:14px;
}

.new-price{
font-size:18px;

font-weight:bold;

color:#ffb300;

margin-right:8px;
}

.old-price{
font-size:14px;

color:#777;

text-decoration:line-through;
}

.order-btn{
margin:0 14px 14px;

height:48px;

border-radius:16px;

background:#2563eb;

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

gap:8px;

text-decoration:none;

font-size:15px;
font-weight:bold;

color:white;
}






/* ADMIN PANEL */

.admin-body{
background:#050505;
color:white;
font-family:Arial,sans-serif;
padding:20px;
}

.sidebar{
width:100%;
max-width:500px;
margin:auto;
background:#0f0f0f;
padding:25px;
border-radius:30px;
overflow:hidden;
}

.sidebar h2{
color:#ffb300;
font-size:28px;
margin-bottom:30px;
text-align:center;
width:100%;
}

.sidebar ul{
list-style:none;
}

.sidebar ul li{
padding:16px 18px;
margin-bottom:12px;
border-radius:14px;
font-size:17px;
color:#d4d4d4;
background:#151515;
border:1px solid #222;
transition:.3s;
}

.sidebar ul li:hover{
background:#1c1c1c;
border-color:#ffb300;
color:#ffb300;
}

.logout-btn{
display:inline-block;
margin-top:25px;
padding:12px 20px;
background:#ff3b30;
border-radius:14px;
color:white;
text-decoration:none;
font-weight:bold;
}

.main-content{
padding:30px;
width:100%;
}

.main-content h1{
font-size:44px;
margin-bottom:28px;
background:linear-gradient(90deg,#ffffff,#ffb300);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.add-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:10px 18px;

height:50px;

background:#ffb300;

color:black;

font-weight:bold;

border-radius:16px;

text-decoration:none;

font-size:15px;

}

.dashboard-cards{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
margin-bottom:35px;
}

.dash-card{
background:linear-gradient(145deg,#111,#0b0b0b);
border:1px solid #1e1e1e;
border-radius:26px;
padding:28px 24px;
box-shadow:0 0 20px rgba(255,179,0,.06);
transition:.3s;
}

.dash-card:hover{
transform:translateY(-4px);
border-color:#ffb300;
}

.dash-card h2{
font-size:42px;
color:#ffb300;
margin-bottom:10px;
}

.dash-card p{
font-size:16px;
color:#999;
}

.service-table{
display:grid;
grid-template-columns:1fr;
gap:18px;
margin-top:25px;
}

.service-item{

background:#0d0d0d;

border:2px solid #ffb300;

border-radius:30px;

padding:20px 18px;

transition:.3s;

box-shadow:
0 0 20px rgba(255,179,0,0.15);

}

.service-item:hover{
border-color:#ffb300;
transform:translateY(-3px);
box-shadow:0 0 20px rgba(255,179,0,.08);
}

.service-item h3{

font-size:22px;

line-height:1.5;

margin-bottom:18px;

color:white;

word-break:break-word;

}

.service-item p{
font-size:15px;
color:#9a9a9a;
line-height:1.7;
}

.delete-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:10px 18px;

height:50px;

background:#ff3b30;

border-radius:16px;

color:white;

text-decoration:none;

font-size:15px;

font-weight:bold;

}

.login-box{
background:#111;
border:1px solid #222;
border-radius:24px;
padding:25px;
margin-top:30px;
max-width:450px;
}

.login-box h1{
font-size:30px;
margin-bottom:20px;
}

.login-box input{
width:100%;
height:55px;
background:#0d0d0d;
border:1px solid #222;
border-radius:14px;
padding:0 15px;
color:white;
margin-bottom:15px;
font-size:15px;
}

.login-box button{
width:100%;
height:55px;
background:#ffb300;
border:none;
border-radius:14px;
font-size:16px;
font-weight:bold;
cursor:pointer;
}

@media(max-width:768px){

.admin-body{
flex-direction:column;
}

.sidebar{
position:relative;
width:100%;
height:auto;
border-right:none;
border-bottom:1px solid #1f1f1f;
}

.main-content{
margin-left:0;
padding:20px;
}

.main-content h1{
font-size:34px;
}

.dashboard-cards{
grid-template-columns:1fr;
}

.service-item{
flex-direction:column;
align-items:flex-start;
}

}
.sidebar ul li a{
color:inherit;
text-decoration:none;
display:block;
width:100%;
height:100%;
}
.active-admin{

border:2px solid #ffb300 !important;

background:#171203 !important;

color:#ffb300 !important;

box-shadow:
0 0 15px rgba(255,179,0,0.3);

}
.admin-menu{

display:grid;

grid-template-columns:1fr 1fr;

gap:16px;

margin-top:25px;

}

.admin-card{

background:#111;

border:1px solid #222;

border-radius:24px;

padding:18px 14px;

display:flex;

flex-direction:column;

align-items:center;

justify-content:center;

gap:14px;

text-decoration:none;

color:white;

font-size:16px;

font-weight:bold;

transition:0.3s;

min-height:95px;

}

.admin-card i{

font-size:34px;
margin-bottom:6px;
color:#ffb300;

}

.admin-card:hover{

transform:translateY(-3px);

border-color:#ffb300;

box-shadow:
0 0 18px rgba(255,179,0,0.18);

}

.logout-card i{

color:#ff3b30;

}

.logout-card:hover{

border-color:#ff3b30;

box-shadow:
0 0 18px rgba(255,59,48,0.18);

}
html,body{
height:auto !important;
overflow-x:hidden;
}
.service-item p{

font-size:16px;

color:#a1a1a1;

margin-bottom:10px;

line-height:1.7;

}

.service-item .add-btn,
.service-item .delete-btn{

flex:1;

height:52px;

border-radius:16px;

font-size:16px;

}
.topbar-new{

width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 20px;
background:#0d0d0d;
border-bottom:1px solid #222;
position:sticky;
top:0;
z-index:999;

}

.left-top{

display:flex;
align-items:center;
gap:16px;

}

.menu-icon{

font-size:34px;
color:#ffb300;

}

.brand-new{

display:flex;
align-items:center;
gap:12px;

}

.site-logo{

width:42px;
height:42px;
object-fit:contain;

}

.brand-new h2{

font-size:16px;
font-weight:800;
line-height:1.2;
color:#ffb300;

}

.right-top{

display:flex;
align-items:center;
gap:2px;
width:auto;

}

.balance-btn{

background:#ffb300;
color:black;
padding:10px 14px;
border-radius:14px;
font-size:16px;
font-weight:bold;
display:flex;
align-items:center;
gap:6px;
text-decoration:none;
box-shadow:0 0 15px #ffb30055;

}

.top-icon{

width:42px;
height:42px;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
text-decoration:none;
padding:0;
margin:0;

}

.whatsapp{

background:#25D366;
color:white;

}

.telegram{

background:#229ED9;
color:white;

}

.profile-img{

width:55px;
height:55px;
border-radius:50%;
object-fit:cover;
border:2px solid #ffb300;

}

@media(max-width:768px){

.topbar-new{

padding:14px 15px;

}

.brand-new h2{

font-size:20px;

}

.logo-s{

width:50px;
height:50px;
font-size:28px;

}

.balance-btn{

padding:10px 14px;
font-size:16px;

}

.top-icon{

width:45px;
height:45px;
font-size:24px;

}

.profile-img{

width:45px;
height:45px;

}

}
.side-menu{

position:fixed;
top:0;
left:-100%;
width:280px;
height:100vh;
background:#111;
z-index:999999;
padding:25px;
transition:.4s;
display:flex;
flex-direction:column;
gap:18px;
box-shadow:0 0 40px #000;

}

.menu-top{

display:flex;
flex-direction:column;
align-items:center;
margin-bottom:20px;

}

.menu-profile{

width:90px;
height:90px;
border-radius:50%;
border:3px solid #ffb300;
object-fit:cover;
background:#222;

}

.menu-top h3{

margin-top:14px;
color:#ffb300;
font-size:24px;

}

.side-menu a{

display:flex;
align-items:center;
gap:12px;
height:54px;
padding:0 18px;
border-radius:14px;
background:#1a1a1a;
color:white;
text-decoration:none;
font-size:18px;

}

.side-menu a i{

color:#ffb300;

}

.close-btn{

position:absolute;
top:18px;
right:18px;
width:42px;
height:42px;
border-radius:12px;
background:#ffb300;
color:black;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
cursor:pointer;

}


.auth-box{

width:100%;
max-width:420px;
margin:40px auto;
background:#111;
padding:25px;
border-radius:25px;
border:2px solid #ffb300;

}

.auth-box h1{

text-align:center;
color:#ffb300;
margin-bottom:25px;

}

.auth-box input{

width:100%;
height:55px;
border:none;
outline:none;
margin-bottom:15px;
padding:0 15px;
border-radius:14px;
background:#1b1b1b;
color:white;
font-size:16px;

}

.auth-box button{

width:100%;
height:55px;
border:none;
border-radius:14px;
background:#ffb300;
color:black;
font-size:18px;
font-weight:bold;
cursor:pointer;

}

.auth-link{

display:block;
text-align:center;
margin-top:18px;
color:#ffb300;
text-decoration:none;

}

.error-msg{

color:red;
text-align:center;
margin-bottom:15px;

}



.auth-popup{

position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:rgba(0,0,0,.7);
display:none;
align-items:center;
justify-content:center;
z-index:999999;

}

.auth-popup-box{

width:90%;
max-width:400px;
background:#111;
border:2px solid #ffb300;
border-radius:25px;
padding:25px;
position:relative;
text-align:center;
box-shadow:0 0 40px #000;

}

.auth-popup-box h2{

color:#ffb300;
font-size:30px;
margin-bottom:15px;

}

.auth-popup-box p{

color:#bbb;
font-size:16px;
line-height:1.7;
margin-bottom:25px;

}

.auth-btns{

display:flex;
gap:12px;

}

.auth-btns a{

flex:1;
height:52px;
display:flex;
align-items:center;
justify-content:center;
border-radius:14px;
text-decoration:none;
font-size:18px;
font-weight:bold;

}

.login-btn{

background:#1f1f1f;
color:white;

}

.register-btn{

background:#ffb300;
color:black;

}

.auth-close{

position:absolute;
top:14px;
right:14px;
width:38px;
height:38px;
border-radius:12px;
background:#ffb300;
color:black;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
cursor:pointer;

}

.topup-box{

width:100%;
max-width:420px;
margin:50px auto;
background:#111;
padding:25px;
border-radius:25px;
border:2px solid #ffb300;
text-align:center;

}

.topup-box h1{

color:#ffb300;
margin-bottom:20px;

}

.topup-box p{

color:#ccc;
margin-bottom:20px;

}

.topup-box input{

width:100%;
height:55px;
border:none;
outline:none;
border-radius:14px;
padding:0 15px;
font-size:17px;
background:#1b1b1b;
color:white;
margin-bottom:18px;

}

.topup-box button{

width:100%;
height:55px;
border:none;
border-radius:14px;
background:#ffb300;
color:black;
font-size:18px;
font-weight:bold;

}


.pay-btn{

width:100%;
height:55px;
border-radius:14px;
background:#ffb300;
color:black;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
font-weight:bold;
text-decoration:none;
margin-top:20px;

}

.instruction-box{

background:#1a1a1a;
padding:18px;
border-radius:18px;
margin-top:20px;
text-align:left;

}

.instruction-box h3{

color:#ffb300;
margin-bottom:12px;

}

.instruction-box ul{

padding-left:18px;
color:#ddd;
line-height:2;

}


.stats-card:hover{

transform:translateY(-4px);

box-shadow:
0 0 18px #ffb300aa,
0 0 35px #ffb30055;

}