.player-profile-page {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    color: #e0f0ff;
}

.profile-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    /* ← dein gewünschter ABSTAND zwischen Skin und Info */
    justify-content: center;
    align-items: flex-start;
}

.skin-column {
    flex: 1 1 420px;
    text-align: center;
}

.skin-column canvas {
    border: 3px solid #ffffff88;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(68, 255, 170, 0.25);
    background: rgba(0, 0, 0, 0.6);
}

.info-column {
    flex: 1 1 500px;
    min-width: 380px;
}



.stats-list {
    font-size: 1.2em;
    line-height: 1.7;
}

.stat-row {
    margin: 12px 0;
    display: flex;
    justify-content: space-between;
}

.label {
    color: #88ffdd;
    font-weight: bold;
    min-width: 140px;
}

.controls-bar {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.controls-bar input {
    flex: 1 1 300px;
    max-width: 380px;
    padding: 14px 20px;
    font-size: 1.1em;
    border: 2px solid #d4d4d4;
    border-radius: 5px;
    background: #000000;
    color: white;
}

/*
.controls-bar button {
    padding: 14px 32px;
    font-size: 1.1em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    min-width: 140px;
}

#load-btn {
    background: #44ffaa;
    color: #0a1a2e;
    font-weight: bold;
}
    
#home-btn {
    background: #555577;
    color: white;
} */

@media (max-width: 900px) {
    .profile-main {
        flex-direction: column;
        gap: 30px;
    }

    .skin-column canvas {
        width: 100% !important;
        height: auto !important;
    }
}

.info-tafel {
    background: rgba(0, 0, 0, 0.65);
    /* schwarz + 65% Deckkraft → leicht transparent */
    backdrop-filter: blur(8px);
    /* leichter Blur-Effekt (schön mit Panorama-Hintergrund) */
    border: 1px solid rgba(100, 255, 180, 0.25);
    /* dezenter grüner Rand, passend zu Minecraft-Style */
    border-radius: 14px;
    padding: 28px 32px;
    min-height: 380px;
    /* damit es nicht zu klein wird, wenn wenig Inhalt */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    color: #f0f8ff;
    /* helles Text für guten Kontrast */
}

.info-tafel h2 {
    margin: 0 0 20px 0;
    font-size: 2.4em;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    word-break: break-word;
}

.stats-content {
    font-size: 1.15em;
    line-height: 1.8;
}

.stats-content .stat-row {
    margin: 14px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stats-content .label {
    color: #88ffdd;
    /* helles Türkis/Grün für Labels */
    font-weight: 600;
    min-width: 130px;
    flex-shrink: 0;
}

.stats-content .value {
    color: #ffffff;
    text-align: right;
    flex-grow: 1;
}

/* Responsiv: Auf schmalen Bildschirmen stacken */
@media (max-width: 950px) {
    .profile-main {
        flex-direction: column;
        gap: 30px;
    }

    .info-tafel {
        min-height: auto;
        padding: 24px 20px;
    }

    .skin-column canvas {
        width: 100% !important;
        height: auto !important;
    }
}