/* =========================================================
   ANESLICE PORTAL COMERCIAL
   FUTURISTIC RED NEON / CYBERPUNK UI
   ========================================================= */

* {
    box-sizing: border-box;
}

:root {
    --bg: #050609;
    --bg-2: #090b10;
    --panel: rgba(13, 15, 21, .88);
    --panel-2: rgba(20, 22, 30, .92);

    --red: #ff003c;
    --red-2: #ff174f;
    --red-dark: #a50027;
    --red-soft: #ff5c7d;

    --text: #f5f7fb;
    --muted: #8c93a3;
    --border: rgba(255,255,255,.09);

    --green: #00e676;
    --yellow: #ffd740;

    --shadow:
        0 0 15px rgba(255, 0, 60, .15),
        0 0 45px rgba(255, 0, 60, .06);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(255, 0, 60, .08),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255, 0, 60, .05),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #030407,
            #080a0f 50%,
            #040509
        );

    color: var(--text);

    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );

    background-size: 40px 40px;

    mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,.8),
        transparent
    );

    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}


/* =========================================================
   TOPBAR
   ========================================================= */

.topbar {
    min-height: 72px;

    background:
        linear-gradient(
            90deg,
            rgba(5,6,9,.97),
            rgba(13,15,21,.92),
            rgba(5,6,9,.97)
        );

    border-bottom: 1px solid rgba(255,0,60,.22);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    position: sticky;
    top: 0;
    z-index: 100;

    backdrop-filter: blur(18px);

    box-shadow:
        0 5px 30px rgba(0,0,0,.45),
        0 1px 15px rgba(255,0,60,.06);
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
}

.brand strong {
    display: block;

    color: #fff;

    font-size: 15px;

    letter-spacing: .3px;
}

.brand span {
    display: block;

    font-size: 12px;

    color: var(--muted);

    margin-top: 2px;
}

.brand-mark {
    width: 44px;
    height: 44px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ff4268,
            #ff003c 55%,
            #85001f
        );

    color: white;

    font-size: 25px;
    font-weight: 900;

    border: 1px solid rgba(255,255,255,.18);

    box-shadow:
        0 0 8px rgba(255,0,60,.9),
        0 0 25px rgba(255,0,60,.5),
        0 0 60px rgba(255,0,60,.2);

    animation: neonPulse 3s infinite ease-in-out;
}

@keyframes neonPulse {

    0%,
    100% {
        box-shadow:
            0 0 8px rgba(255,0,60,.9),
            0 0 25px rgba(255,0,60,.5);
    }

    50% {
        box-shadow:
            0 0 12px rgba(255,0,60,1),
            0 0 35px rgba(255,0,60,.75),
            0 0 70px rgba(255,0,60,.25);
    }
}

.topbar nav {
    display: flex;
    gap: 20px;

    align-items: center;

    font-size: 14px;

    color: #aeb4c2;

    flex-wrap: wrap;
}

.topbar nav a {
    position: relative;

    transition:
        color .2s,
        text-shadow .2s;
}

.topbar nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--red);

    box-shadow:
        0 0 8px var(--red);

    transition: width .25s;
}

.topbar nav a:hover {
    color: #fff;

    text-shadow:
        0 0 10px rgba(255,0,60,.8);
}

.topbar nav a:hover::after {
    width: 100%;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    max-width: 1200px;

    margin: 0 auto;

    padding: 36px 20px;
}

.narrow {
    max-width: 760px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    overflow: hidden;

    display: flex;

    justify-content: space-between;

    gap: 30px;

    align-items: center;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255,0,60,.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #090b10,
            #151923
        );

    color: #fff;

    border-radius: 24px;

    padding: 34px;

    border: 1px solid rgba(255,0,60,.24);

    box-shadow:
        0 0 25px rgba(255,0,60,.08),
        0 20px 70px rgba(0,0,0,.4);
}

.hero::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -80px;
    top: -100px;

    background: var(--red);

    filter: blur(110px);

    opacity: .13;
}

.hero::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--red),
            transparent
        );

    box-shadow:
        0 0 15px var(--red);
}

.hero h1 {
    margin: 5px 0 8px;

    font-size: 32px;

    letter-spacing: -.5px;

    text-shadow:
        0 0 15px rgba(255,255,255,.1);
}

