body {
    background: linear-gradient(180deg, #050505 0%, #101010 100%);
    color: white;
    font-family: 'Segoe UI', sans-serif;
    padding: 20px;
}

/* HEADER */

.bg-primary {
    background: linear-gradient(90deg, #700000, #ff1a1a) !important;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,0,0,0.25);
    box-shadow: 0 0 35px rgba(255,0,0,0.18);
}

.bg-primary h2 {
    margin: 0;
    font-weight: bold;
    color: white;
}

/* CARD */

.card {
    background: rgba(15,15,15,0.96);
    border: 1px solid rgba(255,0,0,0.12);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.card:hover {
    transform: translateY(-6px);
    border-color: #ff2a2a;
    box-shadow: 0 0 30px rgba(255,0,0,0.35);
}

/* INNER GLOW */

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    pointer-events: none;
    box-shadow: inset 0 0 25px rgba(255,0,0,0.03);
}

/* HEADER */

.card-header {
    background: rgba(255,0,0,0.06);
    border-bottom: 1px solid rgba(255,0,0,0.1);
    padding: 14px;
}

/* FOOTER */

.card-footer {
    background: transparent;
    border: none;
}

/* TITLE */

.item-name {
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 5px;
}

/* WEAR */

.wear-fn,
.wear-mw,
.wear-ft,
.wear-ww,
.wear-bs {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
}

.wear-fn {
    color: #00ff87;
}

.wear-mw {
    color: #66ffcc;
}

.wear-ft {
    color: #ffe066;
}

.wear-ww {
    color: #ff9933;
}

.wear-bs {
    color: #ff3c3c;
}

/* IMAGE */

.skin-image {
    width: 90%;
    display: block;
    margin: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 12px rgba(255,0,0,0.18));
}

.skin-image:hover {
    transform: scale(1.08);
}

/* FORM */

.form-control,
.form-select,
.select {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,0,0,0.12) !important;
    color: white !important;
    border-radius: 12px;
}

.form-control:focus,
.form-select:focus,
.select:focus {
    background: rgba(255,255,255,0.08) !important;
    border-color: #ff2a2a !important;
    color: white !important;
    box-shadow: 0 0 12px rgba(255,0,0,0.2) !important;
}

/* OPTION */

option {
    background: #111;
    color: white;
}

/* BUTTON */

.btn-primary {
    background: linear-gradient(90deg, #b30000, #ff1a1a);
    border: none;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.25s;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #ff1a1a, #ff4d4d);
    transform: scale(1.03);
}

.btn-danger {
    border-radius: 12px;
    background: #ff1a1a;
    border: none;
}

/* MODAL */

.modal-content {
    background: #101010;
    color: white;
    border-radius: 18px;
    border: 1px solid rgba(255,0,0,0.18);
}

.modal-header,
.modal-footer {
    border: none;
}

/* LINKS */

a {
    color: #ff5555;
    text-decoration: none;
}

a:hover {
    color: white;
}

/* FOOTER */

footer {
    margin-top: 50px;
}

/* SCROLL */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #080808;
}

::-webkit-scrollbar-thumb {
    background: #ff1a1a;
    border-radius: 10px;
}