* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main: #050505;
    --bg-secondary: #0d0000;
    --bg-tertiary: #140000;
    --bg-elevated: #1a0909;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-bg-strong: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 59, 59, 0.18);
    --card-border-strong: rgba(255, 59, 59, 0.35);
    --text-main: #ffffff;
    --text-soft: #dddddd;
    --text-muted: #a8a8a8;
    --accent: #ff3b3b;
    --accent-hover: #ff5757;
    --accent-dark: #c91f1f;
    --success: #72f2a3;
    --warning: #ffd36a;
    --danger: #ff7b7b;
    --shadow-soft: 0 0 24px rgba(255, 59, 59, 0.10);
    --shadow-medium: 0 0 28px rgba(255, 59, 59, 0.18);
    --shadow-strong: 0 0 38px rgba(255, 59, 59, 0.22);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --container: 1280px;
    --transition: all 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top right, rgba(255, 59, 59, 0.12), transparent 30%),
        radial-gradient(circle at left center, rgba(255, 0, 0, 0.08), transparent 25%),
        linear-gradient(180deg, #120000 0%, #080808 45%, #050505 100%);
    color: var(--text-main);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: none;
}

ul,
ol {
    list-style-position: inside;
}

input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 20px 0;
}

.pc-container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

/* NAVBAR */
.pc-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(4, 4, 4, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 59, 59, 0.18);
}

.pc-navbar-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pc-logo {
    display: inline-flex;
    align-items: center;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent);
    text-transform: uppercase;
    flex-shrink: 0;
}

.pc-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex-wrap: wrap;
}

.pc-nav-links a {
    color: #f3f3f3;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}

.pc-nav-links a:hover,
.pc-nav-links a.active {
    color: var(--accent);
}

.pc-nav-links a.active::after,
.pc-nav-links a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.5);
}

/* HERO */
.pc-hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

.pc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 59, 59, 0.06), transparent 35%),
        linear-gradient(300deg, rgba(255, 59, 59, 0.10), transparent 40%);
    pointer-events: none;
}

.pc-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 36px;
    align-items: center;
}

.pc-hero-copy {
    max-width: 760px;
}

.pc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 59, 59, 0.12);
    border: 1px solid rgba(255, 59, 59, 0.25);
    color: #ffd0d0;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    box-shadow: var(--shadow-soft);
}

.pc-hero h1 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -1.4px;
}

.pc-hero p {
    color: var(--text-soft);
    font-size: 1.08rem;
    max-width: 700px;
}

.pc-hero-actions,
.pc-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.pc-btn,
.pc-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.pc-btn {
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(255, 59, 59, 0.25);
}

.pc-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, var(--accent-hover) 0%, #d82828 100%);
    box-shadow: 0 14px 30px rgba(255, 59, 59, 0.32);
}

.pc-btn-outline {
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    border-color: rgba(255, 59, 59, 0.30);
}

.pc-btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(255, 59, 59, 0.10);
    border-color: rgba(255, 59, 59, 0.50);
    box-shadow: var(--shadow-soft);
}

.pc-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 34px;
}

.pc-stat {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.pc-stat h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.pc-stat p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: none;
}

.pc-hero-panel-wrap {
    display: flex;
    justify-content: center;
}

.pc-hero-panel {
    width: 100%;
    max-width: 420px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
        rgba(15, 15, 15, 0.88);
    border: 1px solid var(--card-border-strong);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.pc-hero-panel::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.25), transparent 70%);
    pointer-events: none;
}

.pc-panel-label {
    display: inline-block;
    color: #ffb7b7;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.pc-hero-panel h2 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 18px;
}

.pc-spec-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.pc-spec-list li {
    position: relative;
    padding-left: 20px;
    color: var(--text-soft);
    font-size: 0.98rem;
}

.pc-spec-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(255, 59, 59, 0.6);
}

/* GENERAL SECTIONS */
.pc-section {
    padding: 30px 0 70px;
}

.pc-section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 36px;
}

.pc-section-header h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 16px 0 14px;
}

.pc-section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* CARDS / HOME GRID */
.pc-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pc-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
        rgba(10, 10, 10, 0.88);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    backdrop-filter: blur(12px);
}

.pc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 59, 59, 0.35);
    box-shadow: var(--shadow-medium);
}

.pc-home-card {
    text-align: left;
}

.pc-card-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 59, 59, 0.12);
    border: 1px solid rgba(255, 59, 59, 0.22);
    font-size: 1.7rem;
    margin-bottom: 18px;
    box-shadow: 0 0 16px rgba(255, 59, 59, 0.10);
}

