/* =================================
   AdEmpireX Premium Theme
================================= */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {

    font-family: Arial, Helvetica, sans-serif;
    background: #050505;
    color: #ffffff;

}


a {

    text-decoration: none;
    color: inherit;

}


.container {

    width: 90%;
    max-width: 1200px;
    margin: auto;

}


/* Premium Green Glow */

.glow {

    color: #00ff99;
    text-shadow:
    0 0 10px rgba(0,255,153,0.8),
    0 0 30px rgba(0,255,153,0.5);

}


/* Buttons */

.btn-primary {

    display: inline-block;
    padding: 14px 30px;
    background: #00ff99;
    color: #000;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;

}


.btn-primary:hover {

    transform: translateY(-3px);
    box-shadow:
    0 0 25px rgba(0,255,153,0.8);

}


/* Glass Card */

.glass-card {

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;

}

/* ================================
   Hero Section
================================ */


.hero {

    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 0;

}


.hero-content {

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;

}


.hero-text {

    width: 55%;

}


.hero-text h1 {

    font-size: 65px;
    line-height: 1.1;
    margin-bottom: 25px;

}


.hero-text p {

    color: #bdbdbd;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;

}


.hero-buttons {

    display: flex;
    gap: 20px;

}


.btn-secondary {

    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    border: 1px solid #00ff99;
    color: #00ff99;
    transition: .3s;

}


.btn-secondary:hover {

    background:#00ff99;
    color:#000;

}



/* 3D Floating Cards */


.hero-card {

    width: 350px;
    height: 350px;
    position: relative;
    display:flex;
    justify-content:center;
    align-items:center;

    transform-style:preserve-3d;
    animation: float 4s ease-in-out infinite;

}



.floating-box {

    position:absolute;
    padding:30px;
    width:220px;

    background:
    rgba(0,255,153,0.1);

    border:1px solid rgba(0,255,153,0.4);

    border-radius:20px;

    text-align:center;

    transform:translateZ(50px);

}



.floating-box h3 {

    color:#00ff99;
    margin-bottom:10px;

}



.floating-box.second {

    transform:
    translateY(130px)
    translateZ(80px);

}



@keyframes float {


    0%,100%{

        transform:translateY(0);

    }


    50%{

        transform:translateY(-25px);

    }


}

/* ==========================
Premium Hero Section
========================== */


.hero {

min-height:90vh;
display:flex;
align-items:center;
overflow:hidden;
position:relative;

}


.hero-wrapper {

padding:80px 0;

}


.hero-content {

display:flex;
align-items:center;
justify-content:space-between;
gap:60px;

}


.hero-text {

width:55%;

}


.hero-tag {

display:inline-block;
padding:8px 18px;
border-radius:30px;
background:rgba(0,255,153,0.1);
border:1px solid rgba(0,255,153,0.3);
color:#00ff99;
margin-bottom:25px;

}


.hero-text h1 {

font-size:70px;
line-height:1.1;
font-weight:800;

}


.hero-text p {

font-size:20px;
color:#aaa;
line-height:1.7;
margin:25px 0;

}


.hero-actions {

display:flex;
gap:20px;

}


.hero-stats {

display:flex;
gap:40px;
margin-top:50px;

}


.hero-stats h3 {

font-size:32px;
color:#00ff99;

}


.hero-stats p {

font-size:14px;
margin:5px 0;

}


/* Dashboard 3D */


.hero-visual {

width:40%;
position:relative;

}


.dashboard-card {

padding:30px;
height:420px;
transform:
perspective(1000px)
rotateY(-15deg);

}


.card-header {

display:flex;
justify-content:space-between;
font-size:18px;

}


.card-header span {

width:12px;
height:12px;
background:#00ff99;
border-radius:50%;

}


.chart-box {

height:180px;
display:flex;
align-items:end;
gap:15px;
margin-top:60px;

}


.bar {

width:35px;
background:#00ff99;
border-radius:10px;

}


.bar1{height:80px;}
.bar2{height:130px;}
.bar3{height:100px;}
.bar4{height:160px;}



.earning-card {

margin-top:40px;
padding:20px;
border-radius:20px;
background:rgba(0,255,153,0.08);

}


.earning-card p {

color:#00ff99;

}


.glow-circle {

position:absolute;
width:400px;
height:400px;
background:#00ff99;
filter:blur(180px);
opacity:.25;
top:50px;
right:-100px;

}

/* ==========================
   Trusted Brands Section
========================== */


.trust-section {

    padding:100px 0;
    text-align:center;

}


.trust-section h2 {

    font-size:45px;
    margin-bottom:15px;

}


.section-text {

    color:#999;
    font-size:18px;
    max-width:700px;
    margin:0 auto 50px;

}



/* Brand Cards */


.brand-grid {

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:80px;

}


.brand-card {

    height:90px;
    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.1);

    border-radius:18px;

    color:#777;

    font-size:20px;

    transition:.3s;

}



.brand-card:hover {

    color:#00ff99;

    border-color:#00ff99;

    transform:translateY(-8px);

}



/* ==========================
3D Platform Statistics Cards
========================== */


.stats-grid {

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:60px;

}



.stat-card {

    padding:35px 20px;

    text-align:center;

    min-height:160px;

    display:flex;

    flex-direction:column;

    justify-content:center;


    background:
    linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
    );


    border:1px solid rgba(0,255,153,0.2);

    border-radius:25px;


    transform-style:preserve-3d;

    perspective:1000px;


    transition:.5s;


    box-shadow:

    0 20px 40px rgba(0,0,0,.4);

}



.stat-card:hover {


    transform:

    translateY(-15px)

    rotateX(8deg)

    rotateY(-8deg);



    border-color:#00ff99;


    box-shadow:

    0 35px 70px rgba(0,255,153,.25);


}



.stat-card h3 {

    font-size:45px;

    color:#00ff99;

    margin-bottom:10px;


    transform:translateZ(40px);

}



.stat-card p {

    color:#aaa;

    font-size:16px;


    transform:translateZ(30px);

}

/* Reduce Hero to Trust Section Gap */

.hero {
    min-height: auto;
    padding-bottom: 40px;
}


.trust-section {
    padding-top: 40px;
}

/* ==========================
   Ad Inventory Section
========================== */


.inventory-section {

    padding:100px 0;
    text-align:center;

}


.inventory-section h2 {

    font-size:45px;
    margin-bottom:15px;

}



/* Inventory Grid */

.inventory-grid {

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;

}



.inventory-card {

    padding:35px;
    min-height:220px;
    text-align:left;
    position:relative;
    overflow:hidden;
    transition:.4s;

}



.inventory-card::before {

    content:"";
    position:absolute;

    width:120px;
    height:120px;

    background:#00ff99;

    filter:blur(90px);

    top:-40px;
    right:-40px;

    opacity:.25;

}



.inventory-card:hover {

    transform:translateY(-12px);

    border-color:#00ff99;

}



.inventory-card h3 {

    color:#00ff99;

    font-size:25px;

    margin-bottom:15px;

}



.inventory-card p {

    color:#aaa;

    line-height:1.7;

}

/* Reduce Inventory Section Space */

.inventory-section {

    padding:50px 0;

}


.inventory-grid {

    margin-top:35px;

}


/* 3D Inventory Cards */

.inventory-card {

    transform-style: preserve-3d;
    perspective:1000px;
    transition:0.4s ease;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.4);

}


.inventory-card:hover {

    transform:
    translateY(-15px)
    rotateX(8deg)
    rotateY(-8deg);

    box-shadow:
    0 35px 70px rgba(0,255,153,0.25);

}


/* Inner 3D Glow */

.inventory-card h3,
.inventory-card p {

    position:relative;
    z-index:2;

}


.inventory-card::after {

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(0,255,153,0.15),
    transparent
    );

    border-radius:20px;

    transform:translateZ(-1px);

}

/* ==========================
   How It Works Section
========================== */


.process-section {

    padding:60px 0;
    text-align:center;

}



.process-grid {

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:40px;

}



.process-card {

    padding:40px 30px;
    position:relative;

    transform-style:preserve-3d;
    perspective:1000px;

    transition:.4s ease;

}



.process-card:hover {

    transform:
    translateY(-15px)
    rotateX(8deg)
    rotateY(-6deg);

    border-color:#00ff99;

    box-shadow:
    0 35px 70px rgba(0,255,153,0.25);

}



/* Step Number */


.step-number {

    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 25px;

    border-radius:50%;

    font-size:28px;
    font-weight:bold;

    color:#00ff99;

    background:
    rgba(0,255,153,0.1);

    border:1px solid rgba(0,255,153,0.5);

    box-shadow:
    0 0 30px rgba(0,255,153,0.3);

}



.process-card h3 {

    font-size:25px;

    margin-bottom:15px;

}



.process-card p {

    color:#aaa;

    line-height:1.7;

}

/* ==========================
   Pricing Section
========================== */


.pricing-section {

    padding:60px 0;
    text-align:center;

}



.pricing-grid {

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:45px;

}



.price-card {

    padding:40px 30px;
    position:relative;

    text-align:center;

    transform-style:preserve-3d;
    perspective:1000px;

    transition:.4s ease;

}



.price-card:hover {

    transform:
    translateY(-15px)
    rotateX(8deg);

    border-color:#00ff99;

    box-shadow:
    0 35px 70px rgba(0,255,153,0.25);

}



.price-card h3 {

    font-size:28px;
    margin-bottom:20px;

}



.price-card h4 {

    font-size:45px;
    color:#00ff99;
    margin-bottom:25px;

}



.price-card h4 span {

    font-size:16px;
    color:#aaa;

}



.price-card ul {

    list-style:none;
    margin-bottom:35px;

}



.price-card li {

    color:#aaa;
    padding:10px 0;

    border-bottom:1px solid rgba(255,255,255,0.05);

}



