* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #02060d;
    color: white;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

nav {
    min-height: 82px;
    background: #03070d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 45px;
    border-bottom: 1px solid #12345c;
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .brand img {
        width: 65px;
        height: 65px;
        object-fit: cover;
        border-radius: 8px;
    }

    .brand h2 {
        margin: 0;
        font-size: 25px;
    }

    .brand span {
        color: #facc15;
        font-weight: bold;
    }

nav a {
    margin-left: 25px;
    font-weight: bold;
}

    nav a:hover,
    .active {
        color: #0ea5e9;
    }

.hero {
    min-height: 430px;
    display: flex;
    align-items: center;
    padding: 45px;
    background: linear-gradient(90deg, #02060d 0%, rgba(2,6,13,.88) 45%, rgba(2,6,13,.45)), url("../images/banner.jpg");
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid #0ea5e9;
}

.hero-logo {
    width: 320px;
    max-width: 35%;
    margin-right: 45px;
}

.hero h1 {
    font-size: 54px;
    margin: 0;
}

    .hero h1 span {
        color: #0ea5e9;
    }

.hero p {
    font-size: 20px;
    line-height: 1.6;
    color: #dbeafe;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 7px;
    margin: 10px 10px 0 0;
    font-weight: bold;
    border: 1px solid #0ea5e9;
}

.primary {
    background: #0866ff;
}

.dark {
    background: #06111f;
}

.red {
    background: #dc2626;
    border-color: #dc2626;
}

.container {
    width: 92%;
    max-width: 1250px;
    margin: auto;
    padding: 35px 0;
}

.panel,
.card,
.social-box {
    background: linear-gradient(180deg, #06111f, #02060d);
    border: 1px solid #1e3a8a;
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(14,165,233,.18);
}

.panel {
    padding: 25px;
}

.section-title {
    text-align: center;
    color: #0ea5e9;
    font-size: 30px;
    margin: 25px 0;
}

.featured {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.25fr) minmax(190px, .65fr);
    gap: 35px;
    align-items: center;
}

    .featured h2 {
        font-size: 30px;
        line-height: 1.2;
        margin-top: 0;
    }

    .featured p {
        line-height: 1.6;
    }

.banner-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #1e3a8a;
}

.price {
    text-align: center;
    border-left: 1px solid #1e3a8a;
    padding-left: 20px;
    min-width: 190px;
}

    .price h2 {
        color: #0ea5e9;
        font-size: 34px;
    }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    overflow: hidden;
}

.card-img {
    height: 145px;
    background: url("../images/banner.jpg");
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 18px;
}

.tag {
    display: inline-block;
    background: #0866ff;
    padding: 5px 9px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
}

.small-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 9px 14px;
    border: 1px solid #0ea5e9;
    border-radius: 5px;
    color: #0ea5e9;
}

.socials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.social-box {
    padding: 22px;
}

    .social-box a {
        color: #0ea5e9;
        font-weight: bold;
    }

footer {
    padding: 25px 45px;
    border-top: 1px solid #12345c;
    color: #94a3b8;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media(max-width: 950px) {
    .featured {
        grid-template-columns: 1fr;
    }

    .price {
        border-left: none;
        border-top: 1px solid #1e3a8a;
        padding-left: 0;
        padding-top: 15px;
    }
}

@media(max-width: 850px) {
    nav {
        height: auto;
        display: block;
        padding: 15px;
    }

        nav a {
            display: inline-block;
            margin: 8px;
        }

    .hero {
        display: block;
        text-align: center;
    }

    .hero-logo {
        max-width: 80%;
        margin: 0 auto 20px;
    }

    footer {
        display: block;
        text-align: center;
    }
}
.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 82px);
}

.dashboard-sidebar {
    background: #03070d;
    border-right: 1px solid #12345c;
    padding: 25px;
}

    .dashboard-sidebar h2 {
        color: #0ea5e9;
        margin-top: 0;
    }

    .dashboard-sidebar a {
        display: block;
        padding: 12px 10px;
        margin-bottom: 6px;
        border-radius: 7px;
        color: #cbd5e1;
    }

        .dashboard-sidebar a:hover {
            background: #06111f;
            color: #0ea5e9;
        }

    .dashboard-sidebar hr {
        border: none;
        border-top: 1px solid #1e3a8a;
        margin: 18px 0;
    }

