/* ==========================================
   RAPID CORE PREMIUM
========================================== */

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

:root{

    --bg:#0d0d0d;
    --bg2:#151515;
    --card:#1a1a1a;
    --border:#2a2a2a;

    --primary:#d60000;
    --primary-hover:#ff2b2b;

    --text:#ffffff;
    --text2:#bdbdbd;

    --success:#11b95c;
    --warning:#d08a00;
    --danger:#d60000;
    --info:#0d8be6;

    --radius:14px;

    --sidebar-width:270px;
    --topbar-height:70px;

}

html{

    font-size:16px;
    scroll-behavior:smooth;

}

html,
body{

    width:100%;
    min-height:100%;
    background:var(--bg);
    color:var(--text);
    overflow-x:auto;

}

body{

    display:flex;
    flex-direction:column;
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;

}

a{

    text-decoration:none;
    color:inherit;
    transition:.25s;

}

img{

    display:block;
    width:100%;
    max-width:100%;
    height:auto;

}

ul{

    list-style:none;

}

button,
input,
select,
textarea{

    font-family:inherit;
    outline:none;

}

button{

    cursor:pointer;

}

::-webkit-scrollbar{

    width:8px;
    height:8px;

}

::-webkit-scrollbar-track{

    background:#171717;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);
    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-hover);

}

/* ==========================================
   LAYOUT
========================================== */

.layout{

    display:flex;
    width:100%;
    min-height:100vh;

}

.sidebar{

    position:fixed;

    top:0;
    left:0;
    bottom:0;

    width:var(--sidebar-width);

    background:#111;

    border-right:1px solid var(--border);

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    overflow-x:hidden;
    overflow-y:auto;

    z-index:1000;

    transition:.30s;

}

.main{

    width:calc(100% - var(--sidebar-width));

    min-height:100vh;

    margin-left:var(--sidebar-width);

    display:flex;
    flex-direction:column;

    background:var(--bg);

}

.logo{

    min-height:70px;

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

    gap:12px;

    padding:0 18px;

    color:var(--primary);

    font-size:24px;
    font-weight:700;

    border-bottom:1px solid var(--border);

}

.logo i{

    font-size:28px;

}

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

.sidebar ul{

    padding:16px;

    display:flex;
    flex-direction:column;

    gap:8px;

}

.sidebar ul li{

    width:100%;

}

.sidebar ul li a{

    width:100%;

    min-height:50px;

    display:flex;
    align-items:center;

    gap:14px;

    padding:12px 16px;

    border-radius:12px;

    color:#dddddd;

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

    transition:.25s;

}

.sidebar ul li a i{

    width:22px;

    text-align:center;

    font-size:17px;

    flex-shrink:0;

}

.sidebar ul li a:hover{

    background:var(--primary);

    color:#fff;

    transform:translateX(4px);

}

.sidebar ul li a.active{

    background:var(--primary);

    color:#fff;

}

.sidebar-footer{

    display:flex;

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

    gap:18px;

    padding:20px;

    border-top:1px solid var(--border);

}

.sidebar-footer a{

    width:46px;
    height:46px;

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

    border-radius:50%;

    background:#1d1d1d;

    color:#fff;

    font-size:20px;

    transition:.25s;

}

.sidebar-footer a:hover{

    background:var(--primary);

    transform:translateY(-3px);

}

/* ==========================================
   CONTAINER
========================================== */

.container{

    width:100%;
    max-width:1400px;
    margin:auto;

}

.container-fluid{

    width:100%;

}

.row{

    display:flex;

    flex-wrap:wrap;

    margin:-10px;

}

[class*="col-"]{

    width:100%;

    padding:10px;

}

.col-12{

    width:100%;

}

@media(min-width:768px){

.col-md-2{width:16.6667%;}
.col-md-3{width:25%;}
.col-md-4{width:33.3333%;}
.col-md-5{width:41.6667%;}
.col-md-6{width:50%;}
.col-md-8{width:66.6667%;}
.col-md-10{width:83.3333%;}

}

@media(min-width:992px){

.col-lg-3{width:25%;}
.col-lg-4{width:33.3333%;}
.col-lg-6{width:50%;}
.col-lg-8{width:66.6667%;}
.col-lg-9{width:75%;}

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.sidebar{

    left:-270px;

}

.sidebar.show{

    left:0;

}

.main{

    width:100%;

    margin-left:0;

}

}

@media(max-width:768px){

.logo{

    min-height:65px;

    font-size:22px;

}

.logo i{

    font-size:26px;

}

.sidebar{

    width:260px;

}

}

@media(max-width:480px){

.logo{

    min-height:60px;

    font-size:20px;

}

.logo i{

    font-size:24px;

}

.sidebar{

    width:250px;

}

.sidebar ul{

    padding:12px;

}

.sidebar ul li a{

    min-height:48px;

    font-size:14px;

}

}
/* ==========================================
   TOPBAR
========================================== */

.topbar{

    position:sticky;
    top:0;
    z-index:900;

    width:100%;
    min-height:70px;

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

    gap:20px;

    padding:15px 25px;

    background:var(--bg2);

    border-bottom:1px solid var(--border);

}

.topbar-left{

    display:flex;
    align-items:center;

    gap:16px;

    flex:1;

    min-width:0;

}

.topbar-left h2{

    font-size:24px;
    font-weight:700;
    color:#fff;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;

}

.menu-btn{

    width:46px;
    height:46px;

    flex-shrink:0;

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

    border:none;
    border-radius:12px;

    background:var(--primary);

    color:#fff;

    font-size:20px;

    cursor:pointer;

    transition:.25s;

}

.menu-btn:hover{

    background:var(--primary-hover);

}

.topbar-right{

    display:flex;
    align-items:center;

    justify-content:flex-end;

    gap:18px;

    flex-shrink:0;

}

.notify{

    position:relative;

    width:46px;
    height:46px;

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

    border-radius:50%;

    background:#1d1d1d;

    color:#fff;

    transition:.25s;

}

.notify:hover{

    background:var(--primary);

}

.notify-dot{

    position:absolute;

    top:8px;
    right:8px;

    width:10px;
    height:10px;

    border-radius:50%;

    background:var(--primary);

}

.avatar img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    display: block;

}
/* ==========================================
   PROFILE
========================================== */

.profile{

    display:flex;
    align-items:center;

    gap:12px;

}

.avatar{

    width:48px;
    height:48px;

    flex-shrink:0;

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

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:18px;
    font-weight:700;

}

.profile-info{

    display:flex;
    flex-direction:column;
    justify-content:center;

    min-width:0;

}

.profile-info h4{

    font-size:15px;
    font-weight:600;
    color:#fff;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;

}

.profile-info small{

    font-size:13px;
    color:var(--text2);

}

/* ==========================================
   PAGE
========================================== */

.page-content{

    flex:1;

    width:100%;

    padding:25px;

}

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

.footer{

    margin-top:auto;

    width:100%;

    padding:20px 25px;

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

    gap:20px;

    flex-wrap:wrap;

    border-top:1px solid var(--border);

    color:var(--text2);

}