.hero p {
    color: #c5cad5;

    max-width: 650px;

    line-height: 1.6;
}

.eyebrow {
    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-weight: 900;

    color: var(--red);

    margin: 0;
}

.hero .eyebrow {
    color: #ff6d8b;

    text-shadow:
        0 0 10px rgba(255,0,60,.7);
}

.promo-thumb {
    width: 220px;
    height: 150px;

    object-fit: cover;

    border-radius: 15px;

    border: 1px solid rgba(255,0,60,.5);

    box-shadow:
        0 0 20px rgba(255,0,60,.18);
}


/* =========================================================
   STATS
   ========================================================= */

.stats {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;

    margin: 24px 0;
}

.stat {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(20,22,30,.95),
            rgba(9,11,16,.95)
        );

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 20px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.35);

    transition:
        transform .25s,
        border-color .25s,
        box-shadow .25s;
}

.stat::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 100%;

    background: var(--red);

    box-shadow:
        0 0 15px var(--red);
}

.stat:hover {
    transform: translateY(-4px);

    border-color:
        rgba(255,0,60,.35);

    box-shadow:
        0 0 20px rgba(255,0,60,.1),
        0 15px 45px rgba(0,0,0,.45);
}

.stat span {
    display: block;

    color: #8b93a3;

    font-size: 13px;
}

.stat strong {
    display: block;

    margin-top: 6px;

    font-size: 30px;

    color: #fff;

    text-shadow:
        0 0 12px rgba(255,255,255,.08);
}


/* =========================================================
   QUICK CARDS
   ========================================================= */

.quick-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-bottom: 24px;
}

.quick-card,
.panel {
    background:
        linear-gradient(
            145deg,
            rgba(18,20,28,.94),
            rgba(8,10,15,.96)
        );

    border: 1px solid var(--border);

    border-radius: 18px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.35);

    backdrop-filter: blur(15px);
}

.quick-card {
    padding: 20px;

    transition:
        transform .25s,
        border-color .25s,
        box-shadow .25s;
}

.quick-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(255,0,60,.45);

    box-shadow:
        0 0 25px rgba(255,0,60,.13),
        0 20px 45px rgba(0,0,0,.45);
}

.quick-card b {
    display: block;

    font-size: 16px;

    color: #fff;

    margin-bottom: 7px;
}

.quick-card span {
    font-size: 13px;

    color: #858d9d;
}


/* =========================================================
   PANELS
   ========================================================= */

.panel {
    padding: 22px;

    margin-bottom: 22px;
}

.panel-head,
.page-head {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    margin-bottom: 18px;
}

.page-head h1 {
    margin: 3px 0 0;

    font-size: 30px;

    color: #fff;
}

.panel-head h2,
.form-title {
    font-size: 18px;

    margin: 0;

    color: #fff;
}


/* =========================================================
   TABLES
   ========================================================= */

.table-wrap {
    overflow: auto;

    padding: 0;

    background:
        rgba(8,10,15,.85);

    border-radius: 16px;

    border: 1px solid var(--border);
}

.table-wrap table {
    width: 100%;

    border-collapse: collapse;

    min-width: 760px;
}

.table-wrap th,
.table-wrap td {
    text-align: left;

    padding: 14px 15px;

    border-bottom:
        1px solid rgba(255,255,255,.06);

    font-size: 13px;

    vertical-align: top;
}

.table-wrap th {
    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .9px;

    color: #858d9d;

    background:
        rgba(255,255,255,.025);
}

.table-wrap tr {
    transition: background .2s;
}

.table-wrap tbody tr:hover {
    background:
        rgba(255,0,60,.035);
}

.table-wrap small {
    display: block;

    color: #747d8e;

    margin-top: 4px;

    line-height: 1.45;
}

.empty {
    padding: 35px !important;

    text-align: center !important;

    color: #7d8595;
}


/* =========================================================
   BADGES
   ========================================================= */

.badge {
    display: inline-block;

    padding: 6px 10px;

    border-radius: 999px;

    background:
        rgba(120,130,150,.12);

    color: #aeb5c3;

    border: 1px solid rgba(255,255,255,.07);

    font-size: 11px;

    font-weight: 800;
}