.dashboard-main {
    padding: 35px;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.dash-card {
    background: linear-gradient(180deg, #06111f, #02060d);
    border: 1px solid #1e3a8a;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 0 18px rgba(14,165,233,.18);
}

.staff-card {
    border-color: #facc15;
}

.founder-card {
    border-color: #ef4444;
    box-shadow: 0 0 20px rgba(239,68,68,.25);
}

@media(max-width: 850px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        border-right: none;
        border-bottom: 1px solid #12345c;
    }
}
.app-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: calc(100vh - 82px);
    background: #02060d;
}

.app-sidebar {
    background: linear-gradient(180deg, #03070d, #06111f);
    border-right: 1px solid #12345c;
    padding: 22px;
}

.sidebar-profile {
    text-align: center;
    padding-bottom: 22px;
    border-bottom: 1px solid #1e3a8a;
    margin-bottom: 22px;
}

    .sidebar-profile img {
        width: 95px;
        height: 95px;
        object-fit: cover;
        border-radius: 14px;
        box-shadow: 0 0 22px rgba(14,165,233,.25);
    }

    .sidebar-profile h3 {
        margin: 12px 0 4px;
        color: #ffffff;
    }

    .sidebar-profile p {
        margin: 0;
        color: #94a3b8;
        font-size: 14px;
    }

.sidebar-section {
    margin-bottom: 20px;
}

    .sidebar-section span {
        display: block;
        color: #64748b;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: bold;
        margin-bottom: 8px;
        letter-spacing: 1px;
    }

    .sidebar-section a {
        display: block;
        padding: 12px 12px;
        margin-bottom: 6px;
        border-radius: 8px;
        color: #cbd5e1;
    }

        .sidebar-section a:hover,
        .active-side {
            background: rgba(14,165,233,.12);
            color: #38bdf8;
        }

.staff-section a:hover {
    background: rgba(250,204,21,.12);
    color: #facc15;
}

.founder-section a:hover {
    background: rgba(239,68,68,.12);
    color: #f87171;
}

.app-main {
    padding: 32px;
}

.app-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 24px;
}

    .app-topbar h1 {
        margin: 0;
        font-size: 34px;
    }

    .app-topbar p {
        margin: 6px 0 0;
        color: #94a3b8;
    }

.command-banner {
    min-height: 220px;
    border: 1px solid #1e3a8a;
    border-radius: 14px;
    padding: 32px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(2,6,13,.95), rgba(2,6,13,.65)), url("../images/banner.jpg");
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 25px rgba(14,165,233,.18);
    margin-bottom: 24px;
}

    .command-banner h2 {
        font-size: 38px;
        margin: 14px 0 10px;
        color: #38bdf8;
    }

    .command-banner p {
        max-width: 650px;
        color: #dbeafe;
        line-height: 1.6;
    }

.stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.dash-heading {
    margin-top: 35px;
    margin-bottom: 18px;
    color: #38bdf8;
}

.modern-grid {
    margin-top: 0;
}

.dash-icon {
    font-size: 34px;
    margin-bottom: 10px;
}

.control-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.control-card {
    background: linear-gradient(180deg, #06111f, #02060d);
    border: 1px solid #1e3a8a;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 0 18px rgba(14,165,233,.18);
}

    .control-card h3 {
        margin-top: 0;
    }

    .control-card p {
        color: #cbd5e1;
    }

.founder-title {
    color: #f87171;
}

@media(max-width: 950px) {
    .app-shell {
        grid-template-columns: 1fr;
    }

    .app-sidebar {
        border-right: none;
        border-bottom: 1px solid #12345c;
    }

    .app-topbar {
        display: block;
    }

    .topbar-actions {
        margin-top: 15px;
    }
}
.settings-box {
    background: rgba(2, 6, 13, 0.55);
    border: 1px solid #1e3a8a;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 16px;
}

    .settings-box h3 {
        margin-top: 0;
        color: #38bdf8;
    }

    .settings-box p {
        color: #cbd5e1;
    }

    .settings-box label {
        color: #e5e7eb;
        font-weight: 600;
    }

    .settings-box input[type="checkbox"] {
        transform: scale(1.2);
        margin-right: 8px;
    }

.form-input {
    width: 100%;
    max-width: 350px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #1e3a8a;
    background: #02060d;
    color: #ffffff;
}
.profile-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 25px;
    align-items: start;
}

