/* ==========================================================================
   VoyagerSpace Ultra 3D - Design System (UZS Currency & Cosmic Theme)
   ========================================================================== */

:root {
    --bg-dark: #050711;
    --bg-card: rgba(13, 17, 35, 0.65);
    --bg-card-hover: rgba(22, 29, 58, 0.85);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-cyan: rgba(0, 242, 254, 0.35);
    --border-purple: rgba(127, 0, 255, 0.35);

    --cyan: #00f2fe;
    --blue: #4facfe;
    --purple: #7f00ff;
    --pink: #ff007f;
    --gold: #ffb703;
    
    --text-primary: #f5f8ff;
    --text-muted: #8d9bb5;
    --text-dim: #54607a;
    
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

.text-gradient {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 50%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 7, 17, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon-glow {
    font-size: 28px;
    background: rgba(0, 242, 254, 0.1);
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.logo-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-primary);
    display: block;
}

.logo-title .highlight {
    color: var(--cyan);
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-dim);
    display: block;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.nav-item:hover, .nav-item.active {
    color: var(--cyan);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

/* Copy IP Button */
.btn-copy-ip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(13, 17, 35, 0.8);
    border: 1px solid var(--border-cyan);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-copy-ip:hover {
    background: rgba(0, 242, 254, 0.15);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
    transform: translateY(-2px);
}

.ip-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 8px #00ff88;
}

.ip-text {
    font-family: var(--font-head);
    font-size: 14px;
    color: var(--cyan);
}

/* Hero Section */
.hero-section {
    padding: 160px 24px 80px 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(127, 0, 255, 0.15);
    border: 1px solid var(--border-purple);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: #c480ff;
    margin-bottom: 24px;
}

.pill-pulse {
    width: 8px;
    height: 8px;
    background: #c480ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #c480ff;
}

.hero-title {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ip-card-box {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 8px 8px 8px 20px;
    border-radius: var(--radius-md);
    gap: 16px;
}

.ip-meta {
    display: flex;
    flex-direction: column;
}

.ip-tag {
    font-size: 10px;
    font-weight: 800;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.ip-address {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--cyan);
    font-size: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.btn-glow-cyan {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #050711;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.4);
}

.btn-glow-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 242, 254, 0.6);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* 3D Container */
.hero-3d-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#three-container {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at center, rgba(127, 0, 255, 0.15) 0%, rgba(5, 7, 17, 0) 70%);
}

.three-hint {
    position: absolute;
    bottom: 10px;
    background: rgba(5, 7, 17, 0.7);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
}

/* Status Glass Card */
.status-glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    backdrop-filter: blur(16px);
}

.status-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.status-pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 12px #00ff88;
}

.status-pulse-dot.offline {
    background: #ff3b30;
    box-shadow: 0 0 12px #ff3b30;
}

.status-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.status-stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-lbl {
    font-size: 12px;
    color: var(--text-dim);
}

.stat-sep {
    width: 1px;
    height: 30px;
    background: var(--border-color);
}

/* Donate Section & 9 Ranks Grid */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 90px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid var(--border-cyan);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    color: var(--cyan);
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.ranks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.rank-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.rank-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rank-card.rank-featured {
    border-color: var(--cyan);
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.2);
    background: rgba(16, 26, 52, 0.85);
}

.featured-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #050711;
    font-weight: 900;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.rank-chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 10px;
}

.spark-chip { background: rgba(0, 242, 254, 0.15); color: var(--cyan); }
.orbit-chip { background: rgba(79, 172, 254, 0.15); color: var(--blue); }
.comet-chip { background: rgba(0, 255, 136, 0.15); color: #00ff88; }
.nova-chip { background: rgba(255, 183, 3, 0.15); color: var(--gold); }
.voyager-chip { background: rgba(0, 242, 254, 0.25); color: var(--cyan); }
.cosmo-chip { background: rgba(127, 0, 255, 0.2); color: #b875ff; }
.galaxy-chip { background: rgba(255, 0, 127, 0.2); color: #ff66b3; }
.titan-chip { background: rgba(255, 87, 34, 0.2); color: #ff7043; }
.admiral-chip { background: linear-gradient(135deg, #ff007f, #7f00ff); color: #fff; }

.rank-name {
    font-family: var(--font-head);
    font-size: 24px;
    margin-bottom: 14px;
}

.rank-price-box {
    margin-bottom: 24px;
}

.rank-price {
    font-family: var(--font-head);
    font-size: 34px;
    font-weight: 900;
    color: var(--text-primary);
}

.rank-currency {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 700;
    margin-left: 6px;
}

.rank-list {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.rank-list li {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.rank-list code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--cyan);
    font-size: 12.5px;
}

.btn-rank-buy {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-rank-buy:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-rank-glow {
    width: 100%;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #050711;
    font-weight: 800;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.3);
    transition: var(--transition);
}

.btn-rank-glow:hover {
    box-shadow: 0 6px 28px rgba(0, 242, 254, 0.6);
    transform: translateY(-2px);
}

.btn-supreme {
    width: 100%;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
    font-weight: 800;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 0, 127, 0.4);
    transition: var(--transition);
}

.btn-supreme:hover {
    box-shadow: 0 6px 28px rgba(255, 0, 127, 0.7);
    transform: translateY(-2px);
}

/* Mods & Steps */
.mod-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mod-step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.step-badge {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 900;
    color: var(--cyan);
    background: rgba(0, 242, 254, 0.1);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-cyan);
}

.step-info h3 {
    font-family: var(--font-head);
    font-size: 18px;
    margin-bottom: 6px;
}

.step-info p {
    color: var(--text-muted);
    font-size: 14px;
}

.mod-tags {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--cyan);
}

.code-ip {
    background: rgba(0, 242, 254, 0.15);
    color: var(--cyan);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-head);
}

/* Rules */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.rule-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
}

.rule-tag {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--purple);
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
}