.footer-left{

    flex:1;

}

.footer-right{

    display:flex;
    align-items:center;

    gap:15px;

}

.footer-right a{

    width:40px;
    height:40px;

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

    border-radius:50%;

    background:#1d1d1d;

    color:#fff;

    transition:.25s;

}

.footer-right a:hover{

    background:var(--primary);

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.topbar{

    padding:12px 18px;

}

.page-content{

    padding:20px;

}

}

@media(max-width:768px){

.topbar{

    min-height:65px;

    padding:10px 15px;

}

.topbar-left h2{

    font-size:20px;

}

.profile-info{

    display:none;

}

.page-content{

    padding:18px;

}

.footer{

    flex-direction:column;
    text-align:center;

}

}

@media(max-width:480px){

.topbar{

    min-height:60px;

    padding:10px 12px;

    gap:10px;

}

.menu-btn{

    width:42px;
    height:42px;

    font-size:18px;

}

.notify{

    width:42px;
    height:42px;

}

.avatar{

    width:42px;
    height:42px;

    font-size:16px;

}

.topbar-left h2{

    font-size:18px;

}

.page-content{

    padding:15px;

}

.footer{

    padding:18px 15px;

}

}

/* ==========================================
   BUTTONS
========================================== */

.btn,
.btn-primary,
.btn-success,
.btn-secondary,
.btn-danger,
.btn-warning,
.btn-info{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    width:auto;
    min-width:140px;
    min-height:48px;

    padding:12px 18px;

    border:none;
    border-radius:12px;

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

    cursor:pointer;

    white-space:nowrap;

    transition:.25s;

}

.btn-primary{

    background:var(--primary);
    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-hover);

}

.btn-success{

    background:var(--success);
    color:#fff;

}

.btn-success:hover{

    filter:brightness(1.08);

}

.btn-secondary{

    background:#303030;
    color:#fff;

}

.btn-secondary:hover{

    background:#404040;

}

.btn-danger{

    background:var(--danger);
    color:#fff;

}

.btn-danger:hover{

    filter:brightness(1.08);

}

.btn-warning{

    background:var(--warning);
    color:#fff;

}

.btn-warning:hover{

    filter:brightness(1.08);

}

.btn-info{

    background:var(--info);
    color:#fff;

}

.btn-info:hover{

    filter:brightness(1.08);

}

.btn-sm{

    width:auto;
    min-height:36px;

    padding:8px 14px;

    font-size:13px;

}

.btn-lg{

    min-height:54px;

    font-size:16px;

}

.btn:disabled{

    opacity:.6;
    cursor:not-allowed;

}

/* ==========================================
   UTILITIES
========================================== */

.d-flex{

    display:flex;

}

.flex-column{

    flex-direction:column;

}

.flex-wrap{

    flex-wrap:wrap;

}

.justify-content-between{

    justify-content:space-between;

}

.justify-content-center{

    justify-content:center;

}

.justify-content-end{

    justify-content:flex-end;

}

.align-items-center{

    align-items:center;

}

.text-center{

    text-align:center;

}

.text-end{

    text-align:right;

}

.w-100{

    width:100%;

}

.h-100{

    height:100%;

}

.rounded{

    border-radius:12px;

}

.img-fluid{

    display:block;
    max-width:100%;
    height:auto;

}

.shadow-sm{

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

}

.table-responsive{

    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;

}

/* ==========================================
   DASHBOARD
========================================== */

.dashboard{

    width:100%;

}

.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin-bottom:30px;

    flex-wrap:wrap;

}

.dashboard-header h2{

    color:#ffffff;

    font-size:30px;

    font-weight:700;

    margin-bottom:6px;

}

.dashboard-header p{

    color:var(--text2);

    font-size:15px;

}

/* ==========================================
   DASHBOARD CARDS
========================================== */

.dashboard-cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

    margin-bottom:30px;

}

.card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:18px;

    padding:22px;

    transition:.30s;

    overflow:hidden;

}

.card:hover{

    border-color:var(--primary);

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(214,0,0,.18);

}

.card-icon{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:15px;

    background:linear-gradient(135deg,#ff0000,#b30000);

    color:#ffffff;

    font-size:24px;

    margin-bottom:18px;

}

.card-info h5{

    color:var(--text2);

    font-size:14px;

    margin-bottom:8px;

    font-weight:500;

}

.card-info h2{

    color:#ffffff;

    font-size:30px;

    font-weight:700;

    line-height:1.2;

}

/* ==========================================
   DASHBOARD BOX
========================================== */

.dashboard-box{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:18px;

    padding:24px;

    margin-bottom:25px;

    transition:.30s;

}

.dashboard-box:hover{

    border-color:var(--primary);

    box-shadow:0 15px 35px rgba(214,0,0,.15);

}

.dashboard-box h3{

    display:flex;

    align-items:center;

    gap:10px;

    color:#ffffff;

    font-size:20px;

    margin-bottom:22px;

}

.dashboard-box h3 i{

    color:var(--primary);

}

/* ==========================================
   RECOMMENDED PRODUCTS
========================================== */

.recommended-products{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

}

.product-card{

    background:#202020;

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    padding:20px;

    text-align:center;

    transition:.30s;

}

.product-card:hover{

    transform:translateY(-4px);

    border-color:var(--primary);

}

.product-icon{

    width:65px;

    height:65px;

    margin:0 auto 15px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(214,0,0,.12);

    color:var(--primary);

    font-size:28px;

}

.product-info h4{

    color:#ffffff;

    font-size:18px;

    margin-bottom:15px;

    min-height:45px;

}

.product-info .btn{

    width:100%;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:768px){

.dashboard-header{

    align-items:flex-start;

}

.dashboard-header h2{

    font-size:24px;

}

.dashboard-cards{

    grid-template-columns:1fr;

}

.recommended-products{

    grid-template-columns:1fr;

}

.card{

    padding:18px;

}

.dashboard-box{

    padding:18px;

}

}

/* ==========================================
   DASHBOARD GRID
========================================== */

.dashboard-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:22px;

    margin-bottom:30px;

}

/* ==========================================
   TOP SELLERS
========================================== */