.profile-preview {
    text-align: center;
    overflow: hidden;
    padding-top: 0;
}

.profile-banner {
    height: 130px;
    background: linear-gradient(90deg, rgba(2,6,13,.55), rgba(2,6,13,.25)), url("../images/banner.jpg");
    background-size: cover;
    background-position: center;
    margin: -25px -25px 0;
    border-bottom: 1px solid #1e3a8a;
}

.profile-avatar img {
    width: 115px;
    height: 115px;
    object-fit: cover;
    border-radius: 18px;
    border: 3px solid #0ea5e9;
    margin-top: -55px;
    background: #02060d;
    box-shadow: 0 0 24px rgba(14,165,233,.35);
}

.muted {
    color: #94a3b8;
}

.full-input {
    max-width: 100%;
    margin-bottom: 12px;
}

textarea.form-input {
    resize: vertical;
    font-family: Arial, sans-serif;
}

@media(max-width: 900px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }
}
.role-badge-wrap {
    margin: 15px 0;
}

.role-badge {
    display: inline-block;
    margin: 5px 4px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #06111f;
    border: 1px solid #1e3a8a;
    color: #dbeafe;
    font-size: 13px;
    font-weight: bold;
}

    .role-badge.founder {
        background: rgba(250,204,21,.14);
        border-color: #facc15;
        color: #facc15;
    }

.profile-socials {
    margin-top: 18px;
    display: grid;
    gap: 8px;
}

    .profile-socials a,
    .profile-socials span {
        display: block;
        padding: 9px 12px;
        border-radius: 8px;
        background: rgba(14,165,233,.1);
        border: 1px solid #1e3a8a;
        color: #dbeafe;
        font-weight: bold;
    }
.profile-rating {
    margin: 15px 0;
    color: #facc15;
    font-size: 18px;
    font-weight: bold;
}

    .profile-rating strong {
        color: #ffffff;
        margin-left: 8px;
    }

.profile-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 18px 0;
}

    .profile-stats div {
        background: rgba(14,165,233,.1);
        border: 1px solid #1e3a8a;
        border-radius: 10px;
        padding: 12px;
    }

    .profile-stats strong {
        display: block;
        color: #38bdf8;
        font-size: 24px;
    }

    .profile-stats span {
        display: block;
        color: #cbd5e1;
        font-weight: bold;
        font-size: 13px;
    }
.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .nav-links a {
        font-weight: bold;
        transition: .2s;
    }

        .nav-links a:hover {
            color: #38bdf8;
        }