.rule-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 24px;
    background: rgba(5, 7, 17, 0.95);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo p {
    color: var(--text-dim);
    font-size: 13px;
    margin-top: 4px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
}

.footer-link:hover {
    color: var(--cyan);
}

/* Modal */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-window {
    background: #0d1123;
    border: 1px solid var(--border-cyan);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 460px;
    width: 90%;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 242, 254, 0.25);
    text-align: center;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 26px;
    cursor: pointer;
}

.modal-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.modal-header {
    font-family: var(--font-head);
    font-size: 20px;
    margin-bottom: 8px;
}

.modal-sub {
    color: var(--text-muted);
    font-size: 13.5px;
    margin-bottom: 20px;
}

.modal-steps-box {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.modal-steps-box p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.btn-modal-launch {
    width: 100%;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #050711;
    font-weight: 800;
    padding: 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 900px) {
    .hero-grid-container { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .hero-title { font-size: 34px; }
    .hero-3d-wrapper { height: 320px; }
}


/* Extra Payment Modal Styles */
.modal-input-group {
    text-align: left;
    margin: 15px 0;
}

.modal-input-group label {
    display: block;
    font-size: 0.85rem;
    color: #a0aec0;
    margin-bottom: 6px;
    font-weight: 600;
}

.modal-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(0, 242, 254, 0.4);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modal-input:focus {
    border-color: #00f2fe;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.payment-options-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    margin: 15px 0;
    text-align: left;
}

.payment-title {
    font-size: 0.85rem;
    color: #00f2fe;
    margin-bottom: 8px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-option:last-child {
    border-bottom: none;
}

.pay-icon {
    font-size: 1.4rem;
}

.payment-option b {
    display: block;
    font-size: 0.9rem;
    color: #fff;
}

.payment-option p {
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 0;
}

.btn-modal-secondary {
    display: block;
    margin-top: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.btn-modal-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ==========================================================================
   PERSONAL CABINET & LIVE INVENTORY STYLES
   ========================================================================== */
.btn-cabinet-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.btn-cabinet-nav:hover {
    background: rgba(0, 242, 254, 0.25);
    border-color: #00f2fe;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
    transform: translateY(-2px);
}

.cabinet-modal-window {
    max-width: 620px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.cab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.cab-user-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cab-avatar {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    border: 2px solid #00f2fe;
    background: #0f172a;
}
.cab-nick {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 4px;
}
.cab-badges {
    display: flex;
    gap: 8px;
    align-items: center;
}
.cab-rank-badge {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}
.cab-online-badge {
    font-size: 0.75rem;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 6px;
}
.cab-online-badge.online {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.btn-logout {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.btn-logout:hover {
    background: #ef4444;
    color: #fff;
}

.cab-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}
.cab-stat-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
}
.cab-stat-val {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #00f2fe;
    font-family: 'Orbitron', sans-serif;
}
.cab-stat-lbl {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
}

.cab-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.cab-tab-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.cab-tab-btn.active, .cab-tab-btn:hover {
    background: rgba(0, 242, 254, 0.15);
    border-color: #00f2fe;
    color: #00f2fe;
}

/* Inventory Styles */
.inv-wrapper {
    background: #090d16;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
}
.inv-title {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 6px;
    font-weight: 700;
}
.armor-slots-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.inv-slot {
    width: 44px;
    height: 44px;
    background: #1e293b;
    border: 2px solid #334155;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #64748b;
    position: relative;
    user-select: none;
}
.armor-slot {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}
.inv-slot.has-item {
    background: #0f172a;
    border-color: #00f2fe;
    color: #e2e8f0;
    font-size: 0.65rem;
    font-weight: bold;
    text-align: center;
}
.inv-item-name {
    font-size: 0.6rem;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 90%;
}
.inv-amount {
    position: absolute;
    bottom: 2px;
    right: 4px;
    font-size: 0.75rem;
    color: #facc15;
    font-weight: 800;
    text-shadow: 1px 1px 2px #000;
}
.inv-grid-36 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 5px;
}
.inv-slot.hotbar-slot {
    border-color: #475569;
}

/* Skin Preview */
.skin-box {
    text-align: center;
}
.skin-preview-wrapper {
    margin: 10px auto;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 12px;
    padding: 15px;
    display: inline-block;
}
.skin-body-img {
    height: 160px;
    image-rendering: pixelated;
}

/* Security */
.btn-kick-self {
    width: 100%;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
    padding: 10px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-kick-self:hover {
    background: #ef4444;
    color: #fff;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.auth-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    color: #fca5a5;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin: 8px 0;
    text-align: center;
}
.auth-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid #22c55e;
    color: #86efac;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin: 8px 0;
    text-align: center;
}