.badge.green {
    background:
        rgba(0,230,118,.08);

    color:
        #00e676;

    border-color:
        rgba(0,230,118,.25);

    box-shadow:
        0 0 10px rgba(0,230,118,.08);
}

.badge.yellow {
    background:
        rgba(255,215,64,.08);

    color:
        #ffd740;

    border-color:
        rgba(255,215,64,.25);
}

.badge.red {
    background:
        rgba(255,0,60,.09);

    color:
        #ff5577;

    border-color:
        rgba(255,0,60,.3);

    box-shadow:
        0 0 10px rgba(255,0,60,.08);
}

.badge.gray {
    background:
        rgba(120,130,150,.1);

    color:
        #8e96a5;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 42px;

    padding: 0 17px;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.035);

    color: #e9ecf2;

    font-weight: 750;

    font-size: 14px;

    cursor: pointer;

    transition:
        .25s ease;
}

.btn:hover {
    transform: translateY(-2px);

    border-color:
        rgba(255,0,60,.5);

    box-shadow:
        0 0 18px rgba(255,0,60,.15);
}

.btn.primary {
    background:
        linear-gradient(
            135deg,
            #ff003c,
            #c90032
        );

    color: #fff;

    border-color:
        #ff003c;

    box-shadow:
        0 0 10px rgba(255,0,60,.6),
        0 0 30px rgba(255,0,60,.18);

    text-shadow:
        0 1px 2px rgba(0,0,0,.3);
}

.btn.primary:hover {
    background:
        linear-gradient(
            135deg,
            #ff174f,
            #e0003b
        );

    box-shadow:
        0 0 15px rgba(255,0,60,.8),
        0 0 40px rgba(255,0,60,.25);
}

.btn.success {
    background:
        rgba(0,230,118,.08);

    color:
        #00e676;

    border-color:
        rgba(0,230,118,.35);
}

.btn.danger {
    background:
        rgba(255,0,60,.06);

    color:
        #ff5274;

    border-color:
        rgba(255,0,60,.3);
}

.btn.small {
    min-height: 34px;

    padding: 0 11px;

    font-size: 12px;
}

.btn.full {
    width: 100%;
}

.actions {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}


/* =========================================================
   FORMS
   ========================================================= */

.form-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(18,20,28,.95),
            rgba(8,10,15,.96)
        );

    border-radius: 18px;

    padding: 24px;

    border: 1px solid var(--border);

    box-shadow:
        0 15px 45px rgba(0,0,0,.35);
}

.form-grid label {
    font-size: 13px;

    font-weight: 700;

    color: #aab1bf;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    display: block;

    width: 100%;

    margin-top: 7px;

    border:
        1px solid rgba(255,255,255,.11);

    border-radius: 10px;

    padding: 12px 13px;

    font: inherit;

    color: #f5f7fb;

    background:
        rgba(255,255,255,.035);

    outline: none;

    transition:
        border-color .2s,
        box-shadow .2s,
        background .2s;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
    color: #626a79;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color:
        var(--red);

    background:
        rgba(255,0,60,.025);

    box-shadow:
        0 0 0 3px rgba(255,0,60,.08),
        0 0 15px rgba(255,0,60,.08);
}

.form-grid textarea {
    min-height: 110px;

    resize: vertical;
}

.full-span {
    grid-column: 1 / -1;
}

.form-actions {
    display: flex;

    justify-content: flex-end;

    gap: 10px;
}


/* =========================================================
   ALERTS
   ========================================================= */

.alert {
    padding: 13px 16px;

    border-radius: 12px;

    margin-bottom: 18px;

    font-size: 14px;
}

.alert.error {
    background:
        rgba(255,0,60,.07);

    color:
        #ff6a86;

    border:
        1px solid rgba(255,0,60,.35);

    box-shadow:
        0 0 15px rgba(255,0,60,.08);
}

.alert.success {
    background:
        rgba(0,230,118,.06);

    color:
        #00e676;

    border:
        1px solid rgba(0,230,118,.25);
}

.alert.info {
    background:
        rgba(80,140,255,.07);

    color:
        #72a8ff;

    border:
        1px solid rgba(80,140,255,.25);
}


/* =========================================================
   AUTH LOGIN
   ========================================================= */