.pc-card h2 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.pc-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.pc-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 20px;
}

/* CTA */
.pc-cta-section {
    padding-top: 0;
    padding-bottom: 80px;
}

.pc-cta-card {
    text-align: center;
    padding: 42px 28px;
    border: 1px solid var(--card-border-strong);
    box-shadow: var(--shadow-strong);
}

.pc-cta-card .pc-hero-actions {
    justify-content: center;
    margin-top: 10px;
}

/* FOOTER */
.pc-footer {
    margin-top: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
        #070707;
    border-top: 1px solid rgba(255, 59, 59, 0.18);
    padding: 55px 0 20px;
}

.pc-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 30px;
}

.pc-footer h3,
.pc-footer h4 {
    color: #ffffff;
    margin-bottom: 14px;
}

.pc-footer h3 {
    font-size: 1.4rem;
}

.pc-footer h4 {
    font-size: 1rem;
}

.pc-footer p,
.pc-footer li,
.pc-footer a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pc-footer ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.pc-footer a:hover {
    color: var(--accent-hover);
}

.pc-footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.pc-footer-bottom p {
    color: #7f7f7f;
    font-size: 0.88rem;
    margin: 0;
}

/* PAGE HEADER */
.pc-page-header {
    position: relative;
    padding: 70px 0 28px;
}

.pc-page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 59, 59, 0.05), transparent 40%),
        linear-gradient(300deg, rgba(255, 59, 59, 0.08), transparent 35%);
}

.pc-page-header .pc-container {
    position: relative;
    z-index: 1;
}

.pc-page-header h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    margin-bottom: 10px;
    letter-spacing: -0.8px;
}

.pc-page-header p {
    color: var(--text-muted);
    max-width: 760px;
    font-size: 1rem;
}

/* GRID */
.pc-grid {
    display: grid;
    gap: 24px;
}

.pc-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.pc-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.pc-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* FORMS */
.pc-form-group {
    margin-bottom: 18px;
}

.pc-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #f1f1f1;
}

.pc-input,
.pc-textarea,
.pc-input[type="number"],
.pc-input[type="email"],
.pc-input[type="password"],
.pc-input[type="text"],
.pc-input[type="url"],
.pc-input[type="search"] {
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 59, 59, 0.20);
    color: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
    outline: none;
    transition: var(--transition);
}

.pc-input::placeholder,
.pc-textarea::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.pc-input:focus,
.pc-textarea:focus {
    border-color: rgba(255, 59, 59, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.10);
}

.pc-textarea {
    min-height: 140px;
    resize: vertical;
}

/* SELECTS */
.pc-select,
.part-select,
select:not([multiple]):not([size]),
.pc-input[type="date"],
.pc-input[type="time"] {
    width: 100%;
    min-height: 52px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right 14px center;
    background-size: auto, 18px;
    border: 1px solid rgba(255, 59, 59, 0.20);
    color: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
    padding-right: 46px;
    outline: none;
    transition: var(--transition);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.pc-select:focus,
.part-select:focus,
select:not([multiple]):not([size]):focus {
    border-color: rgba(255, 59, 59, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.10);
}

.pc-select option,
.part-select option,
select option {
    background: #140707;
    color: #ffffff;
    padding: 10px;
    font-size: 15px;
}

.pc-select option:checked,
.part-select option:checked,
select option:checked {
    background: #5a1010;
    color: #ffffff;
}

.pc-select option:disabled,
.part-select option:disabled,
select option:disabled {
    color: #b8a0a0;
    background: #140707;
}

select[multiple],
select[size] {
    width: 100%;
    background: #140707;
    color: #ffffff;
    border: 1px solid rgba(255, 59, 59, 0.20);
    border-radius: 14px;
    padding: 10px;
    outline: none;
}

select[multiple]:focus,
select[size]:focus {
    border-color: rgba(255, 59, 59, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.10);
}

select::-ms-expand {
    display: none;
}

/* TABLE */
.pc-table-wrap {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
}

.pc-table {
    width: 100%;
    border-collapse: collapse;
}

.pc-table th,
.pc-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: top;
}

.pc-table th {
    color: #fff;
    font-size: 0.95rem;
    background: rgba(255, 59, 59, 0.08);
}