.seller-list{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.seller-card{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px 20px;

    border-radius:16px;

    background:#1d1d1d;

    border:1px solid var(--border);

    transition:.30s;

}

.seller-card:hover{

    border-color:var(--primary);

    transform:translateY(-3px);

}

.seller-left{

    display:flex;

    align-items:center;

    gap:18px;

}

.seller-rank{

    width:48px;

    height:48px;

    border-radius:50%;

    background:rgba(214,0,0,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:700;

}

.seller-name{

    color:#fff;

    font-size:17px;

    font-weight:700;

    margin-bottom:6px;

}

.seller-keys{

    color:#bdbdbd;

    font-size:14px;

}

.seller-keys strong{

    color:#ffffff;

}

.empty-box{

    text-align:center;

    padding:25px;

    color:#888;

}

@media(max-width:768px){

.seller-card{

    padding:16px;

}

.seller-rank{

    width:42px;

    height:42px;

    font-size:20px;

}

.seller-name{

    font-size:16px;

}

}

/* ===========================
   OWNER PREMIUM CARDS
=========================== */

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:24px;
    margin-top:25px;
}

.premium-card{
    background:#ffffff;
    border:1px solid #e8e8e8;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.premium-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

/* Header */

.card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    border-bottom:1px solid #ececec;
}

.card-title{
    display:flex;
    align-items:center;
    gap:12px;
}

.card-title i{
    font-size:22px;
    color:#2563eb;
}

.card-title h3{
    margin:0;
    font-size:18px;
    font-weight:700;
}

.card-badge{
    min-width:38px;
    height:38px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
}

.card-badge.danger{
    background:#dc2626;
}

/* Body */

.card-body{
    padding:18px;
}

/* Recent Orders */

.order-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 16px;
    margin-bottom:12px;
    border:1px solid #ededed;
    border-radius:12px;
    transition:.25s;
}

.order-card:hover{
    background:#f8faff;
}

.order-info h4{
    margin:0;
    font-size:15px;
    font-weight:700;
}

.order-info p{
    margin:4px 0 0;
    color:#666;
    font-size:13px;
}

.status{
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
    color:#fff;
}

.status.success{
    background:#16a34a;
}

.status.pending{
    background:#f59e0b;
}

.status.failed{
    background:#dc2626;
}

/* Low Stock */

.stock-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 16px;
    margin-bottom:12px;
    border:1px solid #ededed;
    border-radius:12px;
    transition:.25s;
}

.stock-card:hover{
    background:#fff8f8;
}

.stock-info h4{
    margin:0;
    font-size:15px;
    font-weight:700;
}

.stock-info small{
    display:block;
    margin-top:4px;
    color:#777;
}

.stock-count{
    min-width:48px;
    height:48px;
    border-radius:50%;
    background:#dc2626;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:700;
}

/* Empty */

.empty-box{
    text-align:center;
    padding:50px 20px;
    color:#777;
}

.empty-box i{
    font-size:42px;
    margin-bottom:12px;
    color:#22c55e;
}

.empty-box p{
    margin:0;
    font-size:15px;
}

/* Mobile */

@media(max-width:768px){

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

    .order-card,
    .stock-card{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .status,
    .stock-count{
        align-self:flex-end;
    }

}
/* ==========================================
   OWNER SUMMARY
========================================== */

.owner-summary{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:18px;

}

.owner-card{

    background:#202020;

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    padding:20px;

    transition:.30s;

}

.owner-card:hover{

    border-color:var(--primary);

    transform:translateY(-3px);

}

.owner-card h5{

    color:var(--text2);

    font-size:14px;

    margin-bottom:8px;

}

.owner-card h2{

    color:#ffffff;

    font-size:28px;

    font-weight:700;

}

/* ==========================================
   REFERRAL SUMMARY
========================================== */

.referral-summary{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.referral-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px;

    background:#202020;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.06);

}

.referral-item span{

    color:var(--text2);

    font-size:14px;

}

.referral-item strong{

    color:#ffffff;

    font-size:16px;

    font-weight:700;

}

/* ==========================================
   OWNER REVENUE
========================================== */

.revenue-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:18px;

}

.revenue-card{

    background:#202020;

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    padding:20px;

}

.revenue-card h5{

    color:var(--text2);

    margin-bottom:8px;

    font-size:14px;

}

.revenue-card h2{

    color:#35d07f;

    font-size:28px;

    font-weight:700;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:768px){

.owner-summary{

    grid-template-columns:1fr;

}

.revenue-grid{

    grid-template-columns:1fr;

}

.dashboard-grid{

    grid-template-columns:1fr;

}

.top-seller-table{

    min-width:600px;

}

}


/* ==========================================
   QUICK ACTIONS
========================================== */

.quick-actions{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:18px;

}