.auth-body {
    min-height: 100vh;

    display: grid;

    place-items: center;

    padding: 20px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,0,60,.14),
            transparent 35%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(255,0,60,.06),
            transparent 30%
        ),
        #030407;
}

.auth-card {
    position: relative;

    width: min(470px,100%);

    background:
        linear-gradient(
            145deg,
            rgba(20,22,30,.96),
            rgba(7,9,14,.98)
        );

    border:
        1px solid rgba(255,0,60,.28);

    border-radius: 22px;

    padding: 32px;

    box-shadow:
        0 0 25px rgba(255,0,60,.12),
        0 25px 80px rgba(0,0,0,.6);

    backdrop-filter:
        blur(20px);
}

.auth-card::before {
    content: "";

    position: absolute;

    inset: -1px;

    border-radius: inherit;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(255,0,60,.5),
            transparent 35%,
            transparent 65%,
            rgba(255,0,60,.2)
        );

    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    mask-composite: exclude;

    padding: 1px;
}

.auth-card h1 {
    margin: 28px 0 7px;

    font-size: 26px;

    color: #fff;

    text-shadow:
        0 0 15px rgba(255,255,255,.08);
}

.auth-card form {
    display: grid;

    gap: 16px;

    margin-top: 22px;
}

.auth-card label {
    font-size: 13px;

    font-weight: 700;

    color: #aab1bf;
}

.auth-card input {
    display: block;

    width: 100%;

    margin-top: 7px;

    padding: 13px;

    border:
        1px solid rgba(255,255,255,.11);

    border-radius: 10px;

    font: inherit;

    color: #fff;

    background:
        rgba(255,255,255,.035);

    outline: none;

    transition:
        .25s;
}

.auth-card input:focus {
    border-color:
        var(--red);

    box-shadow:
        0 0 0 3px rgba(255,0,60,.08),
        0 0 18px rgba(255,0,60,.12);
}

.auth-card input::placeholder {
    color: #616979;
}

.muted {
    color: #858e9e;

    font-size: 14px;

    line-height: 1.55;
}

.legal-note {
    font-size: 11px;

    color: #656d7d;

    line-height: 1.5;

    margin-top: 20px;
}


/* =========================================================
   NOTICE
   ========================================================= */

.notice {
    padding: 15px;

    border-radius: 14px;

    background:
        rgba(255,215,64,.05);

    border:
        1px solid rgba(255,215,64,.2);

    color:
        #d8bd60;

    font-size: 13px;

    line-height: 1.5;

    margin-top: 16px;
}


/* =========================================================
   FILTERS
   ========================================================= */

.filterbar {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;

    margin-bottom: 18px;
}

.filterbar input,
.filterbar select {
    padding: 10px 12px;

    border:
        1px solid rgba(255,255,255,.11);

    border-radius: 9px;

    background:
        rgba(255,255,255,.035);

    color: #fff;

    outline: none;
}

.filterbar input:focus,
.filterbar select:focus {
    border-color:
        var(--red);

    box-shadow:
        0 0 12px rgba(255,0,60,.12);
}


/* =========================================================
   TWO COLUMNS
   ========================================================= */

.two-col {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #050609;
}

::-webkit-scrollbar-thumb {
    background:
        linear-gradient(
            #ff003c,
            #990025
        );

    border-radius: 20px;

    box-shadow:
        0 0 10px rgba(255,0,60,.5);
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {
    background: var(--red);

    color: #fff;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:900px) {

    .stats,
    .quick-grid,
    .two-col {
        grid-template-columns:
            1fr 1fr;
    }

    .hero {
        flex-direction: column;

        align-items: flex-start;
    }

    .promo-thumb {
        width: 100%;

        height: 180px;
    }
}

@media(max-width:650px) {

    .topbar {
        padding: 12px 16px;

        align-items: flex-start;

        gap: 10px;
    }

    .stats,
    .quick-grid,
    .two-col,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-span {
        grid-column: auto;
    }

    .page-head {
        align-items: flex-start;

        flex-direction: column;
    }

    .container {
        padding:
            24px 14px;
    }

    .hero {
        padding: 24px;
    }

    .hero h1 {
        font-size: 27px;
    }

    .auth-card {
        padding: 25px;
    }
}