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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
}

.hidden {
    display: none !important;
}

.creation-panel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.2), transparent 35%),
        linear-gradient(135deg, rgba(10, 14, 39, 0.96) 0%, rgba(26, 31, 58, 0.98) 50%, rgba(10, 14, 39, 0.96) 100%);
}

.creation-card {
    width: min(100%, 500px);
    background: linear-gradient(135deg, #1a1f3a 0%, #242b3d 100%);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 0 24px rgba(212, 175, 55, 0.08);
    position: relative;
    overflow: hidden;
}

.creation-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 40%, rgba(212, 175, 55, 0.04));
    pointer-events: none;
}

.creation-badge {
    position: relative;
    z-index: 1;
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: #f0d968;
    border: 1px solid #d4af37;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.12em;
    padding: 6px 12px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.creation-card h1 {
    position: relative;
    z-index: 1;
    color: #f3d877;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.creation-card p {
    position: relative;
    z-index: 1;
    color: #c7c7c7;
    margin-bottom: 24px;
    line-height: 1.6;
}

.creation-form {
    position: relative;
    z-index: 1;
}

.creation-field {
    margin-bottom: 20px;
}

.creation-field label {
    color: #f0d968;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.name-input {
    width: 100%;
    background: rgba(10, 14, 39, 0.9);
    border: 1px solid #3d4452;
    border-radius: 10px;
    color: #f5f5f5;
    padding: 14px 16px;
    font-size: 1.05rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.name-input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
    transform: translateY(-1px);
}

.save-name-btn {
    width: 100%;
    margin-top: 6px;
}

.form-message {
    min-height: 24px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.4;
    color: #ff8c6b;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.form-message.show {
    opacity: 1;
}

.form-message.success {
    color: #7ce08a;
}

.form-message.error {
    color: #ff8c6b;
}

.classes-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.class-option {
    position: relative;
}

.class-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.class-option input[type="radio"]:checked + .class-label {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border-color: #d4af37;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.25), inset 0 0 8px rgba(212, 175, 55, 0.1);
}

.class-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(15, 18, 25, 0.7);
    border: 1px solid #3d4452;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.class-label:hover {
    background: rgba(15, 18, 25, 0.95);
    border-color: #d4af37;
}

.class-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.class-info {
    display: flex;
    flex-direction: column;
}

.class-name {
    color: #f0d968;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 4px;
}

.class-description {
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.4;
}

.login-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(26, 31, 58, 0.92), rgba(10, 14, 39, 0.98));
    z-index: 1000;
    padding: 20px;
}

.login-card {
    width: min(100%, 440px);
    background: linear-gradient(135deg, #1a1f3a 0%, #242b3d 100%);
    border: 2px solid #d4af37;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
}

.login-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: #f0d968;
    border: 1px solid #d4af37;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.12em;
    padding: 6px 12px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.login-card h2 {
    color: #d4af37;
    font-size: 32px;
    margin-bottom: 8px;
}

.login-card p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.field label {
    color: #d4af37;
    font-size: 13px;
    font-weight: bold;
}

.field input {
    background: rgba(15, 18, 25, 0.9);
    border: 1px solid #3d4452;
    border-radius: 8px;
    color: #f5f5f5;
    padding: 12px 14px;
    font-size: 16px;
    outline: none;
}

.field input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.18);
}

.primary-btn,
.secondary-btn,
.ghost-btn,
.logout-btn {
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Georgia', serif;
    font-weight: bold;
    transition: all 0.25s ease;
}

.primary-btn {
    width: 100%;
    margin-top: 8px;
    padding: 12px 16px;
    border: none;
    background: linear-gradient(135deg, #d4af37 0%, #f0d968 100%);
    color: #140f07;
}

.secondary-btn {
    width: 100%;
    margin-top: 10px;
    padding: 11px 16px;
    border: 2px solid #d4af37;
    background: transparent;
    color: #d4af37;
}

.ghost-btn {
    width: 100%;
    margin-top: 10px;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: #d7d7d7;
    text-decoration: underline;
}

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

.login-error {
    min-height: 20px;
    margin-top: 12px;
    color: #ff8c6b;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.app-shell {
    min-height: 100vh;
}

.topbar-user {
    position: fixed;
    top: 16px;
    right: 18px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(26, 31, 58, 0.9);
    border: 1px solid #d4af37;
    border-radius: 999px;
    padding: 8px 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.topbar-user span {
    color: #f0d968;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logout-btn {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 6px 12px;
    font-size: 12px;
}

.game-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: min(100%, 1180px);
    max-width: 1180px;
    margin: 0 auto;
    gap: 22px;
    padding: 28px 18px 20px;
    min-height: 100vh;
    position: relative;
}

.game-container::before {
    content: '';
    position: absolute;
    inset: 18px 12px 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    background: rgba(13, 17, 28, 0.18);
    box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.04);
    pointer-events: none;
}