.pc-table td {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.pc-table tr:last-child td {
    border-bottom: none;
}

/* ALERTS */
.pc-alert {
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid;
    margin-bottom: 20px;
}

.pc-alert-success {
    background: rgba(114, 242, 163, 0.08);
    border-color: rgba(114, 242, 163, 0.28);
    color: #bffff2;
}

.pc-alert-error {
    background: rgba(255, 123, 123, 0.08);
    border-color: rgba(255, 123, 123, 0.28);
    color: #ffd3d3;
}

.pc-alert-warning {
    background: rgba(255, 211, 106, 0.08);
    border-color: rgba(255, 211, 106, 0.28);
    color: #ffe6ae;
}

/* BUILD PC PAGE */
.pc-builder-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.pc-builder-card {
    min-height: 100%;
}

.pc-builder-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
}

.pc-builder-subtitle {
    color: var(--text-soft);
    font-size: 1.04rem;
    margin-bottom: 26px;
}

.pc-builder-form {
    display: grid;
    gap: 18px;
}

.pc-builder-summary {
    position: sticky;
    top: 110px;
}

.pc-summary-list {
    display: grid;
    gap: 0;
    margin-top: 12px;
}

.pc-summary-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-summary-item:last-child {
    border-bottom: none;
}

.pc-summary-item span:first-child {
    color: var(--text-soft);
}

.pc-summary-item span:last-child,
.pc-summary-item strong:last-child {
    text-align: right;
    color: #ffffff;
    font-weight: 700;
}

.pc-price-box {
    margin-top: 22px;
    padding: 26px 22px;
    border-radius: 18px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 59, 59, 0.10), rgba(120, 0, 0, 0.16));
    border: 1px solid rgba(255, 59, 59, 0.20);
    box-shadow: var(--shadow-soft);
}

.pc-price-box-label {
    display: block;
    color: #f5cfcf;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.92rem;
    margin-bottom: 10px;
}

.pc-price-box-total {
    color: var(--accent);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
}

.pc-summary-actions {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

/* CART / SUMMARY */
.pc-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 24px;
    align-items: start;
}

.pc-product-info-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
        rgba(10, 10, 10, 0.88);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.pc-product-info-card h2 {
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.pc-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-soft);
}

.pc-summary-line:last-child {
    border-bottom: none;
}

.pc-summary-line span:last-child,
.pc-summary-line strong:last-child {
    color: #ffffff;
    font-weight: 700;
    text-align: right;
}

.pc-total-box {
    margin-top: 22px;
    padding: 26px 22px;
    border-radius: 18px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 59, 59, 0.12), rgba(120, 0, 0, 0.18));
    border: 1px solid rgba(255, 59, 59, 0.20);
    box-shadow: var(--shadow-soft);
}

.pc-total-box p {
    color: #f5cfcf;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.pc-total-box h3 {
    color: var(--accent);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    margin: 0;
}

.pc-form-wrap {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
        rgba(10, 10, 10, 0.88);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.pc-form-wrap h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.pc-form-wrap p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

/* PRODUCT CARD IMAGE HELPERS */
.pc-product-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 59, 59, 0.15);
    margin-bottom: 18px;
    background: rgba(255,255,255,0.02);
}

.pc-product-placeholder {
    width: 100%;
    height: 240px;
    border-radius: 16px;
    border: 1px solid rgba(255, 59, 59, 0.15);
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 18px;
}

.pc-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.pc-price-text {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 800;
}

.pc-stock-in {
    color: #9fffb2;
    font-weight: 700;
}

.pc-stock-out {
    color: #ff9c9c;
    font-weight: 700;
}

/* DASHBOARD / SUMMARY HELPERS */
.dashboard-wrap {
    max-width: 1450px;
    margin: 40px auto;
    padding: 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.dashboard-header h1 {
    margin: 0 0 8px;
    font-size: 32px;
}

.dashboard-header p {
    margin: 0;
    color: #b8c0cc;
}

.dashboard-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.dashboard-actions a {
    background: #e63946;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    transition: var(--transition);
}

.dashboard-actions a:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.stat-card {
    background: #171a21;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.stat-card h3 {
    margin: 0 0 10px;
    color: #b8c0cc;
    font-size: 14px;
    font-weight: 600;
}

.stat-card p {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
}

.section-card {
    background: #171a21;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.section-head {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.section-head h2 {
    margin: 0;
    font-size: 22px;
}

.section-head p {
    margin: 0;
    color: #a8b0bc;
    font-size: 14px;
}

.section-body {
    padding: 20px;
}

.message {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.35);
    color: #7CFC98;
}

.error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.35);
    color: #ff9eaa;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.quick-card {
    background: #12151b;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 18px;
}

