.forum-header-wrapper {
    margin-bottom: 0;
}

.xp-panel-container {
    margin-bottom: 15px;
}

.xp-panel-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.xp-level {
    color: #d4af37;
    font-weight: bold;
}

.xp-percent {
    color: #aaa;
}

.xp-panel-details {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 0.85em;
    color: #aaa;
}

.xp-remaining {
    color: #d4af37;
}

.xp-bar-bg {
    height: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.xp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 6px;
    transition: width 0.3s ease;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.arsenal-wrapper {
    position: relative;
    background: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
    margin-top: 0;
    contain: layout style;
    isolation: isolate;
}

.arsenal-bg {
    position: absolute;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
    max-width: 100%;
    height: 1000px;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
    clip-path: url(#hero-mask);
    contain: strict;
    will-change: transform;
    backface-visibility: hidden;
}

.arsenal-container {
    position: relative;
    z-index: 1;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Override Bootstrap .container max-width for the Arsenal character layout.
   Otherwise the center avatar gets squeezed on large screens. */
.arsenal-container.container {
    max-width: 1400px;
}

/* Removed .arsenal-top-bar styles as they are replaced by server-page-header */

.char-stats-summary {
    display: flex;
    gap: 15px;
}

.stat-pill {
    background: rgba(0,0,0,0.5);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-pill.health { color: #ff5555; border-color: #522; }
.stat-pill.stamina { color: #ffff55; border-color: #552; }
.stat-pill.eitr { color: #aa55ff; border-color: #425; }

/* Buffs Container */
.buffs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.buff-item {
    position: relative;
    width: 48px;
    height: 48px;
}

.buff-icon-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
}

.buff-icon-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    cursor: default;
}

.buff-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buff-timer-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.buff-timer-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.buff-timer-bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.3);
    stroke-width: 2.5;
}

.buff-timer-fill {
    fill: none;
    stroke: rgba(255, 215, 0, 0.8);
    stroke-width: 2.5;
    stroke-linecap: round;
    animation: buffTimerPulse 2s ease-in-out infinite;
}


@keyframes buffTimerPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.arsenal-main-view {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 60px;
    min-height: 600px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    contain: layout style;
}

.gear-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 50px;
    width: 300px;
    contain: layout style;
    will-change: transform;
    backface-visibility: hidden;
}

.gear-column:first-child {
    margin-right: 0;
}

.gear-column:last-child {
    margin-left: 0;
}

.avatar-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 400px;
    contain: layout style;
}

.avatar-stage {
    position: relative;
    width: 100%;
    height: 750px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    margin-top: -100px;
    contain: layout paint;
}

.char-model {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.8));
    margin-top: -600px;
    transform: scale(0.9) translateZ(0);
    transform-origin: bottom center;
    will-change: transform;
    backface-visibility: hidden;
    contain: paint;
}

.char-model:hover {
    transform: scale(0.92) translateZ(0);
}

.bottom-gear-bar {
    display: flex;
    gap: 120px;
    margin-top: -290px;
    z-index: 3;
    position: relative;
    contain: layout style;
}

/* WoW Style Slots */
.gear-slot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    background: rgba(0,0,0,0.7);
    border-radius: 4px;
    transition: background 0.2s;
}

.gear-slot:hover {
    background: rgba(0,0,0,0.85);
    cursor: default;
}

.gear-slot.left {
    flex-direction: row;
    text-align: left;
}

.gear-slot.right {
    flex-direction: row-reverse;
    text-align: right;
}

.gear-slot.bottom {
    flex-direction: column;
    text-align: center;
}

.gear-slot.bottom .item-type {
    display: none;
}

.gear-slot.bottom:first-child {
    transform: translate(-40px, 60px);
}

.gear-slot.bottom:last-child {
    transform: translate(40px, 60px);
}