/* Featured Plan */

.featured {

    transform:translateY(-20px);

    border:1px solid #00ff99;

}



.featured:hover {

    transform:
    translateY(-35px)
    rotateX(8deg);

}



.popular {

    position:absolute;

    top:-15px;
    left:50%;

    transform:translateX(-50%);

    background:#00ff99;

    color:#000;

    padding:8px 20px;

    border-radius:30px;

    font-weight:bold;

}

/* ==========================
   Final CTA Section
========================== */


.cta-section {

    padding:70px 0;

}


.cta-box {

    text-align:center;

    padding:70px 40px;

    position:relative;

    overflow:hidden;

}



.cta-box::before {

    content:"";

    position:absolute;

    width:300px;
    height:300px;

    background:#00ff99;

    filter:blur(150px);

    opacity:.25;

    top:-100px;
    left:50%;

    transform:translateX(-50%);

}



.cta-box h2 {

    font-size:45px;

    margin-bottom:20px;

}



.cta-box p {

    color:#aaa;

    font-size:20px;

    margin-bottom:35px;

}



/* ==========================
   Footer
========================== */


.footer {

    padding:40px 0;

    border-top:1px solid rgba(255,255,255,0.08);

    text-align:center;

}


.footer p {

    color:#777;

}

/* ==========================
Premium Glass Header
========================== */


.main-header {

    position:sticky;
    top:0;
    z-index:999;

    padding:20px 0;

    background:
    rgba(5,5,5,0.65);

    backdrop-filter:blur(15px);

    border-bottom:
    1px solid rgba(255,255,255,0.08);

}



.navbar {

    display:flex;
    justify-content:space-between;
    align-items:center;

}



.logo h2 {

    font-size:32px;

}



.nav-links {

    display:flex;
    align-items:center;
    gap:30px;

}



.nav-links a {

    color:#aaa;

    transition:.3s;

}



.nav-links a:hover {

    color:#00ff99;

}



.nav-links .btn-primary {

    color:#000;

}

/* ==========================
   Premium Footer
========================== */


.main-footer {

    margin-top:60px;

    padding:70px 0 20px;

    background:
    rgba(255,255,255,0.03);

    border-top:
    1px solid rgba(255,255,255,0.08);

}



.footer-grid {

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:40px;

}



.footer-brand h2 {

    font-size:32px;

    margin-bottom:20px;

}



.footer-brand p {

    color:#999;

    line-height:1.8;

    max-width:350px;

}



.footer-column {

    display:flex;

    flex-direction:column;

    gap:15px;

}



.footer-column h3 {

    color:#00ff99;

    margin-bottom:10px;

}



.footer-column a {

    color:#aaa;

    transition:.3s;

}



.footer-column a:hover {

    color:#00ff99;

    transform:translateX(5px);

}



.footer-bottom {

    margin-top:50px;

    padding-top:20px;

    text-align:center;

    border-top:
    1px solid rgba(255,255,255,0.08);

}



.footer-bottom p {

    color:#777;

}

/* ==========================
   Responsive Design
========================== */


@media(max-width:1000px){


.hero-content {

    flex-direction:column;

}


.hero-text,
.hero-visual {

    width:100%;

}


.hero-text h1 {

    font-size:50px;

}


.brand-grid {

    grid-template-columns:repeat(2,1fr);

}


.stats-grid {

    grid-template-columns:repeat(2,1fr);

}


.inventory-grid {

    grid-template-columns:repeat(2,1fr);

}


.process-grid {

    grid-template-columns:1fr;

}


.pricing-grid {

    grid-template-columns:1fr;

}


.footer-grid {

    grid-template-columns:1fr 1fr;

}


}




@media(max-width:600px){


.nav-links {

    gap:15px;

    flex-wrap:wrap;

}



.hero-text h1 {

    font-size:38px;

}


.hero-text p {

    font-size:16px;

}


.brand-grid,
.stats-grid,
.inventory-grid {

    grid-template-columns:1fr;

}


.footer-grid {

    grid-template-columns:1fr;

}


.dashboard-card {

    transform:none;

}


}

/* Extra Compact Header + Hero Spacing */


.main-header {

    padding:8px 0;

}


.navbar {

    min-height:55px;

}



.hero {

    padding-top:0;

    min-height:auto;

}



.hero-wrapper {

    padding-top:10px;

    padding-bottom:25px;

}



.hero-text h1 {

    margin-top:10px;

}



.hero-tag {

    margin-bottom:15px;

}


.hero-text p {

    margin:15px 0;

}


.hero-stats {

    margin-top:30px;

}

/* ==========================
Premium Page Animations
========================== */


@keyframes fadeUp {

    from {

        opacity:0;

        transform:translateY(40px);

    }


    to {

        opacity:1;

        transform:translateY(0);

    }

}



@keyframes fadeRight {

    from {

        opacity:0;

        transform:translateX(-40px);

    }


    to {

        opacity:1;

        transform:translateX(0);

    }

}



@keyframes floatCard {


    0% {

        transform:translateY(0);

    }


    50% {

        transform:translateY(-10px);

    }


    100% {

        transform:translateY(0);

    }

}



/* Hero Animation */


.hero-text {

    animation:
    fadeRight 1s ease forwards;

}



.hero-visual {

    animation:
    fadeUp 1.2s ease forwards;

}



/* Section Cards */


.brand-card,
.stat-card,
.inventory-card,
.process-card,
.price-card {


    animation:

    fadeUp .8s ease forwards;


}



/* Dashboard Floating Effect */


.dashboard-card {

    animation:

    floatCard 4s ease-in-out infinite;

}

.brand-card:nth-child(2),
.stat-card:nth-child(2),
.inventory-card:nth-child(2),
.process-card:nth-child(2),
.price-card:nth-child(2){

    animation-delay:.2s;

}



.brand-card:nth-child(3),
.stat-card:nth-child(3),
.inventory-card:nth-child(3),
.process-card:nth-child(3),
.price-card:nth-child(3){

    animation-delay:.4s;

}

/* ==========================
Premium Background Effects
========================== */


body {

    background:
    radial-gradient(
    circle at top left,
    rgba(0,255,153,0.08),
    transparent 35%
    ),

    radial-gradient(
    circle at bottom right,
    rgba(0,255,153,0.06),
    transparent 35%
    ),

    #050505;

}



/* Smooth Scrolling */

html {

    scroll-behavior:smooth;

}

/* Premium Button Animation */


.btn-primary {

    position:relative;

    overflow:hidden;

    transition:.4s;

}



.btn-primary:hover {


    transform:

    translateY(-5px);


    box-shadow:

    0 15px 35px rgba(0,255,153,.35);


}



.btn-secondary {


    transition:.4s;


}



.btn-secondary:hover {


    color:#00ff99;


    transform:

    translateY(-5px);


}

/* Glass Card Premium Effect */


.glass-card {

    backdrop-filter:blur(15px);

    background:

    rgba(255,255,255,0.04);


    border:

    1px solid rgba(255,255,255,0.1);


}

/* ==========================
Premium Glow Enhancements
========================== */


/* Section Heading Glow */


.trust-section h2,
.inventory-section h2,
.process-section h2,
.pricing-section h2 {


    position:relative;

    display:inline-block;

}



.trust-section h2::after,
.inventory-section h2::after,
.process-section h2::after,
.pricing-section h2::after {

    content:"";

    position:absolute;

    width:60%;

    height:3px;

    background:#00ff99;

    bottom:-25px;

    left:20%;

    box-shadow:
    0 0 20px #00ff99;

}


.trust-section h2,
.inventory-section h2,
.process-section h2,
.pricing-section h2 {

    margin-bottom:35px;

}




/* Moving Glow Border */


.inventory-card,
.process-card,
.price-card,
.stat-card,
.brand-card {


    overflow:hidden;


}



.inventory-card::after,
.process-card::after,
.price-card::after,
.stat-card::after,
.brand-card::after {


    content:"";

    position:absolute;

    top:-50%;

    left:-50%;

    width:200%;

    height:200%;


    background:

    linear-gradient(
    120deg,
    transparent,
    rgba(0,255,153,.15),
    transparent
    );


    transform:rotate(25deg);

    animation:shine 5s infinite;


}



@keyframes shine {


    0% {

        transform:translateX(-100%) rotate(25deg);

    }


    100% {

        transform:translateX(100%) rotate(25deg);

    }


}



/* Dashboard Extra Glow */


.dashboard-card {


    box-shadow:

    0 30px 80px rgba(0,255,153,.15);


}

.auth-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    background:
    linear-gradient(
    135deg,
    #061a14,
    #002b20
    );

}


.auth-box{

    width:420px;

    padding:40px;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(15px);

    border-radius:20px;

    border:1px solid rgba(255,255,255,0.15);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.4);

    color:white;

}



.auth-box h2{

    text-align:center;

    margin-bottom:25px;

    font-size:28px;

}



.auth-box input{

    width:100%;

    padding:14px;

    margin-bottom:15px;

    border-radius:10px;

    border:none;

    outline:none;

    background:#ffffff;

    font-size:15px;

}



.auth-box input:focus{

    box-shadow:
    0 0 10px #00ff99;

}



.auth-box button{

    width:100%;

    padding:14px;

    border-radius:10px;

    border:none;

    cursor:pointer;

    background:#00ff99;

    color:#002b20;

    font-weight:700;

    font-size:16px;

}



.auth-box button:hover{

    transform:translateY(-2px);

}



.auth-logo{

    text-align:center;

    font-size:34px;

    font-weight:800;

    color:#00ff99;

    margin-bottom:20px;

}


.auth-link{

    text-align:center;

    margin-top:15px;

}


.auth-link a{

    color:#00ff99;

    text-decoration:none;

}