.quick-btn{

    min-height:120px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:20px;

    background:linear-gradient(135deg,#d60000,#990000);

    color:#ffffff;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    transition:.30s;

}

.quick-btn:hover{

    transform:translateY(-5px);

    background:linear-gradient(135deg,#ff1f1f,#b30000);

    box-shadow:0 15px 35px rgba(214,0,0,.25);

}

.quick-btn i{

    font-size:28px;

}

.quick-btn span{

    font-size:15px;

    font-weight:600;

}

/* ==========================================
   LATEST NEWS
========================================== */

.news-list{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.news-item{

    display:flex;

    align-items:flex-start;

    gap:15px;

    padding:16px 18px;

    background:#202020;

    border:1px solid rgba(255,255,255,.06);

    border-radius:15px;

    transition:.25s;

}

.news-item:hover{

    border-color:var(--primary);

    transform:translateX(4px);

}

.news-item i{

    color:#35d07f;

    font-size:18px;

    margin-top:2px;

}

.news-item span{

    color:#d8d8d8;

    font-size:14px;

    line-height:1.7;

}

/* ==========================================
   SUPPORT
========================================== */

.support-buttons{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:18px;

}

.telegram-btn,

.whatsapp-btn{

    min-height:54px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    border-radius:14px;

    color:#ffffff;

    font-size:15px;

    font-weight:700;

    transition:.30s;

}

.telegram-btn{

    background:#229ED9;

}

.telegram-btn:hover{

    background:#1b8bc2;

    transform:translateY(-3px);

}

.whatsapp-btn{

    background:#25D366;

}

.whatsapp-btn:hover{

    background:#1fb458;

    transform:translateY(-3px);

}

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

.dashboard-footer{

    margin-top:35px;

    padding:20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

.dashboard-footer p{

    color:#9d9d9d;

    font-size:14px;

    letter-spacing:.5px;

}

/* ==========================================
   ANIMATION
========================================== */

.dashboard-header,

.dashboard-cards,

.dashboard-box,

.owner-summary,

.revenue-grid,

.quick-actions,

.news-list{

    animation:dashboardFade .35s ease;

}

@keyframes dashboardFade{

    from{

        opacity:0;

        transform:translateY(18px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.quick-actions{

    grid-template-columns:1fr;

}

.support-buttons{

    grid-template-columns:1fr;

}

.quick-btn{

    min-height:95px;

}

.news-item{

    padding:14px;

}

.dashboard-footer{

    margin-top:25px;

    padding:16px;

}

}

@media(max-width:480px){

.quick-btn{

    min-height:85px;

    border-radius:14px;

}

.quick-btn i{

    font-size:24px;

}

.quick-btn span{

    font-size:14px;

}

.news-item{

    gap:12px;

}

.news-item span{

    font-size:13px;

}

.dashboard-footer p{

    font-size:13px;

}

}


/* ==========================================
   FORM
========================================== */

.form-group{

    margin-bottom:20px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    color:#dddddd;

    font-size:14px;

    font-weight:500;

}

.form-control,
.form-select,
input,
select,
textarea{

    width:100%;

    min-height:48px;

    padding:12px 15px;

    background:#141414;

    border:1px solid var(--border);

    border-radius:12px;

    color:#ffffff;

    transition:.25s;

}

textarea{

    resize:vertical;

    min-height:120px;

}

.form-control:focus,
.form-select:focus,
input:focus,
select:focus,
textarea:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 3px rgba(214,0,0,.15);

}

.form-control::placeholder,
textarea::placeholder{

    color:#8d8d8d;

}




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

.card-header{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;

    padding:18px 22px;

    background:#181818;

    border-bottom:1px solid var(--border);

    border-radius:16px 16px 0 0;

}

.card-header h2,
.card-header h3,
.card-header h4{

    color:#fff;

    font-size:18px;

    font-weight:600;

    margin:0;

}

.card-header i{

    color:var(--primary);

}

.card-body{

    width:100%;

    padding:22px;

}

.card-footer{

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

    gap:15px;

    padding:18px 22px;

    border-top:1px solid var(--border);

    background:#181818;

    border-radius:0 0 16px 16px;

}

/* ==========================================
   TABLE
========================================== */

.table-responsive{

    width:100%;

    overflow-x:auto;

    -webkit-overflow-scrolling:touch;

    border-radius:14px;

}

.table{

    width:100%;

    min-width:520px;

    border-collapse:collapse;

    background:transparent;

}

.table thead{

    background:#1d1d1d;

}

.table th{

    padding:15px;

    text-align:left;

    color:#fff;

    font-size:14px;

    font-weight:600;

    white-space:nowrap;

    border-bottom:1px solid var(--border);

}

.table td{

    padding:15px;

    color:#dddddd;

    font-size:14px;

    vertical-align:middle;

    border-bottom:1px solid #242424;

}

.table tbody tr{

    transition:.25s;

}

.table tbody tr:hover{

    background:#1a1a1a;

}

.table img{

    width:45px;
    height:45px;

    border-radius:10px;

    object-fit:cover;

}

.table a{

    color:#fff;

    transition:.25s;

}

.table a:hover{

    color:var(--primary);

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:768px){

.card-header{

    padding:16px 18px;

    flex-wrap:wrap;

}

.card-body{

    padding:18px;

}

.card-footer{

    padding:16px 18px;

    flex-direction:column;

    align-items:flex-start;

}

.table{

    min-width:520px;

}

}

@media(max-width:480px){

.card-header{

    padding:15px;

}

.card-body{

    padding:15px;

}

.card-footer{

    padding:15px;

}

.table{

    min-width:520px;

}

.table th,
.table td{

    padding:12px;

    font-size:13px;

}

.table img{

    width:40px;
    height:40px;

}

}
/* ==========================================
   SHOP CARD
========================================== */

.card-img-top{

    width:100%;
    aspect-ratio:16/10;

    object-fit:cover;

    display:block;

    border-bottom:1px solid var(--border);

    background:#101010;

}

.product-price{

    color:var(--success);

    font-size:22px;

    font-weight:700;

    line-height:1.2;

}

.product-stock{

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

    color:var(--text2);

    font-size:14px;

}

/* ==========================================
   BADGE
========================================== */

.badge{

    display:inline-flex;

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

    min-height:28px;

    padding:6px 12px;

    border-radius:50px;

    font-size:12px;

    font-weight:600;

    white-space:nowrap;

}

.bg-success{

    background:#0d5f34;

    color:#fff;

}

.bg-danger{

    background:#8f1010;

    color:#fff;

}

.bg-warning{

    background:#8b5a00;

    color:#fff;

}

.bg-info{

    background:#005d91;

    color:#fff;

}

/* ==========================================
   ORDER STATUS
========================================== */

.status-success{

    color:#11b95c;

    font-weight:600;

}

.status-pending{

    color:#ffb400;

    font-weight:600;

}

.status-failed{

    color:#ff4545;

    font-weight:600;

}

/* ==========================================
   SHOP
========================================== */

.shop-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));

    gap:22px;

}

.product-card{

    width:100%;

    height:100%;

    display:flex;

    flex-direction:column;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:16px;

    overflow:hidden;

    transition:.30s;

}

.product-card:hover{

    border-color:var(--primary);

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(214,0,0,.18);

}

.product-card img{

    width:100%;

    aspect-ratio:16/10;

    object-fit:cover;

    background:#111;

}

.product-content{

    display:flex;

    flex-direction:column;

    gap:12px;

    flex:1;

    padding:20px;

}

.product-content h3{

    font-size:20px;

    font-weight:600;

    color:#fff;

    line-height:1.4;

    word-break:break-word;

}

.product-meta{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:10px;

    flex-wrap:wrap;

    color:var(--text2);

    font-size:14px;

}

/* ==========================================
   PRODUCT DETAILS
========================================== */

.product-details{

    display:grid;

    grid-template-columns:320px 1fr;

    gap:25px;

    align-items:start;

}

.product-image{

    width:100%;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:16px;

    overflow:hidden;

}

.product-image img{

    width:100%;

    aspect-ratio:1/1;

    object-fit:cover;

}

.product-info{

    width:100%;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:16px;

    padding:25px;

}

.product-info h2{

    margin-bottom:10px;

    font-size:28px;

}

.product-info p{

    color:var(--text2);

    line-height:1.7;

}

.duration-list{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-top:22px;

}

.duration-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:15px;

    flex-wrap:wrap;

    padding:16px;

    border-radius:12px;

    background:#202020;

    transition:.25s;

}

.duration-item:hover{

    background:#292929;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.product-details{

    grid-template-columns:1fr;

}

.product-image{

    max-width:420px;

    margin:auto;

}

}

@media(max-width:768px){

.shop-grid{

    grid-template-columns:1fr;

    gap:18px;

}

.product-content{

    padding:18px;

}

.product-info{

    padding:20px;

}

}

@media(max-width:480px){

.product-content{

    padding:16px;

}

.product-content h3{

    font-size:18px;

}

.product-price{

    font-size:20px;

}

.product-info{

    padding:18px;

}

.product-info h2{

    font-size:24px;

}

.duration-item{

    flex-direction:column;

    align-items:flex-start;

}

}
/* ==========================================
   BUY PAGE
========================================== */

.buy-card{

    width:100%;
    max-width:760px;

    margin:0 auto;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:18px;

    padding:28px;

    overflow:hidden;

}

.buy-card h2{

    font-size:28px;

    color:#fff;

    margin-bottom:8px;

}

.buy-card p{

    color:var(--text2);

    line-height:1.7;

}

.buy-summary{

    display:flex;

    flex-direction:column;

    gap:14px;

    margin:25px 0;

}

.buy-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:15px;

    padding:16px 18px;

    background:#202020;

    border-radius:12px;

    border:1px solid #2b2b2b;

}

.buy-row span{

    color:var(--text2);

    font-size:14px;

}

.buy-row b{

    color:#fff;

    font-size:16px;

    text-align:right;

}