.slot-icon {
    width: 56px;
    height: 56px;
    border: 1px solid #444;
    border-radius: 4px;
    position: relative;
    background: #111;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

.gear-slot.filled-slot .slot-icon {
    border-color: #666;
    background: #555;
}

.gear-slot.quality-1 .slot-icon { border-color: #9d9d9d; } /* Common */
.gear-slot.quality-2 .slot-icon { border-color: #1eff00; box-shadow: 0 0 5px rgba(30, 255, 0, 0.2); } /* Uncommon */
.gear-slot.quality-3 .slot-icon { border-color: #0070dd; box-shadow: 0 0 8px rgba(0, 112, 221, 0.3); } /* Rare */
.gear-slot.quality-4 .slot-icon { border-color: #a335ee; box-shadow: 0 0 10px rgba(163, 53, 238, 0.4); } /* Epic */

.slot-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.item-quality {
    position: absolute;
    bottom: 2px;
    right: 2px;
    font-size: 10px;
    background: rgba(0,0,0,0.7);
    padding: 0 3px;
    border-radius: 2px;
    color: #fff;
}

.slot-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-name {
    font-weight: bold;
    font-size: 0.95em;
    color: #a335ee; /* Epic default for style */
}

.gear-slot.quality-1 .item-name { color: #fff; }
.gear-slot.quality-2 .item-name { color: #1eff00; }
.gear-slot.quality-3 .item-name { color: #0070dd; }
.gear-slot.quality-4 .item-name { color: #a335ee; }

.item-type {
    font-size: 0.8em;
    color: #888;
}

.gear-slot.empty-slot {
    opacity: 0.7;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.gear-slot.empty-slot:hover {
    opacity: 1;
    background: rgba(80, 80, 80, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.gear-slot.empty-slot .slot-icon {
    border-style: dashed;
    border-color: #555;
    background: rgba(30, 30, 30, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gear-slot.empty-slot:hover .slot-icon {
    border-color: #888;
    background: rgba(50, 50, 50, 0.8);
}

.empty-slot-icon {
    width: 32px;
    height: 32px;
    color: #666;
    opacity: 0.5;
}

.gear-slot.empty-slot:hover .empty-slot-icon {
    color: #999;
    opacity: 0.8;
}

.empty-icon {
    position: relative;
}

.empty-icon .item-tooltip {
    position: absolute;
    inset: 0;
    cursor: help;
}

.empty-label {
    color: #888 !important;
    font-style: italic;
    font-weight: normal !important;
}

.gear-slot.empty-slot:hover .empty-label {
    color: #aaa !important;
}

.gear-slot.empty-slot .item-type {
    color: #666;
}

.gear-slot.empty-slot::after {
    content: none;
}

/* Stats Panel */
.stats-panel {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid #333;
    padding: 20px;
    border-radius: 4px;
    width: 100%;
    contain: layout style paint;
}

.stats-panel h3 {
    margin: 0 0 15px 0;
    font-size: 1.1em;
    color: #d4af37;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 1em;
}

.stat-row.small {
    font-size: 0.9em;
}

.stat-label {
    color: #aaa;
}

.stat-val {
    color: #fff;
    font-weight: bold;
}

.stat-val.health { color: #1eff00; }
.stat-val.stamina { color: #ffd100; }
.stat-val.eitr { color: #a335ee; }

.stat-divider {
    height: 1px;
    background: #333;
    margin: 15px 0;
}

@media (max-width: 1200px) {
    .arsenal-wrapper {
        padding: 0;
        position: relative;
        contain: layout style;
    }
    
    .arsenal-bg {
        height: 700px !important;
        contain: strict;
    }
    
    .arsenal-container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .arsenal-main-view {
        flex-direction: column;
        gap: 20px;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        min-height: auto;
        position: relative;
        z-index: 1;
        contain: layout style;
    }
    
    .avatar-column {
        padding: 0 10px;
        position: absolute;
        top: -100px;
        left: 0;
        right: 0;
        z-index: 2;
        pointer-events: none;
        width: 100%;
        order: 0;
        contain: layout;
    }
    
    .avatar-column * {
        pointer-events: auto;
    }
    
    .avatar-stage {
        height: 500px;
        margin-top: 0;
        contain: layout paint;
    }
    
    .char-model {
        margin-top: -100px;
        transform: scale(0.9) translateZ(0);
    }
    
    .bottom-gear-bar {
        gap: 60px;
        margin-top: -200px;
        contain: layout style;
    }
    
    .gear-column {
        width: 100%;
        padding: 0 10px;
        margin: 0 !important;
        padding-top: 400px;
        position: relative;
        z-index: 1;
        contain: layout style;
    }
    
    .gear-column:first-child {
        padding-top: 450px;
    }
    
    .gear-column:last-child {
        padding-top: 0;
    }
    
    .gear-column:first-child,
    .gear-column:last-child {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .stat-pill {
        font-size: 0.85em;
        padding: 6px 12px;
    }
    
    .forum-header-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 1024px) {
    .arsenal-wrapper {
        padding: 0;
        position: relative;
        contain: layout style;
    }
    
    .arsenal-bg {
        height: 700px !important;
        contain: strict;
    }
    
    .arsenal-container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .arsenal-main-view {
        flex-direction: column;
        gap: 20px;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        min-height: auto;
        position: relative;
        z-index: 1;
        contain: layout style;
    }
    
    .avatar-column {
        padding: 0 10px;
        position: absolute;
        top: -100px;
        left: 0;
        right: 0;
        z-index: 2;
        pointer-events: none;
        width: 100%;
        order: 0;
        contain: layout;
    }
    
    .avatar-column * {
        pointer-events: auto;
    }
    
    .avatar-stage {
        height: 500px;
        margin-top: 0;
        contain: layout paint;
    }
    
    .char-model {
        margin-top: -100px;
        transform: scale(0.9) translateZ(0);
    }
    
    .bottom-gear-bar {
        gap: 60px;
        margin-top: -200px;
        contain: layout style;
    }
    
    .gear-column {
        width: 100%;
        padding: 0 10px;
        margin: 0 !important;
        padding-top: 400px;
        position: relative;
        z-index: 1;
        contain: layout style;
    }
    
    .gear-column:first-child {
        padding-top: 450px;
    }
    
    .gear-column:last-child {
        padding-top: 0;
    }
    
    .gear-column:first-child,
    .gear-column:last-child {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .stat-pill {
        font-size: 0.85em;
        padding: 6px 12px;
    }
    
    .forum-header-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Details Section (Skills & Inventory) */
.arsenal-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 20px;
    padding-bottom: 60px;
    max-width: 1400px;
    width: 100%;
    contain: layout style;
}

.details-section {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    border-radius: 4px;
    padding: 20px;
}

.details-section h3 {
    margin-top: 0;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #d4af37;
    text-transform: uppercase;
    font-size: 1.1em;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.skill-row {
    margin-bottom: 5px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3px;
    font-size: 0.9em;
    color: #ccc;
}

.skill-bar-bg {
    height: 4px;
    background: #222;
    border-radius: 2px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    background: #d4af37;
    border-radius: 2px;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
    gap: 8px;
}

.inv-slot {
    width: 48px;
    height: 48px;
    background: #555;
    border: 1px solid #666;
    border-radius: 4px;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

.inv-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.item-stack {
    position: absolute;
    bottom: 1px;
    right: 2px;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 0 #000;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 1.5em;
    color: #d4af37;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.85em;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
}

/* Tooltip override for arsenal items */
.item-tooltip {
    position: relative;
    cursor: default;
}

/* disable pseudo-tooltip if any global styles exist */
.item-tooltip::after {
    content: none !important;
    display: none !important;
}

.custom-tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 2000;
    border: 1px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    max-width: 320px;
    text-align: left;
    white-space: normal;
    display: none;
}

.custom-tooltip br {
    content: "";
    display: block;
    margin: 4px 0;
}

@media (max-width: 900px) {
    .arsenal-details {
        grid-template-columns: 1fr;
        margin-top: -50px;
    }
}

/* Player Name Row with Boss Kills */
.player-name-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.player-name-row h1 {
    margin: 0;
}

/* Boss Kills Inline neben Spielername */
.boss-kills-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.boss-kills-label {
    font-family: 'norsebold', sans-serif;
    font-size: 0.9em;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.boss-trophies-inline {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
}

.boss-trophy-inline {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.boss-trophy-inline.defeated {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.15);
}

.boss-trophy-inline.defeated:hover {
    border-color: rgba(212, 175, 55, 0.8);
    background: rgba(212, 175, 55, 0.25);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    z-index: 10;
}

.boss-trophy-inline.locked {
    opacity: 0.35;
}

.trophy-icon-wrapper-inline {
    position: relative;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trophy-icon-inline {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.trophy-icon-inline.grayscale {
    filter: grayscale(100%) brightness(0.4);
}

.trophy-placeholder-inline {
    font-size: 20px;
    color: #444;
}

.boss-trophy-inline.defeated .trophy-placeholder-inline {
    color: #d4af37;
}

.kill-count-inline {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: linear-gradient(135deg, #d4af37, #b8942e);
    color: #000;
    font-size: 9px;
    font-weight: bold;
    min-width: 14px;
    height: 14px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Boss Tooltip - Nach unten ausgerichtet */
.boss-tooltip-down {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 20, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 10px;
    padding: 0;
    min-width: 220px;
    max-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.boss-trophy-inline.defeated:hover .boss-tooltip-down {
    opacity: 1;
    visibility: visible;
}

.boss-tooltip-down::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: rgba(212, 175, 55, 0.5);
}

.tooltip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px 10px 0 0;
}

.tooltip-header strong {
    color: #d4af37;
    font-size: 1em;
}

.tooltip-header .total-kills {
    background: rgba(212, 175, 55, 0.3);
    color: #fff;
    font-size: 0.8em;
    padding: 2px 8px;
    border-radius: 10px;
}

.tooltip-stats {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip-stats .stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 0.85em;
}

.tooltip-stats .stat-row span:first-child {
    color: #aaa;
}

.tooltip-stats .stat-row span:first-child i {
    width: 16px;
    color: #d4af37;
    margin-right: 6px;
}

.tooltip-stats .value {
    color: #fff;
    font-weight: 600;
}

.tooltip-recent {
    padding: 8px 12px 12px;
}

.recent-header {
    font-size: 0.8em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.recent-kill {
    padding: 6px 8px;
    margin-bottom: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    border-left: 2px solid rgba(212, 175, 55, 0.5);
}

.recent-kill:last-child {
    margin-bottom: 0;
}

.kill-date {
    font-size: 0.75em;
    color: #888;
    margin-bottom: 4px;
}

.kill-stats {
    display: flex;
    gap: 10px;
    font-size: 0.8em;
}

.kill-stats span {
    color: #ccc;
}

.kill-stats i {
    color: #d4af37;
    margin-right: 3px;
}

/* Responsive für Boss Kills Inline */
@media (max-width: 768px) {
    .player-name-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .boss-kills-inline {
        gap: 8px;
    }
    
    .boss-kills-label {
        font-size: 0.85em;
    }
    
    .boss-trophies-inline {
        gap: 4px;
    }
    
    .boss-trophy-inline {
        padding: 2px;
    }
    
    .trophy-icon-wrapper-inline {
        width: 24px;
        height: 24px;
    }
    
    .trophy-icon-inline {
        width: 24px;
        height: 24px;
    }
    
    .kill-count-inline {
        font-size: 8px;
        min-width: 12px;
        height: 12px;
        bottom: -2px;
        right: -2px;
    }
    
    .boss-tooltip-down {
        min-width: 180px;
        max-width: 250px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Anpassung für Tooltips am Rand */
    .boss-trophy-inline:first-child .boss-tooltip-down {
        left: 0;
        transform: none;
    }
    
    .boss-trophy-inline:last-child .boss-tooltip-down {
        left: auto;
        right: 0;
        transform: none;
    }
}

@media (max-width: 480px) {
    .player-name-row {
        gap: 8px;
    }
    
    .boss-kills-inline {
        gap: 6px;
    }
    
    .boss-kills-label {
        font-size: 0.8em;
    }
    
    .boss-trophies-inline {
        gap: 3px;
    }
    
    .trophy-icon-wrapper-inline {
        width: 22px;
        height: 22px;
    }
    
    .trophy-icon-inline {
        width: 22px;
        height: 22px;
    }
    
    .kill-count-inline {
        font-size: 7px;
        min-width: 12px;
        height: 12px;
    }
}