/* ===============================
   AdEmpireX Dashboard Design
================================ */



.dashboard-body{

    margin:0;

    background:#061a14;

    color:white;

    font-family:Arial, sans-serif;

}





.dashboard-layout{

    display:flex;

    min-height:100vh;

}





/* Sidebar */

.dashboard-sidebar{

    width:260px;

    background:#03120e;

    padding:30px 20px;

    border-right:1px solid rgba(255,255,255,0.08);

    position:fixed;

    top:0;

    left:0;

    height:100vh;

    overflow-y:auto;

}

.dashboard-sidebar::-webkit-scrollbar{

width:6px;

}


.dashboard-sidebar::-webkit-scrollbar-thumb{

background:#00ff99;

border-radius:10px;

}


.dashboard-logo{

    font-size:30px;

    font-weight:800;

    color:#00ff99;

    text-align:center;

    margin-bottom:40px;

}





.dashboard-sidebar ul{

    list-style:none;

    padding:0;

}





.dashboard-sidebar ul li{

    margin-bottom:15px;

}





.dashboard-sidebar ul li a{

    display:block;

    padding:14px 18px;

    color:white;

    text-decoration:none;

    border-radius:12px;

    transition:.3s;

}





.dashboard-sidebar ul li a:hover{

    background:#00ff99;

    color:#002b20;

    transform:translateX(5px);

}







/* Main */

.dashboard-main{

    margin-left:260px;

    width:calc(100% - 260px);

    padding:35px;

}







.dashboard-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}





.dashboard-top h2{

    font-size:32px;

    margin:0;

}





.dashboard-top p{

    color:#b8c9c2;

}





.user-box{

    background:rgba(255,255,255,.08);

    padding:12px 25px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.15);

}







/* Hero */

.dashboard-hero{

    background:

    linear-gradient(

    135deg,

    rgba(0,255,153,.25),

    rgba(0,0,0,.2)

    );


    padding:40px;

    border-radius:25px;

    margin-bottom:35px;

    border:1px solid rgba(255,255,255,.1);

}



.dashboard-hero h1{

    font-size:38px;

}



.dashboard-hero p{

    color:#d0ddd8;

    max-width:600px;

}








/* Stats */

.stats-grid{

    display:grid;

    grid-template-columns:

    repeat(4,1fr);

    gap:20px;

    margin-bottom:40px;

}





.stat-card{

    background:rgba(255,255,255,.08);

    padding:30px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.12);

    transition:.3s;

}





.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:

    0 20px 40px rgba(0,0,0,.3);

}





.stat-card h3{

    font-size:35px;

    color:#00ff99;

    margin:0 0 10px;

}





.stat-card p{

    color:#c7d8d1;

}








/* Sections */


.dashboard-section{

    margin-bottom:35px;

}





.dashboard-section h2{

    margin-bottom:20px;

}






/* Actions */


.action-grid{

    display:grid;

    grid-template-columns:

    repeat(3,1fr);

    gap:20px;

}





.action-card{

    padding:25px;

    background:rgba(255,255,255,.08);

    border-radius:18px;

    color:white;

    text-decoration:none;

    text-align:center;

    border:1px solid rgba(255,255,255,.12);

    transition:.3s;

}





.action-card:hover{

    background:#00ff99;

    color:#002b20;

    transform:translateY(-5px);

}






.empty-box{

    padding:40px;

    text-align:center;

    background:rgba(255,255,255,.05);

    border-radius:18px;

    color:#b8c9c2;

}







/* Responsive */

@media(max-width:900px){


.dashboard-sidebar{

    position:relative;

    width:100%;

    height:auto;

}



.dashboard-layout{

    display:block;

}



.dashboard-main{

    margin-left:0;

    width:100%;

}



.stats-grid{

    grid-template-columns:1fr 1fr;

}



.action-grid{

    grid-template-columns:1fr;

}



}





@media(max-width:600px){


.stats-grid{

    grid-template-columns:1fr;

}


.dashboard-top{

    display:block;

}


.dashboard-hero h1{

    font-size:28px;

}



}

.top-right{

display:flex;

gap:20px;

align-items:center;

}



.header-card{

background:rgba(255,255,255,0.08);

border:1px solid rgba(255,255,255,0.12);

border-radius:18px;

padding:12px 22px;

height:70px;

display:flex;

align-items:center;

}



.wallet-card h3{

color:#00ff99;

margin:5px 0 0;

}



.profile-card{

gap:15px;

}



.profile-card img{

width:50px;

height:50px;

border-radius:50%;

object-fit:cover;

border:2px solid #00ff99;

}



.profile-card h4{

margin:0;

}



.profile-card span{

color:#b8c9c2;

font-size:13px;

}

.profile-area{

position:relative;

}



.profile-menu{

display:none;

position:absolute;

right:0;

top:85px;

width:200px;

background:#03120e;

border:1px solid rgba(255,255,255,.12);

border-radius:15px;

padding:10px;

z-index:1000;

box-shadow:0 20px 40px rgba(0,0,0,.4);

}



.profile-menu a{

display:block;

padding:12px;

color:white;

text-decoration:none;

border-radius:10px;

}



.profile-menu a:hover{

background:#00ff99;

color:#002b20;

}

.profile-menu{

opacity:0;

visibility:hidden;

transform:translateY(-10px);

transition:.3s ease;

position:absolute;

right:0;

top:85px;

width:210px;

background:#03120e;

border:1px solid rgba(255,255,255,.12);

border-radius:16px;

padding:10px;

box-shadow:0 20px 50px rgba(0,0,0,.5);

z-index:1000;

}



.profile-menu.active{

opacity:1;

visibility:visible;

transform:translateY(0);

}



.profile-card small{

font-size:12px;

color:#00ff99;

margin-left:5px;

}

/* =========================
   Recent Orders Table
========================= */


.orders-table{

width:100%;

overflow-x:auto;

background:rgba(255,255,255,0.05);

border:1px solid rgba(255,255,255,0.10);

border-radius:18px;

padding:20px;

}



.orders-table table{

width:100%;

border-collapse:collapse;

color:white;

}



.orders-table th{

text-align:left;

padding:15px;

font-size:14px;

color:#00ff99;

border-bottom:1px solid rgba(255,255,255,0.15);

}



.orders-table td{

padding:15px;

font-size:14px;

border-bottom:1px solid rgba(255,255,255,0.08);

}



.orders-table tbody tr{

transition:.3s ease;

}



.orders-table tbody tr:hover{

background:rgba(0,255,153,0.08);

}



.orders-table td:first-child{

font-weight:600;

}



.orders-table td:nth-child(2){

color:#00ff99;

font-weight:600;

}



/* Empty Orders */

.orders-table td[colspan="5"]{

text-align:center;

padding:30px;

color:#b8c9c2;

font-size:15px;

}

/* =========================
   Campaign Form
========================= */


.campaign-form{

margin-top:25px;

background:rgba(255,255,255,0.05);

border:1px solid rgba(255,255,255,0.12);

border-radius:20px;

padding:25px;

}



.form-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}



.campaign-form label{

display:block;

margin-bottom:8px;

color:#00ff99;

font-size:14px;

font-weight:600;

}



.campaign-form input,
.campaign-form select,
.campaign-form textarea{


width:100%;

padding:14px;

background:#061a14;

border:1px solid rgba(255,255,255,.15);

border-radius:12px;

color:white;

outline:none;

font-size:14px;

}



.campaign-form input:focus,
.campaign-form select:focus,
.campaign-form textarea:focus{


border-color:#00ff99;

box-shadow:0 0 15px rgba(0,255,153,.2);

}



.campaign-form textarea{

resize:none;

margin-top:10px;

margin-bottom:20px;

}



.campaign-form select option{

background:#061a14;

color:white;

}



.success-message{

color:#00ff99;

margin:15px 0;

font-weight:600;

}



/* Mobile */

@media(max-width:768px){


.form-grid{

grid-template-columns:1fr;

}


}

/* =========================
   Website Marketplace Cards
========================= */


.website-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}



.website-card{

background:rgba(255,255,255,0.05);

border:1px solid rgba(255,255,255,0.12);

border-radius:20px;

padding:25px;

transition:.3s ease;

}



.website-card:hover{

transform:translateY(-8px);

border-color:#00ff99;

box-shadow:0 20px 40px rgba(0,255,153,.15);

}



.website-card h3{

color:white;

margin-bottom:15px;

}



.website-card p{

color:#b8c9c2;

font-size:14px;

margin:10px 0;

}



.website-card p:last-of-type{

color:#00ff99;

font-weight:600;

}



.btn-primary{

display:inline-block;

text-decoration:none;

cursor:pointer;

}



@media(max-width:1000px){


.website-grid{

grid-template-columns:repeat(2,1fr);

}


}



@media(max-width:700px){

.website-grid{

grid-template-columns:1fr;

}

}

/* =========================
   Marketplace Filter
========================= */


.market-filter{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.12);

padding:25px;

border-radius:20px;

margin:25px 0;

}



.filter-row{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:15px;

}



.filter-box label{

display:block;

font-size:13px;

color:#00ff99;

margin-bottom:8px;

font-weight:600;

}



.filter-box input{

width:100%;

padding:13px;

background:#061a14;

border:1px solid rgba(255,255,255,.15);

border-radius:12px;

color:white;

outline:none;

}



.filter-box input:focus{

border-color:#00ff99;

box-shadow:0 0 12px rgba(0,255,153,.2);

}



.reset-btn{

display:inline-block;

margin-left:15px;

padding:12px 22px;

border-radius:12px;

border:1px solid rgba(255,255,255,.2);

color:white;

text-decoration:none;

transition:.3s;

}



.reset-btn:hover{

border-color:#00ff99;

color:#00ff99;

}