.buy-actions{

    display:flex;

    gap:15px;

    margin-top:25px;

    flex-wrap:wrap;

}

.buy-actions .btn{

    flex:1;

    min-width:180px;

}

/* ==========================================
   WALLET
========================================== */

.wallet-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:20px;

    margin-bottom:25px;

}

.wallet-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:16px;

    padding:24px;

    text-align:center;

    transition:.30s;

}

.wallet-card:hover{

    border-color:var(--primary);

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(214,0,0,.15);

}

.wallet-card h4{

    color:var(--text2);

    font-size:15px;

    margin-bottom:10px;

}

.wallet-card h2{

    color:#fff;

    font-size:30px;

    line-height:1.2;

}

/* ==========================================
   TRANSACTION
========================================== */

.transaction-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:16px;

    padding:18px 20px;

    margin-bottom:15px;

    transition:.25s;

}

.transaction-card:hover{

    border-color:var(--primary);

}

.transaction-left{

    flex:1;

    min-width:220px;

}

.transaction-left h4{

    margin-bottom:5px;

    color:#fff;

}

.transaction-left p{

    color:var(--text2);

    font-size:14px;

}

.transaction-right{

    text-align:right;

}

.transaction-right h3{

    color:#fff;

    margin-bottom:5px;

}

.transaction-right small{

    color:var(--text2);

}

/* ==========================================
   KEY BOX
========================================== */

.key-box{

    width:100%;

    padding:18px;

    background:#111;

    border:1px solid var(--border);

    border-radius:14px;

    color:#00ff88;

    font-size:15px;

    font-family:monospace;

    line-height:1.8;

    white-space:pre-wrap;

    word-break:break-word;

    overflow-wrap:anywhere;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:768px){

.buy-card{

    padding:22px;

}

.buy-card h2{

    font-size:24px;

}

.buy-row{

    flex-direction:column;

    align-items:flex-start;

    gap:8px;

}

.buy-row b{

    text-align:left;

}

.buy-actions{

    flex-direction:column;

}

.buy-actions .btn{

    width:100%;

}

.wallet-grid{

    grid-template-columns:1fr;

}

.transaction-card{

    flex-direction:column;

    align-items:flex-start;

}

.transaction-right{

    width:100%;

    text-align:left;

}

}

@media(max-width:480px){

.buy-card{

    padding:18px;

    border-radius:15px;

}

.buy-card h2{

    font-size:22px;

}

.wallet-card{

    padding:20px;

}

.wallet-card h2{

    font-size:24px;

}

.transaction-card{

    padding:16px;

}

.key-box{

    padding:15px;

    font-size:13px;

}

}
/* ==========================================
   AUTH
========================================== */

.auth-container{

    width:100%;
    min-height:calc(100vh - 70px);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;

}

.auth-box{

    width:100%;
    max-width:480px;
    background:var(--card);
    border:1px solid var(--border);
    border-radius:18px;
    padding:35px;
    transition:.30s;

}

.auth-box:hover{

    border-color:var(--primary);
    box-shadow:0 15px 35px rgba(214,0,0,.20);

}

.auth-header{

    text-align:center;
    margin-bottom:30px;

}

.auth-header h2{

    font-size:30px;
    color:#fff;
    margin-bottom:8px;

}

.auth-header p{

    color:var(--text2);

}

.auth-footer{

    margin-top:20px;
    text-align:center;

}

.auth-footer a{

    color:var(--primary);
    font-weight:600;

}

/* ==========================================
   ALERT
========================================== */

.alert{

    width:100%;
    padding:15px 18px;
    border-radius:12px;
    margin-bottom:20px;
    font-size:14px;
    animation:fadeDown .30s;

}

.success{

    background:#0b6637;
    color:#fff;

}

.danger{

    background:#8b1111;
    color:#fff;

}

.warning{

    background:#8a6100;
    color:#fff;

}

.info{

    background:#005b94;
    color:#fff;

}

/* ==========================================
   EMPTY
========================================== */

.empty-state{

    width:100%;
    padding:50px 20px;
    text-align:center;
    background:var(--card);
    border:1px dashed var(--border);
    border-radius:16px;

}

.empty-state i{

    font-size:50px;
    color:var(--primary);
    margin-bottom:15px;

}

.empty-state h3{

    color:#fff;
    margin-bottom:10px;

}

.empty-state p{

    color:var(--text2);

}

/* ==========================================
   LOADER
========================================== */

.loader{

    width:50px;
    height:50px;
    border:4px solid #252525;
    border-top:4px solid var(--primary);
    border-radius:50%;
    animation:spin 1s linear infinite;
    margin:auto;

}

/* ==========================================
   ANIMATION
========================================== */

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

