:root {
    --main-color: #ff9f1a;
    --main-color-2: #ff6a00;
    --bg: #111318;
    --bg-soft: #171a20;
    --card: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));
    --card-2: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
    --border: rgba(255, 255, 255, 0.12);
    --text: #f8fafc;
    --muted: #a7b0c0;
    --success: #22c55e;
    --danger: #ef4444;
    --shadow: 0 20px 55px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.05);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    color: var(--text);
    font-family: Inter, Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
    border: 0;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(12, 12, 14, 0.78);
    color: var(--text);
    border-radius: 12px;
    padding: 12px 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(255, 159, 26, 0.75);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.14);
}

.simple-shell,
.skins-shell {
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px;
}

.simple-card,
.panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.simple-card {
    padding: 28px;
    text-align: center;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--main-color), var(--main-color-2));
    color: #fff;
    font-weight: 700;
}

.btn-secondary {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-1px);
}

.empty-state {
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    text-align: center;
}

.skin-noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    border-radius: 16px;
    color: var(--muted);
    font-weight: 600;
}

.skin-noimg.big {
    min-height: 320px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.35);
    border-radius: 999px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

.icon-fallback {
    font-size: 2.25rem;
    gap: 8px;
}

.icon-fallback i {
    font-size: 2.6rem;
    opacity: 0.88;
}

.skin-noimg.big.icon-fallback i {
    font-size: 4rem;
}


/* FINAL FORCE FIX - equal size */
.stickers-container,
.keychains-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sticker-card,
.keychain-card {
    flex: 0 0 60px !important;
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;

    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.sticker-card img,
.keychain-card img {
    width: 80%;
    height: auto;
}