@media(max-width:1100px){

.filter-row{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:700px){

.filter-row{

grid-template-columns:1fr;

}

}
/* =========================
   Website Marketplace Card Upgrade
========================= */


.website-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:15px;

}



.website-header h3{

font-size:20px;

}



.service-badge{

background:rgba(0,255,153,.15);

color:#00ff99;

padding:6px 12px;

border-radius:20px;

font-size:12px;

font-weight:600;

}




.website-url{

font-size:13px;

color:#9fb5aa;

word-break:break-all;

}




.website-stats{

display:grid;

grid-template-columns:1fr 1fr;

gap:15px;

margin:20px 0;

}



.website-stats div{

background:rgba(255,255,255,.05);

padding:15px;

border-radius:14px;

text-align:center;

}



.website-stats strong{

display:block;

color:#00ff99;

font-size:15px;

}



.website-stats small{

color:#aaa;

font-size:12px;

}




.placement-info{

display:flex;

gap:10px;

margin-bottom:20px;

}



.placement-info span{

background:rgba(255,255,255,.08);

padding:8px 12px;

border-radius:20px;

font-size:12px;

color:white;

}




.price{

color:#00ff99;

margin:15px 0;

font-size:22px;

}

/* ===============================
   MY ORDERS PAGE
================================ */


.order-filter-box{

display:flex;

gap:15px;

margin:25px 0;

}



.order-search{

width:300px;

padding:14px 18px;

background:#03120e;

border:1px solid rgba(255,255,255,.12);

border-radius:12px;

color:white;

outline:none;

}



.order-filter{

padding:14px 18px;

background:#03120e;

border:1px solid rgba(255,255,255,.12);

border-radius:12px;

color:white;

}





.orders-table{

background:#03120e;

border:1px solid rgba(255,255,255,.08);

border-radius:18px;

overflow:hidden;

box-shadow:0 20px 50px rgba(0,0,0,.35);

}





.orders-table table{

width:100%;

border-collapse:collapse;

}





.orders-table th{

padding:18px;

text-align:left;

font-size:13px;

color:#00ff99;

background:rgba(0,255,153,.05);

}





.orders-table td{

padding:18px;

border-bottom:1px solid rgba(255,255,255,.08);

color:#ddd;

}





.orders-table tr:hover{

background:rgba(0,255,153,.04);

}





.payment-badge{

padding:6px 12px;

border-radius:20px;

background:rgba(0,255,153,.12);

color:#00ff99;

font-size:12px;

}





.status-badge{

padding:6px 12px;

border-radius:20px;

background:#13251f;

color:#00ff99;

font-size:12px;

}





.view-order-btn{

padding:8px 18px;

border-radius:10px;

background:#00ff99;

color:#00150f;

font-weight:600;

text-decoration:none;

font-size:13px;

transition:.3s;

}



.view-order-btn:hover{

transform:translateY(-2px);

box-shadow:0 10px 25px rgba(0,255,153,.35);

}

/* ===============================
   ORDER DETAILS PAGE
================================ */


.order-detail-card{

background:#03120e;

border:1px solid rgba(255,255,255,.08);

border-radius:22px;

padding:35px;

box-shadow:0 20px 60px rgba(0,0,0,.35);

}




.order-detail-card h2{

color:#fff;

margin-bottom:25px;

}





.order-number-box{

background:rgba(0,255,153,.08);

border:1px solid rgba(0,255,153,.15);

padding:18px;

border-radius:14px;

margin-bottom:30px;

color:#ddd;

}





.order-number-box strong{

color:#00ff99;

margin-left:8px;

}





.detail-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}





.detail-box{

background:#071b15;

padding:22px;

border-radius:16px;

border:1px solid rgba(255,255,255,.08);

}




.detail-box h4{

color:#00ff99;

margin-bottom:12px;

font-size:14px;

}




.detail-box p{

font-size:18px;

color:white;

margin:0 0 8px;

}



.detail-box a{

color:#aaa;

font-size:13px;

word-break:break-all;

}





.website-performance{

margin-top:35px;

padding:25px;

background:rgba(255,255,255,.03);

border-radius:18px;

}




.website-performance h3{

margin-bottom:20px;

color:white;

}





.performance-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}




.performance-grid div{

background:#071b15;

padding:20px;

border-radius:15px;

text-align:center;

}



.performance-grid strong{

display:block;

font-size:22px;

color:#00ff99;

margin-bottom:8px;

}



.performance-grid span{

color:#aaa;

font-size:13px;

}

/* ===============================
   WALLET PAGE
================================ */


.wallet-main-card{

display:flex;

justify-content:space-between;

align-items:center;

background:linear-gradient(
135deg,
rgba(0,255,153,.15),
rgba(3,18,14,.9)
);

border:1px solid rgba(0,255,153,.2);

border-radius:22px;

padding:35px;

margin:30px 0;

box-shadow:0 20px 60px rgba(0,0,0,.35);

}




.wallet-main-card h4{

color:#aaa;

font-size:14px;

margin-bottom:10px;

}



.wallet-main-card h1{

font-size:42px;

color:#00ff99;

margin:0;

}





.transaction-section{

margin-top:40px;

}





.transactions-table{

background:#03120e;

border-radius:18px;

overflow:hidden;

border:1px solid rgba(255,255,255,.08);

}




.transactions-table table{

width:100%;

border-collapse:collapse;

}




.transactions-table th{

padding:18px;

text-align:left;

color:#00ff99;

background:rgba(0,255,153,.05);

}




.transactions-table td{

padding:18px;

border-bottom:1px solid rgba(255,255,255,.08);

color:#ddd;

}




.transactions-table tr:hover{

background:rgba(0,255,153,.04);

}

/* ===============================
   ADD FUNDS PAGE
================================ */


.fund-card{

max-width:550px;

background:#03120e;

padding:35px;

border-radius:22px;

border:1px solid rgba(255,255,255,.08);

box-shadow:0 20px 60px rgba(0,0,0,.35);

}



.fund-card form{

display:flex;

flex-direction:column;

gap:18px;

}




.fund-card label{

color:#00ff99;

font-size:14px;

font-weight:600;

}





.fund-card input,

.fund-card select{

padding:15px 18px;

background:#071b15;

border:1px solid rgba(255,255,255,.12);

border-radius:12px;

color:white;

outline:none;

font-size:15px;

}





.fund-card input:focus,

.fund-card select:focus{

border-color:#00ff99;

}





.fund-card select option{

background:#071b15;

color:white;

}





.success-box{

background:rgba(0,255,153,.12);

border:1px solid rgba(0,255,153,.3);

color:#00ff99;

padding:15px 20px;

border-radius:12px;

margin:20px 0;

}

/* ===============================
   WALLET TRANSACTION COLORS
================================ */


.credit-amount{

color:#00ff99;

font-weight:700;

background:rgba(0,255,153,.12);

padding:8px 14px;

border-radius:20px;

display:inline-block;

}



.debit-amount{

color:#ff6b6b;

font-weight:700;

background:rgba(255,107,107,.12);

padding:8px 14px;

border-radius:20px;

display:inline-block;

}




.transactions-table tr{

transition:.3s;

}



.transactions-table tr:hover{

transform:translateX(5px);

}

/* ===============================
   NOTIFICATIONS PAGE
================================ */


.notification-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:30px;

}




.notification-list{

display:flex;

flex-direction:column;

gap:18px;

}





.notification-card{

display:flex;

gap:18px;

align-items:flex-start;

background:#03120e;

border:1px solid rgba(255,255,255,.08);

border-radius:18px;

padding:22px;

transition:.3s;

}





.notification-card:hover{

transform:translateY(-3px);

border-color:rgba(0,255,153,.3);

}





.notification-card.unread{

background:rgba(0,255,153,.06);

border-color:rgba(0,255,153,.25);

}





.notification-icon{

width:45px;

height:45px;

display:flex;

align-items:center;

justify-content:center;

background:rgba(0,255,153,.15);

border-radius:50%;

font-size:22px;

}





.notification-card h3{

color:white;

margin:0 0 8px;

}




.notification-card p{

color:#aaa;

margin-bottom:10px;

}





.notification-card span{

color:#00ff99;

font-size:13px;

}





.empty-box{

background:#03120e;

padding:30px;

border-radius:18px;

text-align:center;

color:#aaa;

}

/* ===============================
   SETTINGS PAGE
================================ */


.settings-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

margin-top:30px;

}




.settings-card{

background:#03120e;

border:1px solid rgba(255,255,255,.08);

border-radius:22px;

padding:30px;

box-shadow:0 20px 50px rgba(0,0,0,.35);

}





.settings-card h3{

color:#00ff99;

margin-bottom:25px;

}





.settings-card form{

display:flex;

flex-direction:column;

gap:16px;

}





.settings-card label{

color:#aaa;

font-size:14px;

}




.settings-card input{

padding:15px 18px;

background:#071b15;

border:1px solid rgba(255,255,255,.12);

border-radius:12px;

color:white;

outline:none;

font-size:15px;

}





.settings-card input:focus{

border-color:#00ff99;

}





.settings-card button{

margin-top:10px;

width:max-content;

}

/* =================================
   ADVANCED SETTINGS PAGE
================================= */



.settings-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

align-items:start;

}




.settings-card{

background:#03120e;

border:1px solid rgba(255,255,255,.08);

border-radius:22px;

padding:30px;

box-shadow:0 20px 50px rgba(0,0,0,.35);

transition:.3s;

}



.settings-card:hover{

transform:translateY(-4px);

border-color:rgba(0,255,153,.35);

}




.settings-card h3{

color:#00ff99;

font-size:20px;

margin-bottom:25px;

}




.settings-card form{

display:flex;

flex-direction:column;

gap:15px;

}




.settings-card label{

color:#b8b8b8;

font-size:14px;

}