@keyframes fadeDown{

    from{

        opacity:0;
        transform:translateY(-15px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.card,
.dashboard-box,
.product-card,
.wallet-card,
.transaction-card,
.auth-box{

    animation:fadeDown .30s;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.sidebar{

    left:-270px;

}

.sidebar.show{

    left:0;

}

.main{

    margin-left:0;
    width:100%;

}

}

@media(max-width:768px){

.topbar{

    padding:0 15px;

}

.topbar-left h2{

    font-size:20px;

}

.profile-info{

    display:none;

}

.dashboard-grid{

    grid-template-columns:1fr;

}

.dashboard-cards{

    grid-template-columns:1fr;

}

.table{

    min-width:700px;

}

.footer{

    flex-direction:column;
    text-align:center;

}

.auth-box{

    padding:25px;

}

}

@media(max-width:480px){

.page-content{

    padding:15px;

}

.logo{

    font-size:20px;

}

.logo i{

    font-size:24px;

}

.topbar{

    height:60px;

}

.menu-btn{

    width:42px;
    height:42px;

}

.avatar{

    width:42px;
    height:42px;

}

}

/* ==========================================
   UTILITIES
========================================== */

.hidden{

    display:none!important;

}

.show{

    display:block!important;

}

.mt-10{

    margin-top:10px;

}

.mt-20{

    margin-top:20px;

}

.mt-30{

    margin-top:30px;

}

.mb-10{

    margin-bottom:10px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.p-0{

    padding:0!important;

}

.p-10{

    padding:10px!important;

}

.p-20{

    padding:20px!important;

}

.text-center{

    text-align:center!important;

}

.text-right{

    text-align:right!important;

}

.fw-bold{

    font-weight:700!important;

}

.border{

    border:1px solid var(--border)!important;

}

.round{

    border-radius:12px!important;
}

/* ==========================================
   PROFILE MODULE
========================================== */

.profile-grid{

    display:grid;

    grid-template-columns:320px 1fr;

    gap:24px;

    margin-top:25px;

}

.profile-card{

    background:#1c1c1c;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:30px;

    text-align:center;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

.profile-card:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(0,0,0,.45);

}

.profile-avatar{

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

}

.profile-avatar img{

    width:120px;

    height:120px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid #ff2b2b;

}

.avatar-circle{

    width:120px;

    height:120px;

    border-radius:50%;

    background:linear-gradient(135deg,#ff0000,#b30000);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:46px;

    font-weight:700;

    color:#fff;

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

}

.profile-details h3{

    font-size:28px;

    color:#fff;

    margin-top:10px;

    margin-bottom:10px;

}

.role-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:#ff0000;

    color:#fff;

    font-size:14px;

    font-weight:700;

    letter-spacing:.5px;

}

.profile-grid .card{

    background:#1c1c1c;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.08);

    padding:25px;

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

}

.profile-grid .card-header{

    border-bottom:1px solid rgba(255,255,255,.08);

    padding-bottom:15px;

    margin-bottom:20px;

}

.profile-grid .card-header h3{

    color:#fff;

    font-size:24px;

    margin:0;

}

/* ==========================================
   TABLET
========================================== */

@media(max-width:992px){

.profile-grid{

    grid-template-columns:1fr;

}

.profile-card{

    padding:25px;

}

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.profile-grid{

    gap:18px;

}

.profile-card{

    border-radius:18px;

    padding:20px;

}

.avatar-circle{

    width:90px;

    height:90px;

    font-size:34px;

}

.profile-avatar img{

    width:90px;

    height:90px;

}

.profile-details h3{

    font-size:22px;

}

.role-badge{

    font-size:12px;

    padding:7px 14px;

}

.profile-grid .card{

    border-radius:18px;

    padding:18px;

}

.profile-grid .card-header h3{

    font-size:20px;

}

}

/* ==========================================
   PROFILE INFORMATION
========================================== */

.profile-table{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.profile-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:16px 18px;

    border-radius:14px;

    background:#242424;

    border:1px solid rgba(255,255,255,.06);

    transition:.25s;

}

.profile-row:hover{

    background:#2b2b2b;

    transform:translateX(4px);

}

.profile-row span{

    color:#bfbfbf;

    font-size:15px;

    font-weight:500;

}

.profile-row strong{

    color:#fff;

    font-size:16px;

    font-weight:700;

    text-align:right;

    word-break:break-word;

}

/* ==========================================
   COPY BOX
========================================== */

.copy-box{

    display:flex;

    align-items:center;

    gap:10px;

    width:100%;

    max-width:420px;

}

.copy-box input{

    flex:1;

    height:46px;

    border:none;

    outline:none;

    border-radius:12px;

    background:#111;

    color:#fff;

    padding:0 14px;

    font-size:14px;

    border:1px solid rgba(255,255,255,.08);

}

.copy-box input:focus{

    border-color:#ff2b2b;

}

.copy-box .btn{

    width:46px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:12px;

    background:#ff0000;

    color:#fff;

    border:none;

    cursor:pointer;

    transition:.25s;

}

.copy-box .btn:hover{

    background:#d90000;

    transform:scale(1.05);

}

/* ==========================================
   PROFILE STATS
========================================== */

.profile-row strong{

    color:#ffffff;

}

.profile-row strong.price{

    color:#35d07f;

}

.profile-row strong.role-owner{

    color:#ffcc00;

}

.profile-row strong.role-admin{

    color:#4da3ff;

}

.profile-row strong.role-reseller{

    color:#ff6b6b;

}

.profile-row strong.role-user{

    color:#ffffff;

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.profile-row{

    flex-direction:column;

    align-items:flex-start;

    gap:10px;

    padding:14px;

}

.profile-row strong{

    text-align:left;

    width:100%;

}

.copy-box{

    width:100%;

    max-width:100%;

}

.copy-box input{

    font-size:13px;

}

}


/* ==========================================
   CHANGE PASSWORD
========================================== */

#passwordForm{

    margin-top:10px;

}

#passwordForm .form-group{

    margin-bottom:20px;

}

#passwordForm label{

    display:block;

    color:#ffffff;

    font-size:15px;

    font-weight:600;

    margin-bottom:8px;

}

.password-box{

    position:relative;

    display:flex;

    align-items:center;

}

.password-box input{

    width:100%;

    height:52px;

    background:#111111;

    color:#ffffff;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    padding:0 55px 0 16px;

    font-size:15px;

    transition:.25s;

}

.password-box input:focus{

    border-color:#ff0000;

    box-shadow:0 0 0 3px rgba(255,0,0,.15);

}

.toggle-password{

    position:absolute;

    right:14px;

    width:36px;

    height:36px;

    border:none;

    background:transparent;

    color:#bdbdbd;

    cursor:pointer;

    transition:.25s;

}

.toggle-password:hover{

    color:#ffffff;

}

#passwordMessage{

    font-size:14px;

    font-weight:600;

    margin-top:8px;

    min-height:20px;

}

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

#changePasswordBtn{

    width:100%;

    height:54px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#ff0000,#b30000);

    color:#ffffff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.30s;

    margin-top:10px;

}

#changePasswordBtn:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 28px rgba(255,0,0,.30);

}

#changePasswordBtn:disabled{

    opacity:.7;

    cursor:not-allowed;

}

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

.profile-card,

.profile-grid .card{

    animation:profileFade .35s ease;

}