/* Left Panel */
.left-panel {
    position: relative;
    z-index: 1;
    flex: 0 0 58%;
    max-width: 58%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Character Header */
.character-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3142 100%);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #d4af37;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.character-avatar {
    font-size: 64px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #2d3142 0%, #0f1219 100%);
    border: 3px solid #d4af37;
    border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.3);
}

.character-info h1 {
    font-size: 32px;
    color: #d4af37;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 5px;
}

.character-info .level {
    font-size: 18px;
    color: #b0860f;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

/* Card Styling */
.card {
    background: linear-gradient(135deg, #1a1f3a 0%, #242b3d 100%);
    border: 2px solid #3d4452;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #d4af37;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.card h2 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 18px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Stats Card */
.stats-card .stat-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.stat-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.simple-stat-row {
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(15, 18, 25, 0.55);
    border: 1px solid rgba(61, 68, 82, 0.5);
}

.stat-label {
    width: 110px;
    font-size: 14px;
    color: #b0b0b0;
}

.stat-bar {
    flex: 1;
    height: 20px;
    background: linear-gradient(90deg, #0f1219 0%, #1a1f3a 100%);
    border: 1px solid #3d4452;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #f0d968 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.stat-value {
    width: 40px;
    text-align: right;
    color: #d4af37;
    font-weight: bold;
}

/* Experience */
.exp-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exp-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #b0b0b0;
}

.exp-bar {
    height: 25px;
    background: linear-gradient(90deg, #0f1219 0%, #1a1f3a 100%);
    border: 1px solid #3d4452;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.exp-fill {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #7bb8ff 100%);
    box-shadow: 0 0 10px rgba(74, 158, 255, 0.6);
}

/* Vitals */
.vital-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.vital-label {
    width: 70px;
    font-size: 14px;
    color: #b0b0b0;
}

.vital-bar {
    flex: 1;
    height: 18px;
    background: linear-gradient(90deg, #0f1219 0%, #1a1f3a 100%);
    border: 1px solid #3d4452;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.vital-fill {
    display: block;
    height: 100%;
    width: 0;
    transition: width 0.25s ease;
}

#healthFill {
    background: linear-gradient(90deg, #d62828 0%, #ff4d4d 100%);
    box-shadow: 0 0 10px rgba(214, 40, 40, 0.6);
}

#manaFill {
    background: linear-gradient(90deg, #1d4ed8 0%, #60a5fa 100%);
    box-shadow: 0 0 10px rgba(29, 78, 216, 0.6);
}

.vital-value {
    width: 70px;
    text-align: right;
    font-size: 13px;
    color: #d4af37;
}

/* Equipment */
.equipment-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.equipment-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.equipment-slot {
    background: linear-gradient(135deg, #0f1219 0%, #1a1f3a 100%);
    border: 2px solid #3d4452;
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.equipment-slot:hover {
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.main-weapon-slot {
    border-color: rgba(212, 175, 55, 0.9);
}

.offhand-slot {
    border-color: rgba(115, 142, 255, 0.8);
}

.slot-icon {
    font-size: 28px;
    line-height: 1;
}

.equipment-slot p {
    font-size: 12px;
    color: #e0e0e0;
    font-weight: bold;
    margin: 0;
}

.slot-empty {
    display: inline-block;
    font-size: 11px;
    color: #8b8b8b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.rarity {
    display: inline-block;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.rarity.common {
    background: #888;
    color: #fff;
}

.rarity.uncommon {
    background: #00aa00;
    color: #fff;
}

.rarity.rare {
    background: #0066ff;
    color: #fff;
}

.rarity.legendary {
    background: #ffaa00;
    color: #000;
}

/* Inventory */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(8, 64px);
    column-gap: 5px;
    row-gap: 5px;
    justify-content: center;
    align-content: start;
}

.inventory-item,
.inventory-slot-empty {
    position: relative;
    background: linear-gradient(135deg, #0f1219 0%, #1a1f3a 100%);
    border: 2px solid #3d4452;
    border-radius: 8px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.inventory-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.inventory-slot-empty {
    opacity: 0.75;
}

.inventory-item:hover {
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.inventory-item::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(6px);
    background: rgba(10, 14, 39, 0.96);
    color: #f0f0f0;
    border: 1px solid #d4af37;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.6;
    width: 400px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 20;
}

.inventory-item:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.item-icon {
    font-size: 22px;
    line-height: 1;
}

.item-count {
    position: absolute;
    right: 4px;
    bottom: 4px;
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid #d4af37;
    color: #f0d968;
    font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
    padding: 1px 4px;
    line-height: 1.2;
}

/* Gold */
.gold-card {
    background: linear-gradient(135deg, #2d1f0a 0%, #3d2910 100%);
    border: 2px solid #d4af37;
}

.gold-card h2 {
    color: #ffd700;
}

.gold-amount {
    font-size: 32px;
    color: #ffd700;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Right Panel */
.right-panel {
    position: relative;
    z-index: 1;
    flex: 0 0 360px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 5px;
    background: linear-gradient(135deg, #1a1f3a 0%, #242b3d 100%);
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #3d4452;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: linear-gradient(135deg, #0f1219 0%, #1a1f3a 100%);
    border: 2px solid #3d4452;
    color: #b0b0b0;
    cursor: pointer;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.tab-btn.active {
    background: linear-gradient(135deg, #3d4452 0%, #4d5562 100%);
    border-color: #d4af37;
    color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Tab Content */
.tab-content {
    flex: 1;
    background: linear-gradient(135deg, #1a1f3a 0%, #242b3d 100%);
    border: 2px solid #3d4452;
    border-radius: 8px;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-content h2 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 18px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Quest */
.quest {
    background: linear-gradient(135deg, #0f1219 0%, #1a1f3a 100%);
    border: 2px solid #3d4452;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.quest:hover {
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.quest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.quest-header h3 {
    color: #d4af37;
    font-size: 15px;
}

.quest-level {
    background: #3d4452;
    color: #d4af37;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.quest-desc {
    font-size: 13px;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.quest-progress {
    margin-bottom: 10px;
}

.progress-bar {
    height: 18px;
    background: linear-gradient(90deg, #0f1219 0%, #1a1f3a 100%);
    border: 1px solid #3d4452;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff8844 0%, #ffaa66 100%);
    box-shadow: 0 0 8px rgba(255, 136, 68, 0.6);
}

.progress-text {
    font-size: 12px;
    color: #b0b0b0;
}

.quest-reward {
    background: #1a2530;
    padding: 8px;
    border-radius: 4px;
    border-left: 3px solid #d4af37;
    font-size: 12px;
    color: #d4af37;
    margin-top: 10px;
}

/* Buttons */
.claim-btn, .buy-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #f0d968 100%);
    border: none;
    color: #000;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
    margin-top: 10px;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

.claim-btn:hover, .buy-btn:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: scale(1.02);
}

/* Shop */
.shop-item {
    background: linear-gradient(135deg, #0f1219 0%, #1a1f3a 100%);
    border: 2px solid #3d4452;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.shop-item:hover {
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.shop-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.shop-item-name {
    color: #d4af37;
    font-weight: bold;
    font-size: 14px;
}

.shop-price {
    color: #ffd700;
    font-weight: bold;
    font-size: 14px;
}

.shop-item-desc {
    font-size: 12px;
    color: #b0b0b0;
    margin-bottom: 10px;
}

/* Skills */
.skill {
    background: linear-gradient(135deg, #0f1219 0%, #1a1f3a 100%);
    border: 2px solid #3d4452;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.skill:hover {
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.skill h3 {
    color: #d4af37;
    font-size: 15px;
    margin-bottom: 5px;
}

.skill-level {
    color: #ffd700;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
}

.skill-desc {
    font-size: 12px;
    color: #b0b0b0;
    margin-bottom: 8px;
}

.skill-cooldown {
    font-size: 11px;
    color: #ff8844;
    font-weight: bold;
}

/* Achievements */
.achievement {
    display: flex;
    gap: 12px;
    background: linear-gradient(135deg, #0f1219 0%, #1a1f3a 100%);
    border: 2px solid #3d4452;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.achievement.unlocked {
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.achievement.locked {
    opacity: 0.5;
    filter: grayscale(100%);
}

.achievement-icon {
    font-size: 32px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-info h3 {
    color: #d4af37;
    font-size: 14px;
    margin-bottom: 3px;
}

.achievement-info p {
    font-size: 12px;
    color: #b0b0b0;
}

/* Scrollbar */
.tab-content::-webkit-scrollbar {
    width: 8px;
}

.tab-content::-webkit-scrollbar-track {
    background: #0f1219;
    border-radius: 4px;
}

.tab-content::-webkit-scrollbar-thumb {
    background: #3d4452;
    border-radius: 4px;
}

.tab-content::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

/* Responsive */
@media (max-width: 1024px) {
    .game-container {
        flex-direction: column;
        align-items: center;
        width: min(100%, 760px);
    }

    .left-panel,
    .right-panel {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
}