.settings-card input,
.settings-card textarea{

width:100%;

padding:14px 16px;

background:#071b15;

border:1px solid rgba(255,255,255,.12);

border-radius:12px;

color:white;

font-size:15px;

outline:none;

}



.settings-card textarea{

height:120px;

resize:none;

}



.settings-card input:focus,
.settings-card textarea:focus{

border-color:#00ff99;

box-shadow:0 0 10px rgba(0,255,153,.15);

}






/* PROFILE IMAGE */


.profile-upload-box{

text-align:center;

margin-bottom:25px;

}




.profile-preview{

width:120px;

height:120px;

border-radius:50%;

object-fit:cover;

border:3px solid #00ff99;

padding:3px;

background:#03120e;

margin-bottom:15px;

}





.profile-upload-box input[type="file"]{

background:#071b15;

padding:12px;

border-radius:10px;

color:#aaa;

margin-bottom:15px;

}





.profile-upload-box button{

margin:auto;

}




/* SUCCESS MESSAGE */


.success-box{

background:rgba(0,255,153,.12);

border:1px solid rgba(0,255,153,.35);

color:#00ff99;

padding:15px 20px;

border-radius:14px;

margin-bottom:25px;

}






/* MOBILE */


@media(max-width:900px){


.settings-grid{

grid-template-columns:1fr;

}


}

.btn-danger{

background:#ff3b3b;

color:white;

border:none;

padding:12px 20px;

border-radius:12px;

cursor:pointer;

margin-top:10px;

}


.btn-danger:hover{

background:#d90000;

}

.user-avatar{

width:45px;

height:45px;

border-radius:50%;

object-fit:cover;

border:2px solid #00ff99;

}

/* =====================================
   ADMIN WEBSITE INVENTORY
===================================== */


.dashboard-section h2{

color:#00ff99;

margin-bottom:10px;

}



.dashboard-section p{

color:#aaa;

}




.orders-table{

margin-top:30px;

overflow-x:auto;

}




.orders-table table{

width:100%;

border-collapse:collapse;

background:#03120e;

border-radius:18px;

overflow:hidden;

}



.orders-table th{

background:#071b15;

color:#00ff99;

padding:16px;

text-align:left;

font-size:14px;

}



.orders-table td{

padding:16px;

border-bottom:1px solid rgba(255,255,255,.08);

color:#ddd;

font-size:14px;

}



.orders-table tr:hover{

background:rgba(0,255,153,.05);

}





.orders-table small{

color:#888;

}




/* Service Badges */


.orders-table td span{

display:inline-block;

background:rgba(0,255,153,.12);

color:#00ff99;

padding:6px 10px;

border-radius:20px;

font-size:12px;

margin:3px;

}




/* Action Links */


.orders-table td a{

color:#00ff99;

text-decoration:none;

font-weight:600;

}



.orders-table td a:hover{

color:white;

}




/* Add Button */


.btn-primary{

background:#00ff99;

color:#03120e;

padding:12px 22px;

border-radius:12px;

text-decoration:none;

font-weight:700;

border:none;

cursor:pointer;

}



.btn-primary:hover{

background:white;

}




/* Admin Table Card */

.orders-table{

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.35);

}

/* =====================================
   ADMIN ADD WEBSITE FORM
===================================== */


.settings-card{

background:#03120e;

border:1px solid rgba(255,255,255,.08);

border-radius:22px;

padding:30px;

}




.settings-card form{

display:flex;

flex-direction:column;

gap:15px;

}



.settings-card label{

color:#bfcfc8;

font-size:14px;

font-weight:600;

}



.settings-card input,
.settings-card textarea{

background:#071b15;

border:1px solid rgba(255,255,255,.12);

color:white;

padding:14px;

border-radius:12px;

font-size:15px;

outline:none;

}



.settings-card textarea{

height:130px;

resize:none;

}




.settings-card input:focus,
.settings-card textarea:focus{

border-color:#00ff99;

box-shadow:0 0 12px rgba(0,255,153,.15);

}





/* Services Section */


.settings-card h3{

color:#00ff99;

margin-top:20px;

margin-bottom:10px;

}




.settings-card hr{

border:none;

height:1px;

background:rgba(255,255,255,.1);

margin:20px 0;

}




/* Checkbox */


.checkbox{

display:flex;

align-items:center;

gap:10px;

background:#071b15;

padding:12px;

border-radius:12px;

cursor:pointer;

}



.checkbox input{

width:18px;

height:18px;

accent-color:#00ff99;

}




/* File Upload */


.settings-card input[type="file"]{

padding:12px;

}




/* Button */


.settings-card .btn-primary{

margin-top:20px;

width:max-content;

}




/* Responsive */


@media(max-width:800px){


.settings-card{

padding:20px;

}


}

.status-badge{

padding:6px 14px;

border-radius:20px;

font-size:13px;

font-weight:600;

display:inline-block;

text-transform:capitalize;

}



.status-badge.pending{

background:#fff3cd;

color:#856404;

}



.status-badge.approved{

background:#d4edda;

color:#155724;

}



.status-badge.working{

background:#cfe2ff;

color:#084298;

}



.status-badge.completed{

background:#d1e7dd;

color:#0f5132;

}



.status-badge.cancelled{

background:#f8d7da;

color:#842029;

}

.payment-badge{

padding:6px 14px;

border-radius:20px;

font-size:13px;

font-weight:600;

display:inline-block;

}



.payment-badge.unpaid{

background:#f8d7da;

color:#842029;

}



.payment-badge.paid{

background:#d1e7dd;

color:#0f5132;

}

.notification-count{

background:#00ff99;

color:#03120e;

padding:3px 8px;

border-radius:50px;

font-size:12px;

font-weight:700;

margin-left:8px;

}

.notification-card{

display:block;

background:#071d17;

padding:20px;

margin-bottom:15px;

border-radius:12px;

color:white;

text-decoration:none;

border:1px solid rgba(255,255,255,.08);

}



.notification-card.unread{

border-left:4px solid #00ff99;

}



.notification-card h3{

margin-bottom:8px;

}



.notification-card small{

opacity:.7;

}

.chat-container{

max-width:800px;

background:#071d17;

border-radius:15px;

padding:20px;

}



.chat-header{

border-bottom:1px solid rgba(255,255,255,.1);

padding-bottom:15px;

margin-bottom:15px;

}



.chat-box{

height:400px;

overflow-y:auto;

padding:15px;

}



.message{

max-width:70%;

padding:12px;

margin-bottom:15px;

border-radius:12px;

color:white;

}



.message.sender{

margin-left:auto;

background:#00cc77;

color:#02140d;

}



.message.receiver{

background:#122b23;

margin-right:auto;

}



.message small{

display:block;

font-size:11px;

margin-top:5px;

opacity:.7;

}



.chat-form{

display:flex;

gap:10px;

}



.chat-form input{

flex:1;

padding:12px;

border-radius:8px;

border:none;

}

.chat-file{

margin-top:8px;

padding:8px;

background:rgba(255,255,255,.08);

border-radius:8px;

}

.chat-file a{

color:#00ff99;

text-decoration:none;

font-weight:600;

}

.chat-file a:hover{

text-decoration:underline;

}

.dashboard-topbar{

display:flex;

justify-content:space-between;

align-items:center;

background:#fff;

padding:20px;

border-radius:12px;

margin-bottom:25px;

box-shadow:0 2px 10px rgba(0,0,0,.08);

}

.topbar-right{

display:flex;

align-items:center;

gap:20px;

}

.topbar-search input{

padding:10px 15px;

border:1px solid #ddd;

border-radius:8px;

width:240px;

}

.notification-btn{

position:relative;

font-size:22px;

text-decoration:none;

}

.notification-count{

position:absolute;

top:-8px;

right:-8px;

background:#ff3b30;

color:#fff;

border-radius:50%;

padding:3px 7px;

font-size:11px;

font-weight:bold;

}

.admin-profile{

display:flex;

align-items:center;

gap:10px;

}

.admin-avatar{

width:45px;

height:45px;

background:#00cc77;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-weight:bold;

color:#fff;

font-size:18px;

}

/* =====================================
   AD INVENTORY PREMIUM SECTIONS
===================================== */


/* Inventory Hero */

.inventory-hero{

    min-height:45vh;

    display:flex;

    align-items:center;

    text-align:center;

    padding:80px 0;

    position:relative;

    overflow:hidden;

}



.inventory-hero::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:#00ff99;

    filter:blur(180px);

    opacity:.18;

    top:-150px;

    left:50%;

    transform:translateX(-50%);

}



.inventory-hero h1{

    position:relative;

    z-index:2;

    font-size:60px;

    font-weight:800;

    margin-bottom:25px;

}



.inventory-hero p{

    position:relative;

    z-index:2;

    max-width:800px;

    margin:auto;

    color:#aaa;

    font-size:20px;

    line-height:1.7;

}



/* Fixed Price Section */


.fixed-price-section{

    padding:80px 0;

    text-align:center;

}



.fixed-price-section h2,
.why-section h2{

    font-size:45px;

    margin-bottom:20px;

    position:relative;

    display:inline-block;

}



.fixed-price-section h2::after,
.why-section h2::after{


    content:"";

    position:absolute;

    width:60%;

    height:3px;

    background:#00ff99;

    bottom:-12px;

    left:20%;


    box-shadow:

    0 0 20px #00ff99;

}




/* Inventory Cards Enhancement */


.fixed-price-section .inventory-card,
.why-section .inventory-card{


    min-height:220px;

    padding:35px;

    position:relative;

    overflow:hidden;

    transition:.4s ease;

}



.fixed-price-section .inventory-card::before,
.why-section .inventory-card::before{


    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:#00ff99;

    filter:blur(80px);

    right:-40px;

    top:-40px;

    opacity:.25;

}