@keyframes profileFade{

    from{

        opacity:0;

        transform:translateY(18px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.password-box input{

    height:48px;

    font-size:14px;

}

#changePasswordBtn{

    height:50px;

    font-size:15px;

}

.toggle-password{

    width:34px;

    height:34px;

    right:10px;

}

}

/* ==========================================
   CREATE USER MODULE
========================================== */

.create-user-container{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:25px;

    margin-top:25px;

}

.create-user-container .card{

    background:#1c1c1c;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:25px;

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

    animation:fadeCreate .35s ease;

}

.create-user-container .card-header{

    border-bottom:1px solid rgba(255,255,255,.08);

    margin-bottom:20px;

    padding-bottom:15px;

}

.create-user-container .card-header h3{

    color:#fff;

    font-size:24px;

    margin:0;

}

.create-user-container .form-group{

    margin-bottom:18px;

}

.create-user-container label{

    display:block;

    color:#fff;

    font-size:15px;

    font-weight:600;

    margin-bottom:8px;

}

.create-user-container .form-control{

    width:100%;

    height:50px;

    background:#111;

    color:#fff;

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    padding:0 15px;

    transition:.25s;

}

.create-user-container textarea.form-control{

    height:110px;

    padding:12px 15px;

    resize:vertical;

}

.create-user-container .form-control:focus{

    border-color:#ff2b2b;

    box-shadow:0 0 0 3px rgba(255,43,43,.15);

}

.create-user-container small{

    display:block;

    margin-top:6px;

    color:#a9a9a9;

}

.info-box{

    background:#151515;

    border-left:4px solid #ff2b2b;

    border-radius:12px;

    padding:18px;

    margin-top:20px;

}

.info-box h4{

    color:#fff;

    margin:0 0 12px;

}

.info-box ul{

    margin:0;

    padding-left:18px;

}

.info-box li{

    color:#cfcfcf;

    margin-bottom:10px;

    line-height:1.5;

}

.form-actions{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.form-actions .btn{

    flex:1;

    height:52px;

    border:none;

    border-radius:12px;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

.form-actions .btn-primary{

    background:linear-gradient(135deg,#ff0000,#b30000);

    color:#fff;

}

.form-actions .btn-primary:hover{

    transform:translateY(-2px);

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

}

.form-actions .btn-secondary{

    background:#2c2c2c;

    color:#fff;

}

.form-actions .btn-secondary:hover{

    background:#3b3b3b;

}

.form-message{

    min-height:22px;

    margin-top:10px;

    font-size:14px;

    font-weight:600;

}

.summary-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.summary-item:last-child{

    border-bottom:none;

}

.summary-item span{

    color:#bfbfbf;

}

.summary-item strong{

    color:#fff;

    text-align:right;

}

@keyframes fadeCreate{

    from{

        opacity:0;

        transform:translateY(15px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================
   TABLET
========================================== */

@media(max-width:992px){

.create-user-container{

    grid-template-columns:1fr;

}

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.create-user-container{

    gap:18px;

}

.create-user-container .card{

    padding:18px;

    border-radius:16px;

}

.create-user-container .card-header h3{

    font-size:20px;

}

.create-user-container .form-control{

    height:46px;

    font-size:14px;

}

.form-actions{

    flex-direction:column;

}

.form-actions .btn{

    width:100%;

    height:48px;

}

.summary-item{

    flex-direction:column;

    align-items:flex-start;

    gap:6px;

}

.summary-item strong{

    text-align:left;

}

}

/* ==========================================
   MY USERS
========================================== */

.my-users-container{

    display:flex;

    flex-direction:column;

    gap:25px;

    margin-top:20px;

}

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

.search-form{

    width:100%;

}

.search-box{

    display:flex;

    gap:15px;

    align-items:center;

}

.search-box .form-control{

    flex:1;

    height:50px;

    background:#1b1b1b;

    color:#fff;

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    padding:0 15px;

    transition:.25s;

}

.search-box .form-control:focus{

    border-color:#ff2b2b;

    box-shadow:0 0 0 3px rgba(255,43,43,.15);

}

.search-box .btn{

    min-width:140px;

    height:50px;

}

/* ==========================================
   SUMMARY
========================================== */

.summary-grid{

    display:grid;

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

    gap:20px;

}

.summary-card{

    background:#1b1b1b;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:22px;

    text-align:center;

    transition:.25s;

}

.summary-card:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(0,0,0,.30);

}

.summary-card h4{

    color:#bfbfbf;

    font-size:15px;

    margin-bottom:10px;

}

.summary-card h2{

    color:#ffffff;

    font-size:30px;

    margin:0;

}

/* ==========================================
   TABLE
========================================== */

.table-responsive{

    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;

}

.table{

    width:100%;

    border-collapse:collapse;

}

.table thead{

    background:#202020;

}

.table th{

    color:#ffffff;

    padding:15px;

    font-size:14px;

    text-align:left;

    white-space:nowrap;

}

.table td{

    color:#d6d6d6;

    padding:15px;

    border-top:1px solid rgba(255,255,255,.08);

    vertical-align:middle;

}

.table tbody tr{

    transition:.25s;

}

.table tbody tr:hover{

    background:#222222;

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:992px){

.summary-grid{

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

}

}

@media(max-width:768px){

.search-box{

    flex-direction:column;

}

.search-box .btn{

    width:100%;

}

.summary-grid{

    grid-template-columns:1fr;

}

.table th,

.table td{

    padding:12px;

    font-size:13px;

}

}

/* ==========================================
   BADGES
========================================== */

.badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:90px;

    padding:6px 12px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

}

.badge-primary{

    background:#0d6efd;

    color:#ffffff;

}

.badge-warning{

    background:#ffc107;

    color:#111111;

}

.badge-danger{

    background:#dc3545;

    color:#ffffff;

}

.badge-success{

    background:#198754;

    color:#ffffff;

}

.badge-secondary{

    background:#6c757d;

    color:#ffffff;

}

/* ==========================================
   ACTION BUTTONS
========================================== */

.action-group{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

}

.action-group .btn{

    min-width:88px;

    height:36px;

    border:none;

    border-radius:10px;

    font-size:13px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.action-group .btn:hover{

    transform:translateY(-2px);

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

}

/* ==========================================
   MODAL
========================================== */

.modal{

    display:none;

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.70);

    z-index:9999;

    justify-content:center;

    align-items:center;

    padding:20px;

}

.modal-content{

    width:100%;

    max-width:500px;

    background:#1b1b1b;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    padding:25px;

    animation:modalShow .25s ease;

}

.modal-content h3{

    color:#ffffff;

    margin:0 0 18px;

    font-size:22px;

}

.modal-content p{

    color:#cfcfcf;

    margin-bottom:18px;

    line-height:1.6;

}

.modal-content .form-group{

    margin-bottom:18px;

}

.modal-content label{

    display:block;

    color:#ffffff;

    margin-bottom:8px;

    font-weight:600;

}

.modal-content .form-control{

    width:100%;

    height:48px;

    background:#111111;

    color:#ffffff;

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    padding:0 14px;

}

.modal-content .form-control:focus{

    border-color:#ff2b2b;

    box-shadow:0 0 0 3px rgba(255,43,43,.15);

}

@keyframes modalShow{

    from{

        opacity:0;

        transform:scale(.94);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

/* ==========================================
   EMPTY TABLE
========================================== */

.table .text-center{

    text-align:center;

    padding:35px;

    color:#bdbdbd;

    font-size:15px;

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.action-group{

    flex-direction:column;

}

.action-group .btn{

    width:100%;

    min-width:100%;

}

.modal-content{

    padding:18px;

    border-radius:15px;

}

.modal-content h3{

    font-size:20px;

}

.badge{

    min-width:80px;

    font-size:12px;

}

}

/* ===================================== */
/* CATEGORY MANAGE */
/* ===================================== */

.category-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:20px;

    width:100%;

}

@media (min-width:992px){

    .category-grid{

        grid-template-columns:380px 1fr;

        align-items:start;

    }

}

/* ===================================== */
/* DURATION MANAGE BUTTON */
/* ===================================== */

.manage-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    min-width:120px;

    height:42px;

    padding:0 18px;

    background:#d60000;

    color:#ffffff !important;

    border:1px solid #ff2b2b;

    border-radius:10px;

    text-decoration:none !important;

    font-size:14px;

    font-weight:600;

    white-space:nowrap;

    cursor:pointer;

    transition:.25s;

}

.manage-btn:hover{

    background:#ff1f1f;

    color:#ffffff !important;

}

.manage-btn i{

    color:#ffffff;

}

.table td:last-child{

    text-align:center;

}

/* ==========================================
   CLOUDFLARE TURNSTILE
========================================== */

.turnstile-group {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.turnstile-group .cf-turnstile {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ==========================================
   INPUT GAMER - PUBLIC HOME PAGE
========================================== */

.home-page {
    min-height: 100vh;
    padding-bottom: 40px;
}


/* ==========================================
   HOME NAVIGATION
========================================== */

.home-nav {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

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

    gap: 20px;

    padding: 14px 24px;

    background: rgba(15, 15, 15, 0.96);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
}


.home-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: max-content;
}


.home-nav-logo {
    width: 44px;
    height: 44px;

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

    border-radius: 12px;

    background: #ff0000;

    color: #ffffff;

    font-size: 20px;

    box-shadow:
        0 5px 20px rgba(255, 0, 0, 0.25);
}


.home-nav-brand-text {
    display: flex;
    flex-direction: column;
}


.home-nav-brand-text strong {
    color: #ffffff;

    font-size: 17px;
}


.home-nav-brand-text small {
    margin-top: 2px;

    color: #999999;

    font-size: 11px;
}


.home-nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 6px;

    overflow-x: auto;
}


.home-nav-link {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 9px 12px;

    border-radius: 9px;

    color: #bdbdbd;

    text-decoration: none;

    font-size: 13px;

    white-space: nowrap;

    transition: 0.2s ease;
}


.home-nav-link:hover,
.home-nav-link.active {
    color: #ffffff;

    background: rgba(255, 0, 0, 0.14);
}


.home-nav-link i {
    font-size: 13px;
}


/* ==========================================
   HOME HERO
========================================== */

.home-hero {
    min-height: 620px;

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

    padding: 80px 20px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 0, 0, 0.12),
            transparent 45%
        );
}


.home-hero-content {
    width: 100%;
    max-width: 850px;
}


.home-brand {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-bottom: 30px;
}


.home-logo-icon {
    width: 68px;
    height: 68px;

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

    border-radius: 18px;

    background: #ff0000;

    color: #ffffff;

    font-size: 30px;

    box-shadow:
        0 10px 35px rgba(255, 0, 0, 0.28);
}


.home-brand-text {
    text-align: left;
}


.home-brand-text h1 {
    margin: 0;

    color: #ffffff;

    font-size: 34px;

    line-height: 1.1;
}


.home-brand-text span {
    display: block;

    margin-top: 5px;

    color: #999999;

    font-size: 13px;

    letter-spacing: 2px;
}


.home-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 15px;

    margin-bottom: 24px;

    border: 1px solid rgba(255, 0, 0, 0.25);

    border-radius: 999px;

    background: rgba(255, 0, 0, 0.08);

    color: #ff5c5c;

    font-size: 12px;

    letter-spacing: 0.5px;
}


.home-hero h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(36px, 6vw, 64px);

    line-height: 1.1;
}


.home-hero h2 strong {
    display: block;

    color: #ff3030;
}


.home-description {
    max-width: 680px;

    margin: 25px auto 0;

    color: #aaaaaa;

    font-size: 16px;

    line-height: 1.8;
}


.home-actions {
    margin-top: 32px;
}


.home-enter-btn {
    display: inline-flex;

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

    gap: 9px;

    min-width: 190px;

    padding: 14px 25px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 700;

    transition: 0.2s ease;
}


.home-enter-btn:hover {
    transform: translateY(-2px);
}


.home-security {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;

    color: #777777;

    font-size: 12px;
}


.home-security span {
    white-space: nowrap;
}


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

.home-intro {
    max-width: 1150px;

    margin: 0 auto;

    padding: 70px 20px;
}


.home-section-heading {
    max-width: 700px;

    margin: 0 auto 40px;

    text-align: center;
}


.home-section-heading > span {
    color: #ff3030;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


.home-section-heading h2 {
    margin: 10px 0;

    color: #ffffff;

    font-size: 32px;
}


.home-section-heading p {
    margin: 0;

    color: #999999;

    line-height: 1.7;
}


.home-feature-grid {
    display: grid;

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

    gap: 18px;
}


.home-feature-card {
    padding: 28px 22px;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.025);

    transition: 0.2s ease;
}


.home-feature-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(255, 0, 0, 0.25);
}