.nav-account {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media(max-width:1000px) {

    nav {
        flex-direction: column;
        gap: 18px;
        padding: 20px;
        height: auto;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-account {
        justify-content: center;
        width: 100%;
    }
}
.top-nav {
    min-height: 82px;
    height: auto;
    background: #03070d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 12px 45px;
    border-bottom: 1px solid #12345c;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: nowrap;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

    .nav-links a {
        font-weight: bold;
        color: #ffffff;
        transition: .2s;
        font-size: 15px;
    }

        .nav-links a:hover {
            color: #38bdf8;
        }

@media(max-width: 1150px) {
    .top-nav {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.notification-item {
    border-left: 5px solid #1e3a8a;
}

.unread-note {
    border-left-color: #22c55e;
    box-shadow: 0 0 18px rgba(34,197,94,.18);
}

.read-note {
    opacity: .82;
}
.management-panel {
    background: #111827;
    border: 1px solid #1e3a8a;
    border-radius: 14px;
    padding: 25px;
    margin-top: 25px;
    box-shadow: 0 0 22px rgba(14,165,233,.12);
}

.management-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

    .management-header h2 {
        margin: 0;
        color: #ffffff;
    }

    .management-header p {
        margin-top: 6px;
        color: #94a3b8;
    }

.search-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

    .search-form input {
        min-width: 280px;
    }

.user-table-wrap {
    overflow-x: auto;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
}

    .user-table th {
        text-align: left;
        color: #38bdf8;
        padding: 14px;
        border-bottom: 1px solid #1e3a8a;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .user-table td {
        padding: 16px 14px;
        border-bottom: 1px solid rgba(30,58,138,.6);
        color: #dbeafe;
        vertical-align: middle;
    }

    .user-table tr:hover {
        background: rgba(14,165,233,.08);
    }

.user-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .user-cell strong {
        display: block;
        color: #ffffff;
    }

    .user-cell small {
        display: block;
        color: #94a3b8;
        margin-top: 3px;
    }

.table-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #0866ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    box-shadow: 0 0 12px rgba(8,102,255,.35);
}

.role-badge-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.role-badge {
    display: inline-block;
    background: rgba(14,165,233,.16);
    border: 1px solid #2563eb;
    color: #dbeafe;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
}

.empty-state {
    padding: 50px;
    text-align: center;
    color: #94a3b8;
    background: rgba(2,6,13,.45);
    border: 1px solid #1e3a8a;
    border-radius: 12px;
}

@media(max-width: 900px) {
    .management-header {
        display: block;
    }

    .search-form {
        margin-top: 18px;
        flex-wrap: wrap;
    }

        .search-form input {
            min-width: 100%;
        }
}
.creator-card {
    position: relative;
    overflow: hidden;
}

.creator-thumb {
    height: 135px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    border: 1px solid #1e3a8a;
    margin-bottom: 15px;
}
.upload-section {
    margin-bottom: 25px;
}

    .upload-section h2 {
        color: #38bdf8;
        margin-bottom: 15px;
    }
.market-hero {
    background: linear-gradient(135deg, #02060d, #06111f, #0b1f3a);
    border: 1px solid #1e3a8a;
    border-radius: 18px;
    padding: 38px;
    margin-bottom: 35px;
    box-shadow: 0 0 30px rgba(14,165,233,.16);
}

    .market-hero h1 {
        margin: 12px 0;
        font-size: 42px;
        color: #ffffff;
    }

    .market-hero p {
        color: #cbd5e1;
        max-width: 850px;
    }

.market-search {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto auto;
    gap: 12px;
    margin-top: 25px;
}

.market-featured {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 25px;
    background: #111827;
    border: 1px solid #1e3a8a;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 35px;
    box-shadow: 0 0 22px rgba(14,165,233,.12);
}

.market-featured-img {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 13px;
    border: 1px solid #2563eb;
}

.market-featured-info h2 {
    color: #ffffff;
    font-size: 34px;
    margin: 12px 0;
}

.market-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

    .market-meta span {
        background: rgba(14,165,233,.12);
        border: 1px solid #1e3a8a;
        color: #dbeafe;
        padding: 7px 11px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: bold;
    }

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.market-card {
    background: #111827;
    border: 1px solid #1e3a8a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(14,165,233,.1);
}

    .market-card:hover {
        transform: translateY(-3px);
        transition: .2s;
        box-shadow: 0 0 24px rgba(14,165,233,.22);
    }

.market-card-img {
    height: 170px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #1e3a8a;
}

.market-card-body {
    padding: 18px;
}

.market-card-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.price-pill {
    background: rgba(34,197,94,.14);
    border: 1px solid #22c55e;
    color: #bbf7d0;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
}

.market-card h3 {
    color: #ffffff;
    margin: 14px 0 6px;
}

.market-creator {
    color: #94a3b8;
    font-size: 14px;
}

    .market-creator a,
    .market-featured-info a {
        color: #38bdf8;
        text-decoration: none;
    }

.market-meta.small span {
    font-size: 12px;
    padding: 5px 9px;
}

@media(max-width: 900px) {
    .market-search {
        grid-template-columns: 1fr;
    }

    .market-featured {
        grid-template-columns: 1fr;
    }

    .market-hero h1 {
        font-size: 30px;
    }
}