.fixed-price-section .inventory-card:hover,
.why-section .inventory-card:hover{


    transform:

    translateY(-12px)

    rotateX(5deg);


    border-color:#00ff99;


    box-shadow:

    0 30px 60px rgba(0,255,153,.25);


}



.fixed-price-section h3,
.why-section h3{

    color:#00ff99;

    font-size:25px;

    margin-bottom:15px;

}



.fixed-price-section p,
.why-section p{

    color:#aaa;

    line-height:1.7;

}





/* Publisher Inventory Upgrade */


.publisher-inventory{

    padding:80px 0;

}



.publisher-inventory h2{

    text-align:center;

    font-size:45px;

    margin-bottom:15px;

}





.website-card{


    background:

    linear-gradient(

    145deg,

    rgba(255,255,255,.08),

    rgba(255,255,255,.03)

    );


    border:1px solid rgba(0,255,153,.15);

    box-shadow:

    0 20px 50px rgba(0,0,0,.4);

}



.website-card:hover{


    border-color:#00ff99;


    box-shadow:

    0 30px 70px rgba(0,255,153,.25);


}





/* New Advertiser Section */


.new-advertiser-section{

    padding:60px 0;

}



.new-advertiser-section .cta-box{


    padding:60px 40px;


}



.new-advertiser-section h2{


    font-size:40px;

    margin-bottom:20px;


}



.new-advertiser-section p{


    color:#aaa;

    font-size:18px;

    line-height:1.8;

}



/* Section Spacing */


.why-section{

    padding:80px 0;

    text-align:center;

}




/* Mobile */


@media(max-width:700px){


.inventory-hero h1{

    font-size:38px;

}



.fixed-price-section h2,
.why-section h2,
.publisher-inventory h2{

    font-size:32px;

}



.inventory-hero p{

    font-size:16px;

}


}

/* =====================================
   PRICING PAGE PREMIUM STYLE
===================================== */


/* Pricing Hero */

.pricing-hero{

    min-height:45vh;

    display:flex;

    align-items:center;

    text-align:center;

    padding:90px 0;

    position:relative;

    overflow:hidden;

}


.pricing-hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#00ff99;

    filter:blur(180px);

    opacity:.18;

    top:-200px;

    left:50%;

    transform:translateX(-50%);

}


.pricing-hero h1{

    position:relative;

    z-index:2;

    font-size:58px;

    font-weight:800;

    margin-bottom:25px;

}



.pricing-hero p{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:auto;

    color:#aaa;

    font-size:20px;

    line-height:1.8;

}




/* Pricing Main */


.pricing-main{

    padding:80px 0;

    text-align:center;

}



.pricing-main h2,
.why-price-section h2{

    font-size:45px;

    margin-bottom:20px;

}





.pricing-grid{

    margin-top:50px;

}





.price-card{


    position:relative;

    padding:40px 30px;

    overflow:hidden;

    transition:.4s ease;

}



.price-card::before{


    content:"";

    position:absolute;

    width:150px;

    height:150px;

    background:#00ff99;

    filter:blur(90px);

    opacity:.18;

    right:-50px;

    top:-50px;


}



.price-card:hover{


    transform:translateY(-12px);


    border-color:#00ff99;


    box-shadow:

    0 30px 70px rgba(0,255,153,.25);


}





.price-card h3{

    color:#fff;

    font-size:26px;

    margin-bottom:20px;

}



.price-card h4{


    font-size:45px;

    color:#00ff99;

    margin-bottom:30px;


}



.price-card h4 span{


    font-size:18px;

    color:#aaa;

}



.price-card ul{


    list-style:none;

    padding:0;

    margin-bottom:35px;


}



.price-card ul li{


    padding:12px;

    color:#bbb;

    border-bottom:1px solid rgba(255,255,255,.08);


}




/* Featured Pricing Card */


.price-card.featured{


    border:1px solid #00ff99;


    box-shadow:

    0 0 40px rgba(0,255,153,.15);


}




.popular{


    position:absolute;

    top:20px;

    right:20px;


    background:#00ff99;

    color:#000;


    padding:8px 18px;

    border-radius:20px;

    font-size:13px;

    font-weight:700;


}






/* Why Fixed Pricing */


.why-price-section{


    padding:90px 0;

    text-align:center;


}



.why-grid{


    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:50px;


}



.why-card{


    padding:35px 25px;

    transition:.4s ease;


}



.why-card:hover{


    transform:translateY(-10px);


    border-color:#00ff99;


    box-shadow:

    0 25px 60px rgba(0,255,153,.20);


}



.why-card h3{


    color:#00ff99;

    font-size:22px;

    margin-bottom:15px;


}



.why-card p{


    color:#aaa;

    line-height:1.7;


}






/* New Advertiser Box */


.new-advertiser-section{


    padding:70px 0;

}



.new-advertiser-section .cta-box{


    text-align:center;

    padding:60px 40px;


}



.new-advertiser-section h2{


    font-size:40px;

    margin-bottom:20px;


}



.new-advertiser-section ul{


    list-style:none;

    padding:0;

    margin:30px 0;


}



.new-advertiser-section li{


    color:#bbb;

    padding:8px;


}





/* Responsive */


@media(max-width:900px){


.why-grid{

    grid-template-columns:repeat(2,1fr);

}


}



@media(max-width:600px){


.pricing-hero h1{

    font-size:36px;

}



.pricing-main h2,
.why-price-section h2{

    font-size:32px;

}



.why-grid{

    grid-template-columns:1fr;

}



}

/* =====================================
   CONTACT PAGE PREMIUM STYLE
===================================== */


/* Contact Hero */

.contact-hero{

    min-height:45vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:90px 0;

    position:relative;

    overflow:hidden;

}


.contact-hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#00ff99;

    filter:blur(180px);

    opacity:.18;

    top:-200px;

    left:50%;

    transform:translateX(-50%);

}



.contact-hero h1{

    position:relative;

    z-index:2;

    font-size:58px;

    font-weight:800;

    margin-bottom:20px;

}



.contact-hero p{

    position:relative;

    z-index:2;

    max-width:800px;

    margin:auto;

    color:#aaa;

    font-size:20px;

    line-height:1.8;

}






/* Contact Main */


.contact-section{

    padding:90px 0;

}



.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:35px;

}






/* Contact Cards */


.contact-info,
.contact-form{

    padding:40px;

}



.contact-info h2,
.contact-form h2{

    font-size:35px;

    margin-bottom:20px;

}





.contact-info p{

    color:#aaa;

    line-height:1.8;

}






.contact-box{


    margin-top:25px;

    padding:25px;

    background:rgba(255,255,255,.03);

    border-radius:15px;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s ease;


}



.contact-box:hover{


    transform:translateY(-8px);

    border-color:#00ff99;

    box-shadow:

    0 20px 50px rgba(0,255,153,.15);


}



.contact-box h3{


    color:#00ff99;

    margin-bottom:10px;


}





.contact-box p{


    margin:0;

}






/* Contact Form */


.form-group{

    margin-bottom:20px;

}



.form-group label{


    display:block;

    margin-bottom:8px;

    color:#ddd;

}



.form-group input,
.form-group textarea{


    width:100%;

    padding:15px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.1);

    border-radius:12px;

    color:white;

    font-size:15px;

    outline:none;


}



.form-group input:focus,
.form-group textarea:focus{


    border-color:#00ff99;

    box-shadow:

    0 0 20px rgba(0,255,153,.15);


}



.form-group textarea{


    resize:none;

}





/* Contact Trust Section */


.contact-trust{


    padding:70px 0;

}



.trust-box{


    padding:50px;

    text-align:center;


}



.trust-box h2{


    font-size:40px;

    margin-bottom:40px;


}





.trust-grid{


    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;


}



.trust-grid div{


    padding:30px;

    background:rgba(255,255,255,.03);

    border-radius:15px;

    transition:.4s;


}



.trust-grid div:hover{


    transform:translateY(-10px);

    border:1px solid #00ff99;

}



.trust-grid h3{


    color:#00ff99;

    margin-bottom:15px;


}



.trust-grid p{


    color:#aaa;

    line-height:1.7;


}






/* Responsive */


@media(max-width:900px){


.contact-grid{

    grid-template-columns:1fr;

}



.trust-grid{

    grid-template-columns:1fr;

}


}




@media(max-width:600px){


.contact-hero h1{

    font-size:36px;

}



.contact-info,
.contact-form{

    padding:25px;

}



.trust-box{

    padding:25px;

}



}

.btn-admin{
    background:#ff9800;
    color:#fff;
    padding:12px 22px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    margin:0 10px;
}

.btn-admin:hover{
    background:#ffb74d;
    transform:translateY(-2px);
    box-shadow:0 0 15px rgba(255,152,0,.4);
}

/* ==========================
   ADMIN DASHBOARD
========================== */

.admin-body{
    background:#050b12;
}


.admin-layout{
    display:flex;
    min-height:100vh;
}


.admin-sidebar{
    width:260px;
    background:#07131f;
    padding:30px 20px;
    border-right:1px solid rgba(255,255,255,0.08);
}


.admin-logo{
    text-align:center;
    margin-bottom:40px;
}


.admin-logo p{
    color:#aaa;
}



.admin-menu{
    list-style:none;
    padding:0;
}


.admin-menu li{
    margin-bottom:12px;
}


.admin-menu a{
    display:block;
    padding:14px 18px;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    transition:.3s;
}


.admin-menu a:hover{
    background:#00cc77;
    color:#000;
}





.admin-content{
    flex:1;
    padding:30px;
}



.admin-topbar{
    padding:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}



.admin-profile{
    background:#00cc77;
    color:#000;
    padding:10px 20px;
    border-radius:20px;
    font-weight:600;
}




.admin-welcome{
    padding:35px;
    margin-bottom:30px;
}