.home-feature-icon {
    width: 48px;
    height: 48px;

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

    margin-bottom: 18px;

    border-radius: 12px;

    background: rgba(255, 0, 0, 0.1);

    color: #ff3030;

    font-size: 20px;
}


.home-feature-card h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 17px;
}


.home-feature-card p {
    margin: 0;

    color: #888888;

    font-size: 13px;

    line-height: 1.7;
}


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

.home-security-section {
    max-width: 1150px;

    margin: 0 auto;

    padding: 20px;

    display: grid;

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

    gap: 18px;
}


.home-security-card {
    display: flex;

    gap: 18px;

    padding: 25px;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.025);
}


.home-security-icon {
    min-width: 48px;
    height: 48px;

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

    border-radius: 12px;

    background: rgba(255, 0, 0, 0.1);

    color: #ff3030;

    font-size: 20px;
}


.home-security-card span {
    color: #ff3030;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


.home-security-card h3 {
    margin: 7px 0;

    color: #ffffff;

    font-size: 18px;
}


.home-security-card p {
    margin: 0;

    color: #888888;

    font-size: 13px;

    line-height: 1.7;
}


/* ==========================================
   FINAL ENTRY
========================================== */

.home-entry {
    max-width: 850px;

    margin: 60px auto;

    padding: 20px;
}


.home-entry-content {
    padding: 55px 25px;

    text-align: center;

    border: 1px solid rgba(255, 0, 0, 0.16);

    border-radius: 20px;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 0, 0, 0.08),
            transparent 65%
        );
}


.home-entry-content > span {
    color: #ff3030;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.home-entry-content h2 {
    margin: 12px 0;

    color: #ffffff;

    font-size: 30px;
}


.home-entry-content p {
    max-width: 550px;

    margin: 0 auto 25px;

    color: #888888;

    line-height: 1.7;
}


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

.home-brand-footer {
    display: flex;

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

    flex-wrap: wrap;

    gap: 9px;

    padding: 25px 20px;

    color: #666666;

    font-size: 12px;

    text-align: center;
}


.home-brand-footer strong {
    color: #999999;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px) {

    .home-nav {
        align-items: flex-start;

        flex-direction: column;

        padding: 12px 15px;
    }


    .home-nav-menu {
        width: 100%;

        justify-content: flex-start;

        padding-bottom: 3px;
    }


    .home-feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .home-security-section {
        grid-template-columns:
            1fr;
    }

}


@media (max-width: 600px) {

    .home-hero {
        min-height: 560px;

        padding:
            55px 15px;
    }


    .home-brand {
        gap: 10px;
    }


    .home-logo-icon {
        width: 55px;
        height: 55px;

        font-size: 24px;
    }


    .home-brand-text h1 {
        font-size: 26px;
    }


    .home-hero h2 {
        font-size: 38px;
    }


    .home-description {
        font-size: 14px;
    }


    .home-feature-grid {
        grid-template-columns:
            1fr;
    }


    .home-security-card {
        padding: 20px;
    }


    .home-entry-content {
        padding:
            40px 18px;
    }


    .home-nav-link {
        padding:
            8px 10px;

        font-size: 12px;
    }

}