html,
body {
    margin: 0;
    padding: 0;
    background: #080a0e;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}


/* ================================
   NAVBAR
================================ */

.main-header {
    height: 80px;
    background: rgba(7, 9, 13, .98);
    border-bottom: 1px solid #20242c;
    position: relative;
    z-index: 100;
}

.nav-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-size: 25px;
    font-weight: 900;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
}

.brand span {
    color: #ff3131;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .2s;
}

.main-nav a:hover {
    color: #ff3434;
}

.login-btn {
    padding: 11px 20px;
    border: 1px solid #ff3131;
    color: #ff3131 !important;
}

.login-btn:hover {
    background: #ff3131;
    color: white !important;
}


/* ================================
   HERO
================================ */

.hero {
    min-height: 610px;

    background:
        radial-gradient(
            circle at center,
            #242936 0,
            #11151d 40%,
            #080a0e 75%
        );

    position: relative;
}

.hero-overlay {
    min-height: 610px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(8, 10, 14, .95)
        );
}

.hero-content {
    text-align: center;
}

.hero-small {
    color: #ff3434;
    font-size: 14px;
    letter-spacing: 7px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero h1 {
    margin: 0;
    font-size: 84px;
    line-height: .9;
    font-weight: 900;
    letter-spacing: 4px;
}

.hero h1 span {
    color: #ff3131;
}

.hero h2 {
    margin: 5px 0 15px;
    font-size: 42px;
    letter-spacing: 22px;
    font-weight: 300;
    padding-left: 22px;
}

.hero p {
    color: #a5a8ae;
    letter-spacing: 4px;
    font-size: 13px;
}

.hero-buttons {
    margin-top: 38px;

    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-download,
.btn-register {
    padding: 15px 28px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1px;
}

.btn-download {
    background: #ff3131;
    color: white;
}

.btn-download:hover {
    background: #d91e1e;
    color: white;
}

.btn-register {
    border: 1px solid #50545d;
    color: white;
}

.btn-register:hover {
    border-color: #ff3131;
    color: #ff3131;
}


/* ================================
   SERVER STATUS
================================ */

.server-status {
    border-top: 1px solid #1d2027;
    border-bottom: 1px solid #1d2027;
    background: #0d1016;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.status-box {
    padding: 30px 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    border-right: 1px solid #1c2028;
}

.status-box:last-child {
    border-right: 0;
}

.status-icon {
    color: #ff3131;
    font-size: 25px;
}

.status-box span {
    color: #777d87;
    font-size: 10px;
    letter-spacing: 2px;

    display: block;
}

.status-box strong {
    display: block;

    margin-top: 5px;

    font-size: 25px;
}

.status-box strong.online {
    color: #28d56c;
}


/* ================================
   SECTION
================================ */

.rankings-section,
.news-section {
    padding: 85px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title span {
    color: #ff3131;

    font-size: 10px;
    font-weight: bold;

    letter-spacing: 4px;
}

.section-title h2 {
    margin: 8px 0;

    font-size: 35px;
    font-weight: 900;
}

.section-title p {
    color: #777d87;
}


/* ================================
   RANKING
================================ */

.ranking-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.ranking-card {
    background: #101319;

    border:
        1px solid #20242c;
}

.ranking-header {
    padding: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom:
        1px solid #20242c;
}

.ranking-header h3 {
    margin: 0;

    font-size: 16px;
}

.ranking-header span {
    color: #5e636d;

    font-size: 9px;

    letter-spacing: 2px;
}

.ranking-player {
    padding: 18px 20px;

    display: grid;

    grid-template-columns:
        40px 1fr auto;

    align-items: center;

    border-bottom:
        1px solid #181c23;
}

.ranking-player:last-child {
    border-bottom: 0;
}

.number {
    font-weight: 900;
    color: #666c75;
}

.ranking-player:first-of-type .number {
    color: #ff3131;
}

.player-name {
    font-size: 13px;
    font-weight: 700;
}

.ranking-player strong {
    color: #ff3131;

    font-size: 12px;
}


/* ================================
   NEWS
================================ */

.news-section {
    background: #0b0e13;
}

.news-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.news-card {
    border: 1px solid #20242c;

    background: #101319;
}

.news-image {
    height: 190px;

    background:
        linear-gradient(
            135deg,
            #222733,
            #0c0f14
        );

    display: flex;
    align-items: center;
    justify-content: center;

    color: #333946;

    font-size: 30px;
    font-weight: 900;
}

.news-content {
    padding: 23px;
}

.news-content span {
    color: #ff3131;

    font-size: 9px;
    font-weight: bold;

    letter-spacing: 2px;
}

.news-content h3 {
    margin: 8px 0 12px;

    font-size: 17px;
}

.news-content p {
    color: #80858f;

    line-height: 1.7;

    font-size: 12px;
}


/* ================================
   FOOTER
================================ */

.footer {
    padding: 45px 0;

    border-top:
        1px solid #20242c;

    background: #07090c;

    text-align: center;

    color: #666b74;

    font-size: 11px;
}

.footer strong {
    color: white;

    letter-spacing: 2px;
}

.footer p {
    margin-top: 10px;
}


/* ================================
   RESPONSIVE
================================ */

@media(max-width: 900px) {

    .main-nav {
        gap: 12px;
    }

    .ranking-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }

    .status-box {
        border-right: 0;
        border-bottom: 1px solid #20242c;
    }

    .hero h1 {
        font-size: 55px;
    }

    .hero h2 {
        font-size: 25px;
        letter-spacing: 13px;
    }
}
/* ================================
   ACCOUNT
================================ */

.account-page {
    min-height: 750px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 20px;

    background:
        radial-gradient(
            circle at center,
            #1b202a 0,
            #0d1016 45%,
            #080a0e 80%
        );
}

.account-card {
    width: 100%;
    max-width: 470px;

    padding: 45px;

    background: #101319;

    border: 1px solid #242933;
}

.account-dashboard {
    width: 100%;
    max-width: 950px;

    padding: 45px;

    background: #101319;

    border: 1px solid #242933;
}

.account-title {
    text-align: center;

    margin-bottom: 35px;
}

.account-title span {
    color: #ff3131;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 5px;
}

.account-title h1 {
    margin: 10px 0;

    font-size: 30px;
    font-weight: 900;
}

.account-title p {
    color: #7f8590;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    color: #a8adb7;

    font-size: 11px;
    font-weight: 700;

    margin-bottom: 8px;

    letter-spacing: 1px;
}

.happy-input {
    width: 100%;

    padding: 14px 15px;

    color: white;

    background: #090c11;

    border: 1px solid #282d36;

    outline: none;
}

.happy-input:focus {
    border-color: #ff3131;
}

.remember-row {
    color: #8b9099;

    font-size: 12px;

    margin-bottom: 20px;
}

.happy-login-button {
    width: 100%;

    padding: 15px;

    border: 0;

    background: #ff3131;

    color: white;

    font-weight: 900;

    letter-spacing: 2px;
}

.happy-login-button:hover {
    background: #dc2525;
}

.login-error {
    color: #ff5555;

    font-size: 12px;

    margin-bottom: 15px;
}

.dashboard-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.dashboard-item {
    padding: 22px;

    background: #0b0e13;

    border: 1px solid #20252e;
}

.dashboard-item span {
    display: block;

    color: #727884;

    font-size: 9px;

    letter-spacing: 2px;

    margin-bottom: 7px;
}

.dashboard-item strong {
    color: white;

    font-size: 16px;
}

@media(max-width:700px) {

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

}
.register-card {
    max-width: 520px;
}

.account-bottom-link {
    margin-top: 25px;
    text-align: center;

    color: #777d87;

    font-size: 12px;
}

.account-bottom-link a {
    color: #ff3131;

    font-weight: 800;
    text-decoration: none;

    margin-left: 5px;
}

.account-bottom-link a:hover {
    color: white;
}
.register-success {
    padding: 14px 16px;
    margin-bottom: 20px;

    background: rgba(39, 200, 100, 0.08);
    border: 1px solid #27c864;

    color: #45df7f;

    font-size: 12px;
    text-align: center;
}

.account-bottom-link {
    margin-top: 25px;
    text-align: center;

    color: #777d87;

    font-size: 12px;
}

.account-bottom-link a {
    color: #ff3131;
    font-weight: 800;
    text-decoration: none;
    margin-left: 5px;
}

.account-bottom-link a:hover {
    color: white;
}
/* =========================================
   RANKING PAGE
========================================= */

.ranking-page {
    min-height: 900px;

    padding: 90px 0;

    background:
        radial-gradient(
            circle at top center,
            #181d27 0,
            #0c0f14 35%,
            #080a0e 75%
        );
}

.ranking-page-header {
    text-align: center;

    margin-bottom: 45px;
}

.ranking-page-header > span {
    color: #ff3131;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 6px;
}

.ranking-page-header h1 {
    margin: 10px 0;

    font-size: 42px;
    font-weight: 900;

    letter-spacing: 1px;
}

.ranking-page-header p {
    color: #7d8490;

    font-size: 14px;
}


/* =========================================
   RANKING TABS
========================================= */

.ranking-tabs {
    display: flex;
    justify-content: center;

    gap: 12px;

    margin-bottom: 25px;
}

.ranking-tab {
    min-width: 145px;

    padding: 14px 20px;

    text-align: center;

    color: #8b919b;

    background: #0d1015;

    border: 1px solid #242a33;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;

    transition: .2s;
}

.ranking-tab:hover {
    color: white;

    border-color: #ff3131;
}

.ranking-tab.active {
    color: white;

    background: #ff3131;

    border-color: #ff3131;
}


/* =========================================
   RANKING CARD
========================================= */

.ranking-table-card {
    width: 100%;

    background: #101319;

    border: 1px solid #242a33;
}

.ranking-table-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 30px;

    border-bottom: 1px solid #242a33;
}

.ranking-table-title span {
    color: #ff3131;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 3px;
}

.ranking-table-title h2 {
    margin: 5px 0 0;

    font-size: 21px;
    font-weight: 900;
}

.ranking-total {
    color: #747b86;

    text-align: right;

    font-size: 9px;

    letter-spacing: 2px;
}

.ranking-total strong {
    display: block;

    margin-top: 5px;

    color: white;

    font-size: 18px;

    letter-spacing: 0;
}


/* =========================================
   RANKING TABLE
========================================= */

.ranking-table-wrapper {
    width: 100%;

    overflow-x: auto;
}

.ranking-table {
    width: 100%;

    border-collapse: collapse;
}

.ranking-table th {
    padding: 16px 18px;

    color: #69717d;

    background: #0b0e13;

    border-bottom: 1px solid #252b34;

    text-align: left;

    font-size: 9px;

    letter-spacing: 2px;
}

.ranking-table td {
    padding: 19px 18px;

    color: #c8ccd2;

    border-bottom: 1px solid #1e232b;

    font-size: 12px;
}

.ranking-table tbody tr {
    transition: .15s;
}

.ranking-table tbody tr:hover {
    background: #141820;
}

.ranking-table tbody tr:last-child td {
    border-bottom: 0;
}


/* =========================================
   PLAYER
========================================= */

.ranking-player-name {
    color: white;

    font-size: 13px;
    font-weight: 800;
}

.rank-number {
    color: #69717d;

    font-weight: 900;
}

.rank-first {
    color: #ff3131;
}

.rank-second {
    color: #d8d8d8;
}

.rank-third {
    color: #b38258;
}


/* =========================================
   ONLINE STATUS
========================================= */

.player-status {
    display: inline-block;

    min-width: 70px;

    padding: 6px 8px;

    text-align: center;

    border: 1px solid;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}

.player-status.online {
    color: #39df7d;

    background: rgba(57, 223, 125, .05);

    border-color: rgba(57, 223, 125, .4);
}

.player-status.offline {
    color: #737985;

    background: rgba(115, 121, 133, .04);

    border-color: #2c323b;
}


/* =========================================
   PAGINATION
========================================= */

.ranking-pagination {
    padding: 22px 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    border-top: 1px solid #242a33;
}

.page-button {
    padding: 10px 17px;

    color: white;

    background: #0b0e13;

    border: 1px solid #303640;

    text-decoration: none;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.page-button:hover {
    color: white;

    background: #ff3131;

    border-color: #ff3131;
}

.page-info {
    color: #747b86;

    font-size: 9px;

    letter-spacing: 2px;
}

.page-info strong {
    color: white;
}


/* =========================================
   EMPTY
========================================= */

.ranking-empty {
    padding: 60px !important;

    text-align: center;

    color: #777d87 !important;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width: 800px) {

    .ranking-page {
        padding: 60px 10px;
    }

    .ranking-tabs {
        flex-direction: column;
    }

    .ranking-tab {
        width: 100%;
    }

    .ranking-table-title {
        flex-direction: column;
        align-items: flex-start;

        gap: 15px;
    }

    .ranking-total {
        text-align: left;
    }

    .ranking-pagination {
        flex-wrap: wrap;
    }
}
/* =========================================
   DOWNLOAD PAGE
========================================= */

.download-page {
    min-height: 1000px;

    padding: 90px 0;

    background:
        radial-gradient(
            circle at top center,
            #181d27 0,
            #0c0f14 35%,
            #080a0e 75%
        );
}

.download-header {
    text-align: center;

    margin-bottom: 50px;
}

.download-header span {
    color: #ff3131;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 6px;
}

.download-header h1 {
    margin: 10px 0;

    color: white;

    font-size: 42px;
    font-weight: 900;
}

.download-header p {
    color: #7c838e;

    font-size: 14px;
}


/* =========================================
   DOWNLOAD GRID
========================================= */

.download-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 70px;
}

.download-card {
    padding: 30px;

    background: #101319;

    border: 1px solid #242a33;
}

.download-card-top {
    min-height: 170px;
}

.download-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #ff3131;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}

.download-card h2 {
    margin: 0 0 12px;

    color: white;

    font-size: 21px;
    font-weight: 900;
}

.download-card p {
    color: #7c838e;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================
   DOWNLOAD INFO
========================================= */

.download-info {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    margin: 20px 0;

    border-top: 1px solid #242a33;
    border-bottom: 1px solid #242a33;
}

.download-info > div {
    padding: 15px 0;
}

.download-info > div:first-child {
    border-right: 1px solid #242a33;
}

.download-info span {
    display: block;

    color: #69717c;

    font-size: 8px;

    letter-spacing: 2px;
}

.download-info strong {
    display: block;

    margin-top: 5px;

    color: white;

    font-size: 14px;
}


/* =========================================
   DOWNLOAD BUTTONS
========================================= */

.download-main-button,
.download-secondary-button {
    display: block;

    width: 100%;

    padding: 15px;

    text-align: center;

    text-decoration: none;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;
}

.download-main-button {
    color: white;

    background: #ff3131;

    border: 1px solid #ff3131;
}

.download-main-button:hover {
    color: white;

    background: #db2525;
}

.download-secondary-button {
    color: white;

    background: #0b0e13;

    border: 1px solid #303640;
}

.download-secondary-button:hover {
    color: white;

    border-color: #ff3131;
}


/* =========================================
   REQUIREMENTS
========================================= */

.system-requirements,
.install-guide {
    margin-top: 60px;
}

.requirements-header {
    margin-bottom: 25px;
}

.requirements-header span {
    color: #ff3131;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 3px;
}

.requirements-header h2 {
    margin: 6px 0 0;

    color: white;

    font-size: 25px;
    font-weight: 900;
}

.requirements-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.requirement-card {
    padding: 30px;

    background: #101319;

    border: 1px solid #242a33;
}

.requirement-card > span {
    color: #ff3131;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}

.requirement-card ul {
    margin: 20px 0 0;

    padding-left: 18px;

    color: #a5aab2;

    font-size: 12px;

    line-height: 2;
}


/* =========================================
   INSTALL STEPS
========================================= */

.install-steps {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.install-step {
    display: flex;

    gap: 20px;

    padding: 25px;

    background: #101319;

    border: 1px solid #242a33;
}

.step-number {
    color: #ff3131;

    font-size: 28px;
    font-weight: 900;
}

.install-step h3 {
    margin: 2px 0 8px;

    color: white;

    font-size: 14px;
    font-weight: 900;
}

.install-step p {
    margin: 0;

    color: #7c838e;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width: 900px) {

    .download-grid {
        grid-template-columns: 1fr;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .install-steps {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   HappyRan EP4 - MALL
========================================================= */

.mall-page {
    min-height: 1000px;
    padding: 90px 0;
    background:
        radial-gradient(
            circle at top center,
            #181d27 0,
            #0c0f14 35%,
            #080a0e 75%
        );
}

.mall-header {
    text-align: center;
    margin-bottom: 45px;
}

.mall-header > span {
    color: #ff3131;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 6px;
}

.mall-header h1 {
    margin: 10px 0;
    color: #fff;
    font-size: 42px;
    font-weight: 900;
}

.mall-header p {
    margin: 0;
    color: #7d8490;
    font-size: 14px;
}


/* =========================================================
   MALL TOOLBAR
========================================================= */

.mall-toolbar {
    padding: 25px;
    margin-bottom: 25px;
    background: #101319;
    border: 1px solid #242a33;
}

.mall-toolbar-form {
    display: grid;
    grid-template-columns: 1fr 220px auto;
    gap: 12px;
}

.mall-input,
.mall-select {
    width: 100%;
    height: 45px;
    padding: 0 15px;
    color: #fff;
    background: #090c11;
    border: 1px solid #292f38;
    outline: none;
    font-size: 12px;
}

.mall-input:focus,
.mall-select:focus {
    border-color: #ff3131;
}

.mall-search-button {
    height: 45px;
    padding: 0 25px;
    color: #fff;
    background: #ff3131;
    border: 0;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
}

.mall-search-button:hover {
    background: #da2525;
}


/* =========================================================
   MALL CATEGORIES
========================================================= */

.mall-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.mall-category {
    padding: 12px 19px;
    color: #8e949e;
    background: #0d1015;
    border: 1px solid #292f38;
    text-decoration: none;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: .2s;
}

.mall-category:hover {
    color: #fff;
    border-color: #ff3131;
}

.mall-category.active {
    color: #fff;
    background: #ff3131;
    border-color: #ff3131;
}


/* =========================================================
   RESULT
========================================================= */

.mall-result-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.mall-result-bar span {
    color: #737b87;
    font-size: 10px;
    letter-spacing: 1px;
}

.mall-result-bar strong {
    color: #fff;
}


/* =========================================================
   MALL GRID
========================================================= */

.mall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mall-card {
    display: flex;
    flex-direction: column;
    min-height: 390px;
    background: #101319;
    border: 1px solid #242a33;
    transition: .2s;
}

.mall-card:hover {
    transform: translateY(-4px);
    border-color: #3b424e;
}


/* =========================================================
   MALL IMAGE
========================================================= */

.mall-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle,
            #1d2430 0,
            #0b0e13 72%
        );

    border-bottom: 1px solid #242a33;
}

.mall-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 35px;
    image-rendering: auto;
}

.mall-no-image {
    color: #343b46;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 3px;
}


/* =========================================================
   MALL BODY
========================================================= */

.mall-card-body {
    flex: 1;
    padding: 22px;
}

.mall-item-category {
    color: #ff3131;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mall-item-name {
    min-height: 42px;
    margin: 9px 0;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
}

.mall-item-comment {
    min-height: 42px;
    margin: 0;
    color: #7c838e;
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   META
========================================================= */

.mall-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.mall-meta-box {
    padding: 11px;
    background: #090c11;
    border: 1px solid #20262e;
}

.mall-meta-box span {
    display: block;
    color: #69717c;
    font-size: 7px;
    letter-spacing: 2px;
}

.mall-meta-box strong {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-size: 12px;
}


/* =========================================================
   MALL FOOTER
========================================================= */

.mall-card-footer {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #242a33;
}

.mall-price span {
    display: block;
    color: #69717c;
    font-size: 7px;
    letter-spacing: 2px;
}

.mall-price strong {
    display: block;
    margin-top: 4px;
    color: #ff3131;
    font-size: 19px;
    font-weight: 900;
}

.mall-view-button {
    padding: 11px 16px;
    color: #fff;
    background: #0a0d12;
    border: 1px solid #303640;
    text-decoration: none;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.mall-view-button:hover {
    color: #fff;
    background: #ff3131;
    border-color: #ff3131;
}


/* =========================================================
   MALL EMPTY
========================================================= */

.mall-empty {
    grid-column: 1 / -1;
    padding: 80px 20px;
    text-align: center;
    color: #777e89;
    background: #101319;
    border: 1px solid #242a33;
}


/* =========================================================
   MALL PAGINATION
========================================================= */

.mall-pagination {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.mall-page-button {
    padding: 11px 18px;
    color: #fff;
    background: #0d1015;
    border: 1px solid #303640;
    text-decoration: none;
    font-size: 9px;
    font-weight: 900;
}

.mall-page-button:hover {
    color: #fff;
    background: #ff3131;
    border-color: #ff3131;
}

.mall-page-info {
    color: #747b86;
    font-size: 9px;
    letter-spacing: 2px;
}

.mall-page-info strong {
    color: #fff;
}


/* =========================================================
   ITEM DETAIL
========================================================= */

.item-detail-page {
    min-height: 900px;
    padding: 90px 0;

    background:
        radial-gradient(
            circle at top center,
            #181d27 0,
            #0c0f14 40%,
            #080a0e 75%
        );
}

.item-detail-wrapper {
    max-width: 1050px;
    margin: 0 auto;
}

.item-back {
    display: inline-block;
    margin-bottom: 20px;
    color: #838a95;
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.item-back:hover {
    color: #ff3131;
}


/* =========================================================
   DETAIL CARD
========================================================= */

.item-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #101319;
    border: 1px solid #242a33;
}

.item-detail-image {
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            #202631 0,
            #0b0e13 70%
        );

    border-right: 1px solid #242a33;
}

.item-detail-image img {
    max-width: 80%;
    max-height: 400px;
    object-fit: contain;
}

.item-detail-no-image {
    color: #353c47;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 4px;
}


/* =========================================================
   DETAIL CONTENT
========================================================= */

.item-detail-content {
    padding: 45px;
}

.item-detail-category {
    color: #ff3131;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.item-detail-content h1 {
    margin: 10px 0 15px;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
}

.item-detail-description {
    color: #818894;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   DETAIL INFORMATION
========================================================= */

.item-detail-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.item-detail-info-box {
    padding: 15px;
    background: #090c11;
    border: 1px solid #242a33;
}

.item-detail-info-box span {
    display: block;
    color: #69717c;
    font-size: 8px;
    letter-spacing: 2px;
}

.item-detail-info-box strong {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: 13px;
}


/* =========================================================
   DETAIL PRICE
========================================================= */

.item-price-box {
    margin-top: 30px;
    padding: 21px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #090c11;
    border: 1px solid #242a33;
}

.item-price-box span {
    color: #717985;
    font-size: 9px;
    letter-spacing: 2px;
}

.item-price-box strong {
    color: #ff3131;
    font-size: 27px;
    font-weight: 900;
}


/* =========================================================
   USER POINT
========================================================= */

.user-point-box {
    margin-top: 12px;
    padding: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #858c97;
    background: #090c11;

    border: 1px solid #242a33;

    font-size: 11px;
}

.user-point-box strong {
    color: #fff;
}


/* =========================================================
   BUY
========================================================= */

.buy-button {
    width: 100%;
    margin-top: 15px;
    padding: 17px;

    color: #fff;
    background: #ff3131;

    border: 0;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;

    cursor: pointer;
}

.buy-button:hover {
    background: #db2525;
}

.buy-button:disabled {
    color: #707782;
    background: #171b22;
    cursor: not-allowed;
}

.login-buy-button {
    display: block;

    margin-top: 15px;
    padding: 17px;

    text-align: center;

    color: #fff;
    background: #ff3131;

    text-decoration: none;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;
}


/* =========================================================
   PURCHASE MESSAGE
========================================================= */

.purchase-message {
    margin-bottom: 20px;
    padding: 15px;

    text-align: center;

    font-size: 11px;
}

.purchase-message.success {
    color: #45df7f;

    background:
        rgba(39, 200, 100, .08);

    border: 1px solid #27c864;
}

.purchase-message.error {
    color: #ff6464;

    background:
        rgba(255, 49, 49, .07);

    border: 1px solid #ff3131;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 1100px) {

    .mall-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }
}

@media(max-width: 800px) {

    .mall-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .mall-toolbar-form {
        grid-template-columns: 1fr;
    }

    .item-detail-card {
        grid-template-columns: 1fr;
    }

    .item-detail-image {
        min-height: 350px;

        border-right: 0;
        border-bottom: 1px solid #242a33;
    }

    .item-detail-content {
        padding: 30px;
    }
}

@media(max-width: 520px) {

    .mall-grid {
        grid-template-columns: 1fr;
    }

    .mall-result-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .item-detail-info {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   MALL CARD ACTIONS
========================================================= */

.mall-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mall-buy-form {
    margin: 0;
}

.mall-view-button,
.mall-buy-button {
    min-width: 72px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 15px;

    text-decoration: none;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;

    transition: .2s;
}

.mall-view-button {
    color: #ffffff;

    background: #0a0d12;

    border: 1px solid #303640;
}

.mall-view-button:hover {
    color: #ffffff;

    background: #20252e;

    border-color: #454d59;
}

.mall-buy-button {
    color: #ffffff;

    background: #ff3131;

    border: 1px solid #ff3131;

    cursor: pointer;
}

.mall-buy-button:hover {
    color: #ffffff;

    background: #d92525;

    border-color: #d92525;
}

.mall-buy-button.sold-out {
    color: #626a75;

    background: #171b22;

    border-color: #292f38;

    cursor: not-allowed;
}

@media(max-width: 520px) {

    .mall-card-footer {
        align-items: flex-start;
        flex-direction: column;

        gap: 15px;
    }

    .mall-card-actions {
        width: 100%;
    }

    .mall-view-button,
    .mall-buy-button {
        flex: 1;
    }
}
/* =========================================================
   TOP UP
========================================================= */

.topup-page {
    min-height: 1000px;
    padding: 90px 0;

    background:
        radial-gradient(
            circle at top center,
            #181d27 0,
            #0c0f14 40%,
            #080a0e 75%
        );
}

.topup-header {
    margin-bottom: 45px;
    text-align: center;
}

.topup-header span {
    color: #ff3131;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 6px;
}

.topup-header h1 {
    margin: 10px 0;
    color: white;
    font-size: 42px;
    font-weight: 900;
}

.topup-header p {
    color: #7d8490;
}

.topup-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.topup-card,
.topup-history {
    padding: 30px;
    background: #101319;
    border: 1px solid #242a33;
}

.topup-card-title {
    margin-bottom: 25px;
}

.topup-card-title span {
    color: #ff3131;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 3px;
}

.topup-card-title h2 {
    margin: 6px 0 0;
    color: white;
    font-size: 20px;
    font-weight: 900;
}

.topup-account-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 25px;
    border: 1px solid #242a33;
}

.topup-account-info div {
    padding: 18px;
}

.topup-account-info div:first-child {
    border-right: 1px solid #242a33;
}

.topup-account-info span {
    display: block;
    color: #707884;
    font-size: 8px;
    letter-spacing: 2px;
}

.topup-account-info strong {
    display: block;
    margin-top: 5px;
    color: white;
}

.topup-step {
    display: flex;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid #242a33;
}

.topup-step:last-child {
    border-bottom: 0;
}

.topup-step > strong {
    color: #ff3131;
    font-size: 22px;
}

.topup-step h3 {
    margin: 0 0 5px;
    color: white;
    font-size: 12px;
    font-weight: 900;
}

.topup-step p {
    margin: 0;
    color: #7d8490;
    font-size: 11px;
}

.topup-history {
    margin-top: 25px;
}

.topup-table-wrapper {
    overflow-x: auto;
}

.topup-table {
    width: 100%;
    border-collapse: collapse;
}

.topup-table th {
    padding: 14px;
    color: #69717c;
    background: #090c11;
    border-bottom: 1px solid #242a33;
    text-align: left;
    font-size: 8px;
    letter-spacing: 2px;
}

.topup-table td {
    padding: 16px 14px;
    color: #c7cbd1;
    border-bottom: 1px solid #20252d;
    font-size: 11px;
}

.topup-status {
    display: inline-block;
    padding: 6px 9px;
    border: 1px solid;
    font-size: 8px;
    font-weight: 900;
}

.topup-status.pending {
    color: #f1b94c;
    border-color: #765c29;
}

.topup-status.approved {
    color: #45df7f;
    border-color: #257844;
}

.topup-status.rejected {
    color: #ff6464;
    border-color: #8a3030;
}

.topup-success {
    max-width: 800px;
    margin: 0 auto 25px;
    padding: 15px;
    color: #45df7f;
    background: rgba(39, 200, 100, .08);
    border: 1px solid #27c864;
    text-align: center;
    font-size: 11px;
}

.topup-empty {
    padding: 50px !important;
    text-align: center !important;
    color: #737b87 !important;
}

@media(max-width: 800px) {

    .topup-layout {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   ACCOUNT DASHBOARD ADVANCED
========================================================= */

.account-dashboard-wide {
    max-width: 1100px;
}

.dashboard-section-title {
    margin-top: 45px;
    margin-bottom: 18px;
}

.dashboard-section-title span {
    color: #ff3131;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 3px;
}

.dashboard-section-title h2 {
    margin: 5px 0 0;
    color: white;
    font-size: 20px;
    font-weight: 900;
}

.account-alert {
    margin-bottom: 25px;
    padding: 15px;
    text-align: center;
    font-size: 11px;
}

.account-alert.success {
    color: #45df7f;
    background: rgba(39, 200, 100, .08);
    border: 1px solid #27c864;
}

.account-alert.error {
    color: #ff6464;
    background: rgba(255, 49, 49, .07);
    border: 1px solid #ff3131;
}

.dashboard-online {
    color: #45df7f !important;
}

.dashboard-offline {
    color: #777e89 !important;
}

.dashboard-empty {
    padding: 40px;
    color: #737b87;
    background: #0a0d12;
    border: 1px solid #242a33;
    text-align: center;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.security-card {
    padding: 30px;
    background: #0a0d12;
    border: 1px solid #242a33;
}

.security-card h3 {
    margin: 0 0 8px;
    color: white;
    font-size: 16px;
    font-weight: 900;
}

.security-card p {
    margin-bottom: 25px;
    color: #777e89;
    font-size: 11px;
}

.security-button {
    width: 100%;
    padding: 15px;
    color: white;
    background: #ff3131;
    border: 0;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
}

.security-button:hover {
    background: #d92525;
}

@media(max-width: 800px) {

    .security-grid {
        grid-template-columns: 1fr;
    }
}
.home-ranking-button {
    margin-top: 30px;
    text-align: center;
}

.home-ranking-button a {
    display: inline-block;
    padding: 14px 25px;

    color: white;
    background: #ff3131;

    text-decoration: none;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.home-ranking-button a:hover {
    color: white;
    background: #d92525;
}

.status-box .offline {
    color: #777e89;
}
/* =========================================================
   SINGLE SECURITY CARD
========================================================= */

.security-grid.single-security {
    grid-template-columns: 1fr;
    max-width: 650px;
}
/* =========================================================
   DYNAMIC NEWS
========================================================= */

.news-image {
    height: 200px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle,
            #1b212b 0,
            #0b0e13 75%
        );
}

.news-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.news-image-fallback {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #343b46;

    font-size: 17px;
    font-weight: 900;

    letter-spacing: 3px;
}

.news-date {
    margin-top: 15px;

    color: #656d78;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;
}

.news-empty {
    grid-column: 1 / -1;

    padding: 60px;

    color: #737b87;

    text-align: center;

    background: #101319;

    border: 1px solid #242a33;
}
/* =========================================================
   ALL NEWS PAGE
========================================================= */

.all-news-page {
    min-height: 1000px;
    padding: 90px 0;

    background:
        radial-gradient(
            circle at top center,
            #181d27 0,
            #0c0f14 35%,
            #080a0e 75%
        );
}


/* =========================================================
   HEADER
========================================================= */

.all-news-header {
    text-align: center;
    margin-bottom: 45px;
}

.all-news-header > span {
    color: #ff3131;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 6px;
}

.all-news-header h1 {
    margin: 10px 0;

    color: white;

    font-size: 42px;
    font-weight: 900;
}

.all-news-header p {
    margin: 0;

    color: #7d8490;
}


/* =========================================================
   FILTER
========================================================= */

.news-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 35px;
}

.news-filter-button {
    min-width: 120px;

    padding: 13px 18px;

    text-align: center;

    color: #8d949e;

    background: #0d1015;

    border: 1px solid #292f38;

    text-decoration: none;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}

.news-filter-button:hover {
    color: white;

    border-color: #ff3131;
}

.news-filter-button.active {
    color: white;

    background: #ff3131;

    border-color: #ff3131;
}


/* =========================================================
   RESULT
========================================================= */

.news-result {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 18px;

    color: #707883;

    font-size: 9px;

    letter-spacing: 2px;
}

.news-result strong {
    color: white;
}


/* =========================================================
   GRID
========================================================= */

.all-news-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.all-news-card {
    background: #101319;

    border: 1px solid #242a33;

    transition: .2s;
}

.all-news-card:hover {
    transform: translateY(-4px);

    border-color: #3c434e;
}


/* =========================================================
   IMAGE
========================================================= */

.all-news-image {
    position: relative;

    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle,
            #1c232e 0,
            #0b0e13 75%
        );

    border-bottom:
        1px solid #242a33;
}

.all-news-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.all-news-image-fallback {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #363d48;

    font-size: 17px;
    font-weight: 900;

    letter-spacing: 3px;
}


/* =========================================================
   LAST POST
========================================================= */

.latest-post-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 8px 11px;

    color: white;

    background: #ff3131;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================================
   CONTENT
========================================================= */

.all-news-content {
    padding: 24px;
}

.all-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 10px;
}

.all-news-category {
    color: #ff3131;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;
}

.all-news-date {
    color: #656d78;

    font-size: 8px;
}

.all-news-content h2 {
    margin: 13px 0;

    font-size: 18px;
    font-weight: 900;
}

.all-news-content h2 a {
    color: white;

    text-decoration: none;
}

.all-news-content h2 a:hover {
    color: #ff3131;
}

.all-news-content p {
    min-height: 55px;

    margin: 0;

    color: #7f8691;

    font-size: 11px;

    line-height: 1.7;
}

.read-news-button {
    display: inline-block;

    margin-top: 18px;

    color: #ff3131;

    text-decoration: none;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================================
   EMPTY
========================================================= */

.all-news-empty {
    grid-column: 1 / -1;

    padding: 70px;

    text-align: center;

    color: #737b87;

    background: #101319;

    border: 1px solid #242a33;
}


/* =========================================================
   PAGINATION
========================================================= */

.news-pagination {
    margin-top: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;
}

.news-page-button {
    padding: 11px 18px;

    color: white;

    background: #0d1015;

    border: 1px solid #303640;

    text-decoration: none;

    font-size: 9px;
    font-weight: 900;
}

.news-page-button:hover {
    color: white;

    background: #ff3131;

    border-color: #ff3131;
}

.news-page-info {
    color: #747b86;

    font-size: 9px;

    letter-spacing: 2px;
}

.news-page-info strong {
    color: white;
}


/* =========================================================
   NEWS DETAIL
========================================================= */

.news-detail-page {
    min-height: 900px;

    padding: 90px 0;

    background:
        radial-gradient(
            circle at top center,
            #181d27 0,
            #0c0f14 40%,
            #080a0e 75%
        );
}

.news-detail-wrapper {
    max-width: 1000px;

    margin: 0 auto;
}

.news-detail-back {
    display: inline-block;

    margin-bottom: 25px;

    color: #818995;

    text-decoration: none;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}

.news-detail-back:hover {
    color: #ff3131;
}

.news-detail-header {
    margin-bottom: 30px;
}

.news-detail-category {
    color: #ff3131;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 3px;
}

.news-detail-header h1 {
    margin: 12px 0;

    color: white;

    font-size: 40px;
    font-weight: 900;
}

.news-detail-date {
    color: #69717c;

    font-size: 9px;

    letter-spacing: 1px;
}

.news-detail-date strong {
    color: #a9afb7;

    margin-left: 5px;
}


/* =========================================================
   DETAIL IMAGE
========================================================= */

.news-detail-image {
    min-height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle,
            #1d2430 0,
            #0b0e13 75%
        );

    border: 1px solid #242a33;
}

.news-detail-image img {
    width: 100%;

    max-height: 600px;

    object-fit: cover;
}

.news-detail-image-fallback {
    min-height: 450px;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #363d48;

    font-size: 25px;
    font-weight: 900;

    letter-spacing: 4px;
}


/* =========================================================
   DETAIL CONTENT
========================================================= */

.news-detail-content {
    padding: 40px;

    color: #a1a7b0;

    background: #101319;

    border-left: 1px solid #242a33;
    border-right: 1px solid #242a33;
    border-bottom: 1px solid #242a33;

    font-size: 14px;

    line-height: 1.9;
}

.news-detail-content p {
    margin: 0;

    white-space: pre-line;
}


/* =========================================================
   HOME VIEW ALL NEWS
========================================================= */

.home-news-button {
    margin-top: 30px;

    text-align: center;
}

.home-news-button a {
    display: inline-block;

    padding: 14px 25px;

    color: white;

    background: #ff3131;

    text-decoration: none;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}

.home-news-button a:hover {
    color: white;

    background: #d92525;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 900px) {

    .all-news-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media(max-width: 600px) {

    .all-news-grid {
        grid-template-columns: 1fr;
    }

    .news-result {
        flex-direction: column;
        align-items: flex-start;

        gap: 6px;
    }

    .news-detail-header h1 {
        font-size: 30px;
    }

    .news-detail-content {
        padding: 25px;
    }
}
/* =========================================================
   ADMIN PAGE
========================================================= */

.admin-page {
    min-height: 1000px;
    padding: 80px 0;

    background:
        radial-gradient(
            circle at top center,
            #181d27 0,
            #0c0f14 40%,
            #080a0e 75%
        );
}

.admin-header {
    margin-bottom: 45px;
    text-align: center;
}

.admin-header span {
    color: #ff3131;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 6px;
}

.admin-header h1 {
    margin: 10px 0;
    color: white;
    font-size: 40px;
    font-weight: 900;
}

.admin-header p {
    color: #7d8490;
}


/* =========================================================
   ADMIN STAT
========================================================= */

.admin-stat-grid {
    display: grid;
    grid-template-columns:
        repeat(6, 1fr);

    gap: 12px;
}

.admin-stat-card {
    padding: 20px;

    background: #101319;

    border: 1px solid #242a33;
}

.admin-stat-card span {
    display: block;

    color: #69717c;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 2px;
}

.admin-stat-card strong {
    display: block;

    margin-top: 10px;

    color: white;

    font-size: 24px;
    font-weight: 900;
}


/* =========================================================
   SECTION
========================================================= */

.admin-section-title {
    margin-top: 45px;
    margin-bottom: 20px;
}

.admin-section-title span {
    color: #ff3131;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 3px;
}

.admin-section-title h2 {
    margin: 6px 0 0;

    color: white;

    font-size: 21px;
    font-weight: 900;
}


/* =========================================================
   ADMIN TOOLS
========================================================= */

.admin-tools-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.admin-tool-card {
    min-height: 170px;

    padding: 25px;

    color: white;

    background: #101319;

    border: 1px solid #242a33;

    text-decoration: none;

    transition: .2s;
}

.admin-tool-card:hover {
    color: white;

    transform: translateY(-3px);

    border-color: #ff3131;
}

.admin-tool-icon {
    margin-bottom: 20px;

    color: #ff3131;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 3px;
}

.admin-tool-card h3 {
    margin: 0 0 8px;

    font-size: 15px;
    font-weight: 900;
}

.admin-tool-card p {
    margin: 0;

    color: #737b87;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   ADMIN TABLE
========================================================= */

.admin-log-card {
    background: #101319;

    border: 1px solid #242a33;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;

    border-collapse: collapse;
}

.admin-table th {
    padding: 14px;

    color: #69717c;

    background: #090c11;

    border-bottom: 1px solid #242a33;

    text-align: left;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 2px;
}

.admin-table td {
    padding: 15px 14px;

    color: #b7bdc6;

    border-bottom: 1px solid #20252d;

    font-size: 10px;
}

.admin-action-badge {
    padding: 6px 9px;

    color: #ff6464;

    background: rgba(
        255,
        49,
        49,
        .07
    );

    border: 1px solid #713030;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1px;
}

.admin-empty {
    padding: 50px !important;

    text-align: center !important;

    color: #737b87 !important;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 1100px) {

    .admin-stat-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }
}

@media(max-width: 800px) {

    .admin-tools-grid {
        grid-template-columns: 1fr;
    }

    .admin-stat-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}
/* =========================================================
   HOME NEWS LAST POST
========================================================= */

.news-image {
    position: relative;
    text-decoration: none;
}

.home-last-post-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 7px 10px;

    color: #ffffff;

    background: #ff3131;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1px;

    z-index: 5;
}


/* =========================================================
   HOME NEWS TITLE
========================================================= */

.home-news-title {
    color: #ffffff;
    text-decoration: none;

    transition: .2s;
}

.home-news-title:hover {
    color: #ff3131;
}


/* =========================================================
   HOME NEWS READ MORE
========================================================= */

.home-read-more {
    display: inline-block;

    margin-top: 15px;

    color: #ff3131;

    text-decoration: none;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}

.home-read-more:hover {
    color: #ffffff;
}