.admin-stats,
.admin-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:35px;
}



.admin-card{
    padding:25px;
    text-align:center;
}



.admin-card h3{
    font-size:28px;
    color:#00ff99;
    margin-bottom:10px;
}


.admin-card strong{
    display:block;
    font-size:30px;
    color:#00ff99;
}





.admin-section{
    margin-top:40px;
}



.admin-title{
    margin-bottom:25px;
}



.inventory-status{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    padding:30px;
    gap:20px;
    text-align:center;
}




.admin-table{
    padding:25px;
    overflow-x:auto;
}



.admin-table table{
    width:100%;
    border-collapse:collapse;
}



.admin-table th,
.admin-table td{
    padding:15px;
    text-align:left;
    border-bottom:1px solid rgba(255,255,255,.1);
    color:#fff;
}



.status{
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
}


.status.pending{
    background:#ff9800;
    color:#000;
}


.status.success{
    background:#00cc77;
    color:#000;
}




.admin-footer{
    text-align:center;
    padding:30px;
    color:#aaa;
}






@media(max-width:900px){

.admin-layout{
    flex-direction:column;
}


.admin-sidebar{
    width:100%;
}


.admin-stats,
.admin-grid,
.inventory-status{
    grid-template-columns:1fr;
}

}

/* =====================================
   ADEMPIREX ADMIN PANEL PREMIUM UI
===================================== */


.admin-body{
    background:#050b14;
    color:#fff;
}


/* Layout */

.admin-layout{
    display:flex;
    min-height:100vh;
}



/* Sidebar */

.admin-sidebar{

    width:270px;
    background:
    linear-gradient(180deg,#071522,#030812);

    padding:30px 20px;

    border-right:1px solid rgba(255,255,255,.08);

    position:sticky;
    top:0;
    height:100vh;

}



.admin-logo{

    text-align:center;
    margin-bottom:40px;

}


.admin-logo h2{

    font-size:28px;

}


.admin-logo p{

    color:#00ff99;
    font-size:14px;

}




.admin-menu{

    list-style:none;
    padding:0;
}



.admin-menu li{

    margin-bottom:12px;

}



.admin-menu a{

    display:flex;
    align-items:center;

    padding:14px 18px;

    color:#ddd;

    text-decoration:none;

    border-radius:12px;

    transition:.3s;

}



.admin-menu a:hover{

    background:#00ff99;

    color:#000;

    transform:translateX(5px);

}






/* Main Content */


.admin-content{

    flex:1;

    padding:35px;

}






/* Topbar */


.admin-topbar{

    padding:25px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}



.admin-topbar h2{

    margin:0;

    font-size:28px;

}




.admin-topbar p{

    color:#aaa;

}





.admin-profile{

    background:#00ff99;

    color:#000;

    padding:12px 25px;

    border-radius:30px;

    font-weight:700;

}







/* Cards */


.admin-card,
.admin-welcome{

    background:

    linear-gradient(
    145deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.03)
    );

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:

    0 20px 40px rgba(0,0,0,.3);

}




.admin-card{

    padding:30px;

    border-radius:20px;

    text-align:center;

    transition:.3s;

}



.admin-card:hover{

    transform:translateY(-8px);

    border-color:#00ff99;

}





.admin-card h3{

    font-size:34px;

    color:#00ff99;

    margin-bottom:10px;

}



.admin-card p{

    color:#bbb;

}





/* Grid */


.admin-stats,
.admin-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

    margin-bottom:35px;

}






/* Sections */


.admin-section{

    margin-top:45px;

}



.admin-title h2{

    font-size:26px;

}



.admin-title p{

    color:#999;

}





/* Table */


.admin-table{

    padding:25px;

    border-radius:20px;

    overflow:hidden;

}



.admin-table table{

    width:100%;

    border-collapse:collapse;

}



.admin-table th{

    color:#00ff99;

}



.admin-table th,
.admin-table td{

    padding:18px;

    border-bottom:
    1px solid rgba(255,255,255,.08);

}





.admin-table tr:hover{

    background:
    rgba(0,255,153,.05);

}






/* Status */


.status{

    padding:7px 15px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}


.status.success{

    background:#00ff99;

    color:#000;

}



.status.pending{

    background:#ffb300;

    color:#000;

}







/* Notifications */


.notification-box{

    padding:25px;

    border-radius:20px;

}



.notification-box div{

    padding:15px;

    border-bottom:

    1px solid rgba(255,255,255,.08);

    color:#ddd;

}





/* Footer */


.admin-footer{

    text-align:center;

    padding:40px;

    color:#888;

}







/* Responsive */


@media(max-width:1100px){


.admin-stats,
.admin-grid{

grid-template-columns:
repeat(2,1fr);

}


}



@media(max-width:700px){


.admin-layout{

display:block;

}



.admin-sidebar{

width:auto;

height:auto;

position:relative;

}



.admin-stats,
.admin-grid{

grid-template-columns:1fr;

}


.admin-content{

padding:20px;

}


}

.status-badge{

padding:6px 14px;

border-radius:20px;

font-size:13px;

font-weight:600;

display:inline-block;

}



.pending{

background:#fff3cd;

color:#856404;

}



.working{

background:#cfe2ff;

color:#084298;

}



.completed{

background:#d1e7dd;

color:#0f5132;

}



.cancelled{

background:#f8d7da;

color:#842029;

}

/* ===============================
   Advertiser Orders Cards
================================ */


.orders-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
    margin-top:30px;
}



.order-card{

    background:rgba(255,255,255,0.05);
    border:1px solid rgba(0,255,153,0.25);
    border-radius:18px;
    padding:25px;

    backdrop-filter:blur(15px);

    box-shadow:
    0 0 25px rgba(0,255,153,0.08);

    transition:0.3s ease;

}



.order-card:hover{

    transform:translateY(-5px);

    border-color:#00ff99;

    box-shadow:
    0 0 30px rgba(0,255,153,0.25);

}





.order-header{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:20px;

}



.order-header h3{

    color:#00ff99;

    font-size:20px;

    margin:0;

}





.status-badge{

    padding:6px 15px;

    border-radius:30px;

    background:#ffb800;

    color:#000;

    font-weight:600;

    font-size:13px;

}





.order-info{

    border-top:1px solid rgba(255,255,255,0.1);

    padding-top:18px;

}



.order-info p{

    margin:12px 0;

    color:#ddd;

    font-size:15px;

}



.order-info strong{

    color:white;

}





.order-actions{

    margin-top:20px;

}





.order-actions a{

    display:inline-block;

    padding:10px 18px;

    border-radius:10px;

    text-decoration:none;

    background:#00ff99;

    color:#000;

    font-weight:600;

    transition:.3s;

}



.order-actions a:hover{

    box-shadow:0 0 15px #00ff99;

}





.empty-orders{

    padding:40px;

    text-align:center;

    background:rgba(255,255,255,.05);

    border-radius:15px;

    color:#aaa;

}

/* ================================
   ADMIN ORDERS PAGE STYLE
================================ */


.main-content{
    margin-left:260px;
    padding:30px;
    background:#07110d;
    min-height:100vh;
    color:white;
}



.card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(0,255,153,0.25);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 0 25px rgba(0,255,153,0.08);
}



.card-body{
    padding:25px;
}



.table{
    width:100%;
    border-collapse:collapse;
    color:white;
}



.table th{

    background:rgba(0,255,153,0.15);
    color:#00ff99;
    padding:15px;
    text-align:left;

}



.table td{

    padding:15px;
    border-bottom:1px solid rgba(255,255,255,0.1);

}



.table tr:hover{

    background:rgba(0,255,153,0.05);

}




.status-badge{

    padding:7px 15px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;

}



.status-badge.pending{

    background:#ffb800;
    color:#000;

}



.status-badge.working{

    background:#008cff;
    color:white;

}



.status-badge.completed{

    background:#00ff99;
    color:#000;

}



.status-badge.cancelled{

    background:#ff3b3b;
    color:white;

}



.btn-sm{

    padding:8px 12px;
    border-radius:8px;
    text-decoration:none;
    font-size:13px;
    display:inline-block;
    margin:3px;

}



.btn-primary{

    background:#00ff99;
    color:#000;

}



.btn-success{

    background:#00cc77;
    color:white;

}



.btn-danger{

    background:#ff3b3b;
    color:white;

}



h2{

    color:white;

}

.order-stats{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin:25px 0;

}


.stat-card{

background:#0b1f17;
border:1px solid #00ff99;
padding:25px;
border-radius:18px;
text-align:center;
box-shadow:0 0 20px rgba(0,255,153,.15);

}


.stat-card h3{

font-size:32px;
color:#00ff99;

}



.glass-card{

background:rgba(255,255,255,.05);
padding:25px;
border-radius:20px;

}



.order-filter{

display:flex;
gap:15px;
margin-bottom:25px;

}



.order-filter input,
.order-filter select{

padding:12px;
background:#101b16;
color:white;
border:1px solid #00ff99;
border-radius:10px;

}



.order-table{

width:100%;
color:white;
border-collapse:collapse;

}



.order-table th{

color:#00ff99;
padding:15px;
border-bottom:1px solid #333;

}



.order-table td{

padding:15px;
border-bottom:1px solid rgba(255,255,255,.1);

}



.status-badge{

padding:6px 14px;
border-radius:20px;
font-size:13px;

}


.pending{

background:#ffc107;
color:black;

}


.working{

background:#008cff;
color:white;

}


.completed{

background:#00ff99;
color:black;

}


.cancelled{

background:#ff3333;
color:white;

}



.action-btn{

padding:7px 12px;
border-radius:8px;
text-decoration:none;
display:inline-block;
margin:3px;
font-size:12px;

}



.blue{

background:#008cff;
color:white;

}


.green{

background:#00ff99;
color:black;

}