.quick-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.quick-card p {
    margin: 0 0 14px;
    color: #b8c0cc;
    line-height: 1.6;
}

.quick-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.quick-links a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background: #2563eb;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
}

th,
td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    vertical-align: middle;
}

th {
    background: #12151b;
    color: #d7dce4;
    font-size: 14px;
}

td {
    color: #fff;
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.badge-user {
    background: #2f3542;
}

.badge-admin {
    background: #1d4ed8;
}

.badge-owner {
    background: #7c3aed;
}

.badge-banned {
    background: #dc2626;
}

.badge-active {
    background: #16a34a;
}

.action-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.action-group form {
    margin: 0;
}

.btn {
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-promote {
    background: #2563eb;
}

.btn-demote {
    background: #f59e0b;
    color: #111827;
}

.btn-ban {
    background: #dc2626;
}

.btn-unban {
    background: #16a34a;
}

.owner-protected {
    color: #9ca3af;
    font-weight: 700;
    font-size: 13px;
}

.note {
    margin-top: 16px;
    color: #a8b0bc;
    font-size: 14px;
    line-height: 1.7;
}

/* SMALL HELPER UTILITIES */
.pc-text-center {
    text-align: center;
}

.pc-mb-0 {
    margin-bottom: 0 !important;
}

.pc-mb-12 {
    margin-bottom: 12px !important;
}

.pc-mb-16 {
    margin-bottom: 16px !important;
}

.pc-mb-20 {
    margin-bottom: 20px !important;
}

.pc-mb-24 {
    margin-bottom: 24px !important;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .pc-hero-inner,
    .pc-home-grid,
    .pc-footer-grid,
    .pc-grid-4,
    .pc-builder-layout,
    .pc-product-layout {
        grid-template-columns: 1fr 1fr;
    }

    .pc-hero-panel {
        max-width: 100%;
    }

    .pc-hero-stats {
        grid-template-columns: 1fr;
    }

    .pc-builder-summary {
        position: static;
    }
}

@media (max-width: 820px) {
    .pc-navbar-inner {
        min-height: auto;
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .pc-nav-links {
        width: 100%;
        justify-content: flex-start;
        gap: 18px;
    }

    .pc-hero {
        padding-top: 60px;
    }

    .pc-hero-inner,
    .pc-home-grid,
    .pc-footer-grid,
    .pc-grid-2,
    .pc-grid-3,
    .pc-grid-4,
    .pc-builder-layout,
    .pc-product-layout {
        grid-template-columns: 1fr;
    }

    .pc-hero h1,
    .pc-builder-title {
        font-size: 2.4rem;
    }

    .pc-section {
        padding: 25px 0 55px;
    }

    .pc-card,
    .pc-hero-panel,
    .pc-stat,
    .pc-product-info-card,
    .pc-form-wrap,
    .stat-card,
    .section-body,
    .section-head {
        padding: 22px;
    }

    .pc-hero-actions,
    .pc-panel-actions,
    .pc-cta-card .pc-hero-actions,
    .pc-summary-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pc-btn,
    .pc-btn-outline {
        width: 100%;
    }

    .pc-section-header {
        margin-bottom: 28px;
    }

    .pc-summary-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .pc-summary-item span:last-child,
    .pc-summary-item strong:last-child,
    .pc-summary-line span:last-child,
    .pc-summary-line strong:last-child {
        text-align: left;
    }

    .pc-summary-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-wrap {
        margin: 20px auto;
        padding: 14px;
    }

    .dashboard-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 520px) {
    .pc-container {
        width: min(100% - 22px, var(--container));
    }

    .pc-hero h1,
    .pc-builder-title {
        font-size: 2rem;
    }

    .pc-badge {
        font-size: 11px;
        padding: 8px 12px;
    }

    .pc-card h2 {
        font-size: 1.7rem;
    }

    .pc-card h3,
    .pc-hero-panel h2,
    .pc-product-info-card h2,
    .pc-form-wrap h2 {
        font-size: 1.5rem;
    }

    .pc-card,
    .pc-hero-panel,
    .pc-stat,
    .pc-cta-card,
    .pc-price-box,
    .pc-total-box,
    .pc-product-info-card,
    .pc-form-wrap,
    .stat-card,
    .section-card {
        border-radius: 18px;
    }

    .pc-nav-links {
        gap: 14px;
        font-size: 0.95rem;
    }

    .quick-links,
    .dashboard-actions,
    .action-group {
        flex-direction: column;
        align-items: stretch;
    }

    table {
        min-width: 760px;
    }
}