.red{

background:#ff3333;
color:white;

}

.admin-footer{

    margin-top:40px;

    padding:20px;

    text-align:center;

    color:#bbb;

    border-top:1px solid rgba(0,255,153,.2);

    background:#08120d;

}

/* ===========================================
   ADMIN DASHBOARD V2 - PART 1B
===========================================*/

.admin-body{
    margin:0;
    background:#07110d;
    font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;
    color:#fff;
}

.admin-layout{
    display:flex;
    min-height:100vh;
}

.admin-main{
    flex:1;
    margin-left:260px;
    padding:30px;
    background:#07110d;
}

/* Welcome */

.dashboard-wrapper{
    width:100%;
}

.welcome-box{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(0,255,153,.20);
    border-radius:18px;
    padding:30px;
    margin-bottom:30px;
    box-shadow:0 0 20px rgba(0,255,153,.10);
}

.welcome-box h1{
    margin:0;
    color:#00ff99;
    font-size:32px;
}

.welcome-box p{
    margin-top:10px;
    color:#b8c6c0;
}

/* Stats Grid */

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

/* Cards */

.stat-card{

    display:flex;

    align-items:center;

    gap:20px;

    padding:25px;

    border-radius:18px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(0,255,153,.20);

    transition:.35s;

    box-shadow:0 0 15px rgba(0,255,153,.08);

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:0 0 30px rgba(0,255,153,.25);

    border-color:#00ff99;

}

.stat-icon{

    width:70px;

    height:70px;

    border-radius:16px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    background:#00ff99;

    color:#07110d;

    box-shadow:0 0 20px rgba(0,255,153,.40);

}

.stat-info{

    flex:1;

}

.stat-info h2{

    margin:0;

    font-size:32px;

    color:#fff;

}

.stat-info p{

    margin-top:8px;

    color:#9eb1a7;

}

/* Responsive */

@media(max-width:1200px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.admin-main{

margin-left:0;

padding:20px;

}

.stats-grid{

grid-template-columns:1fr;

}

.welcome-box h1{

font-size:24px;

}

}

/*========== SIDEBAR ==========*/

.admin-sidebar{

position:fixed;

left:0;

top:0;

width:260px;

height:100%;

background:#08120d;

border-right:1px solid rgba(0,255,153,.2);

padding:25px;

overflow:auto;

}

.admin-logo{

text-align:center;

margin-bottom:35px;

}

.admin-logo h2{

color:#00ff99;

margin:0;

}

.admin-logo p{

color:#8ca59b;

font-size:13px;

}

.admin-menu{

list-style:none;

padding:0;

margin:0;

}

.admin-menu li{

margin:8px 0;

}

.admin-menu a{

display:flex;

align-items:center;

gap:12px;

padding:14px 18px;

color:#ddd;

text-decoration:none;

border-radius:12px;

transition:.3s;

}

.admin-menu a:hover{

background:#00ff99;

color:#07110d;

}

.admin-menu li.active a{

background:#00ff99;

color:#07110d;

font-weight:bold;

box-shadow:0 0 15px rgba(0,255,153,.3);

}

.admin-menu hr{

border:none;

border-top:1px solid rgba(255,255,255,.08);

margin:18px 0;

}

/*========== TOPBAR ==========*/

.admin-topbar{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 30px;

margin-bottom:30px;

background:rgba(255,255,255,.05);

border:1px solid rgba(0,255,153,.2);

border-radius:18px;

}

.admin-topbar h2{

margin:0;

color:#00ff99;

}

.topbar-right{

display:flex;

align-items:center;

gap:20px;

}

.notify{

width:45px;

height:45px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#00ff99;

color:#07110d;

font-size:18px;

}

.admin-user{

display:flex;

align-items:center;

gap:10px;

padding:10px 18px;

background:#0b1812;

border-radius:12px;

}

.dashboard-row{

display:grid;

grid-template-columns:2fr 1fr;

gap:25px;

margin-top:30px;

}

.dashboard-left,
.dashboard-right{

display:flex;

flex-direction:column;

gap:20px;

}

.glass-card{

background:rgba(255,255,255,.05);

border:1px solid rgba(0,255,153,.2);

padding:25px;

border-radius:18px;

box-shadow:0 0 20px rgba(0,255,153,.08);

}

.dashboard-table{

width:100%;

border-collapse:collapse;

}

.dashboard-table th{

padding:15px;

color:#00ff99;

text-align:left;

border-bottom:1px solid rgba(255,255,255,.1);

}

.dashboard-table td{

padding:15px;

border-bottom:1px solid rgba(255,255,255,.05);

color:#fff;

}

.quick-actions{

display:grid;

gap:12px;

}

.quick-btn{

display:block;

padding:14px;

background:#0d1f17;

border:1px solid rgba(0,255,153,.2);

border-radius:12px;

text-decoration:none;

color:#fff;

text-align:center;

transition:.3s;

}

.quick-btn:hover{

background:#00ff99;

color:#07110d;

}

.activity-box ul{

padding-left:20px;

}

.activity-box li{

margin:10px 0;

color:#ddd;

}

/* ==========================
Analytics
========================== */

.analytics-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

margin-top:30px;

}

.analytics-card{

padding:25px;

border-radius:18px;

background:#161b22;

border:1px solid rgba(255,255,255,.05);

}

.analytics-header{

margin-bottom:20px;

}

.analytics-header h3{

color:#00ff99;

font-size:20px;

}

.analytics-body{

display:flex;

flex-direction:column;

gap:18px;

}

.analytics-item{

display:flex;

justify-content:space-between;

align-items:center;

padding:12px 0;

border-bottom:1px solid rgba(255,255,255,.08);

}

.analytics-item:last-child{

border:none;

}

.analytics-item span{

color:#aaa;

font-size:14px;

}

.analytics-item strong{

font-size:18px;

color:#fff;

font-weight:700;

}

@media(max-width:1100px){

.analytics-grid{

grid-template-columns:1fr;

}

}

/* ==========================
Charts
========================== */

.charts-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:25px;

margin-top:30px;

}

.chart-card{

padding:25px;

border-radius:18px;

background:#161b22;

}

.chart-card h3{

color:#00ff99;

margin-bottom:20px;

}

.chart-card canvas{

width:100%!important;

height:320px!important;

}

@media(max-width:1100px){

.charts-grid{

grid-template-columns:1fr;

}

}

/* =====================================
   AdEmpireX Admin Layout
===================================== */


.admin-body{

    background:#06140f;

    color:#ffffff;

    font-family:Arial, sans-serif;

    margin:0;

}



.admin-layout{

    display:flex;

    min-height:100vh;

}





/* SIDEBAR */


.sidebar{

    width:260px;

    background:#071a14;

    border-right:1px solid rgba(0,255,153,.25);

    position:fixed;

    top:0;

    left:0;

    height:100vh;

    padding:25px 15px;

}



.sidebar-logo{

    text-align:center;

    margin-bottom:35px;

}



.sidebar-logo h2{

    color:#00ff99;

    margin:0;

    font-size:28px;

}


.sidebar-logo span{

    color:#aaa;

    font-size:14px;

}




.sidebar-menu{

    list-style:none;

    padding:0;

}




.sidebar-menu li{

    margin:8px 0;

}



.sidebar-menu a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 15px;

    color:#ddd;

    text-decoration:none;

    border-radius:10px;

    transition:.3s;

}



.sidebar-menu a:hover,

.sidebar-menu .active a{


    background:#00ff99;

    color:#06140f;


}







/* MAIN AREA */


.admin-main{

    margin-left:290px;

    width:calc(100% - 290px);

    padding:30px;

}





.dashboard-wrapper{

    width:100%;

}






/* TOPBAR */


.admin-topbar{

    background:#101f19;

    border:1px solid rgba(0,255,153,.25);

    border-radius:18px;

    padding:20px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}







/* CARDS */


.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:35px;

}





.stat-card{

    background:#10251d;

    border:1px solid rgba(0,255,153,.25);

    border-radius:20px;

    padding:25px;

    text-align:center;

}





.stat-icon.green{


    width:70px;

    height:70px;

    margin:auto;

    border-radius:20px;

    background:#00ff99;

    color:#06140f;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;


}





.stat-info h2{

    font-size:32px;

    color:#fff;

    margin:20px 0 5px;

}





.stat-info p{

    color:#aaa;

}





@media(max-width:1000px){


.stats-grid{

grid-template-columns:repeat(2,1fr);

}


}



@media(max-width:700px){


.sidebar{

position:relative;

width:100%;

height:auto;

}



.admin-main{

margin-left:0;

width:100%;

}


.stats-grid{

grid-template-columns:1fr;

}


}

/* =========================
   ADMIN PANEL LAYOUT FIX
========================= */


.admin-layout{

    display:flex;
    min-height:100vh;

}



/* SIDEBAR */

.sidebar{

    width:260px;
    min-height:100vh;
    position:fixed;
    left:0;
    top:0;

    background:#071b16;

    border-right:1px solid rgba(0,255,170,0.2);

    z-index:1000;

}




/* MAIN CONTENT */

.admin-content{

    margin-left:260px;

    width:calc(100% - 260px);

    padding:25px;

}




/* TOP BAR */

.admin-topbar{

    width:100%;

}





/* FORM CARD */

.admin-form-card{

    margin-top:25px;

    width:100%;

}

.chat-name{
font-size:12px;
font-weight:700;
margin-bottom:5px;
color:#00ff99;
}

.admin-name{
color:#ffffff;
}


.message.sender{
background:#00cc77;
margin-left:auto;
color:white;
border-radius:15px 15px 0 15px;
}


.message.receiver{
background:#12352d;
margin-right:auto;
color:white;
border-radius:15px 15px 15px 0;
}


.message{
padding:15px;
max-width:70%;
margin:10px 0;
}

