﻿.header-user-badge:hover {
    background: rgba(255, 215, 0, 0.1) !important;
    border-color: var(--gold-main) !important;
    transform: translateY(-1px);
}
/* --- PREMIUM PROFILE DESIGN --- */
/* --- ULTRA MODERN PROFILE DESIGN --- */
.profile-container-ultra {
    background: rgba(10, 15, 20, 0.85);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 50px auto;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    position: relative;
}

/* Header & Banner */
.profile-hero-section {
    position: relative;
    margin-bottom: 30px;
}

.profile-cover-image {
    height: 160px;
    background: linear-gradient(135deg, #0d1020 0%, #080a14 100%);
    width: 100%;
    position: relative;
}
.profile-cover-image::after {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(0,255,255,0.06) 0%, transparent 60%);
}

.profile-identity-wrapper {
    display: flex;
    align-items: flex-end;
    padding: 0 40px;
    margin-top: -60px;
    gap: 25px;
    position: relative;
}

/* Avatar Styling */
.profile-avatar-outer {
    position: relative;
    width: 130px; height: 130px;
    border-radius: 30px;
    background: #0a0a0a;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

.profile-main-avatar {
    width: 100%; height: 100%;
    border-radius: 25px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.profile-rank-tag {
    position: absolute;
    bottom: -10px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.7rem; font-weight: 900;
    padding: 4px 12px;
    border-radius: 12px;
    border: 2px solid #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Text Content */
.profile-text-content {
    flex: 1;
    padding-bottom: 10px;
}

.profile-text-content h1 {
    font-size: 2rem;
    margin: 0;
    color: #fff;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.profile-text-content p {
    color: #88aaaa;
    font-size: 0.95rem;
    margin: 5px 0 10px 0;
}

.profile-meta-tags { display: flex; gap: 10px; }
.profile-meta-tags span {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 6px;
    color: #ccc;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Edit Button */
.edit-trigger-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
    margin-bottom: 15px;
}
.edit-trigger-btn:hover { background: rgba(255,255,255,0.1); border-color: var(--gold-main); }

/* Stats Row */
.profile-stats-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 0 40px;
    margin-bottom: 40px;
}

.p-stat-card {
    background: rgba(0,0,0,0.3);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: 0.3s;
}
.p-stat-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.03); }

.p-stat-icon { font-size: 1.5rem; }
.p-stat-info { display: flex; flex-direction: column; }
.p-stat-label { font-size: 0.7rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }
.p-stat-val { font-size: 1.1rem; font-weight: 800; color: #fff; }

.highlight-green .p-stat-val { color: var(--accent-green); }
.highlight-gold .p-stat-val { color: var(--gold-main); }
.clickable { cursor: pointer; border-color: rgba(255,215,0,0.2); }

/* Layout Split */
.profile-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 0 40px 40px 40px;
}

.profile-section-box {
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.03);
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
}
.box-header h3 { margin: 0; font-size: 1rem; color: #fff; }

.badge-pill {
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #888;
}

/* Affiliate Box */
.affiliate-box { background: linear-gradient(145deg, rgba(255,215,0,0.03), rgba(0,0,0,0.3)); border-color: rgba(255,215,0,0.1); }
.copy-link-group { display: flex; gap: 8px; margin-top: 15px; }
.copy-link-group input { 
    flex: 1; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 10px; border-radius: 8px; 
}
.copy-link-group button { 
    background: var(--gold-gradient); border:none; color:#000; font-weight:bold; padding: 0 15px; border-radius: 8px; cursor: pointer; 
}

/* Security Box */
.pwd-change-group { display: flex; gap: 8px; margin-bottom: 15px; }
.pwd-change-group input {
    flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05); color: #fff; padding: 10px; border-radius: 8px;
}
.pwd-change-group button {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-weight:bold; padding: 0 15px; border-radius: 8px; cursor: pointer; transition: 0.3s;
}
.pwd-change-group button:hover { background: #fff; color: #000; }

.account-actions { display: flex; gap: 10px; margin-top: 20px; }
.action-link {
    flex: 1; padding: 10px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: 0.3s;
    background: transparent; border: 1px solid;
}
.action-link.logout { border-color: #555; color: #aaa; }
.action-link.logout:hover { border-color: #fff; color: #fff; }
.action-link.delete { border-color: rgba(255, 0, 85, 0.3); color: #ff2d55; }
.action-link.delete:hover { background: rgba(255,0,85,0.1); }

/* Edit Panel */
.profile-edit-panel {
    background: #0d0d0d;
    padding: 20px;
    border-radius: 15px;
    margin: 0 40px 30px 40px;
    border: 1px dashed rgba(255,255,255,0.1);
}
.input-split { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.input-wrapper label { font-size: 0.75rem; color: #666; display: block; margin-bottom: 5px; }
.input-wrapper input { width: 100%; background: #1a1a1a; border: 1px solid #333; color: #fff; padding: 10px; border-radius: 8px; }

/* Mobile Optimierung */
@media (max-width: 768px) {
    .profile-container-ultra { width: 100%; border-radius: 0; background: transparent; box-shadow: none; border: none; margin-bottom: 80px; }
    .profile-hero-section { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .profile-identity-wrapper { flex-direction: column; align-items: center; margin-top: -80px; padding: 0 20px; width: 100%; }
    .profile-text-content { padding-bottom: 0; }
    .profile-stats-row { grid-template-columns: 1fr 1fr; padding: 0 15px; gap: 10px; }
    .profile-stats-row .p-stat-card:last-child { grid-column: 1 / -1; }
    .profile-split-layout { grid-template-columns: 1fr; padding: 0 15px 20px 15px; }
    .input-split { grid-template-columns: 1fr; }
    .profile-edit-panel { margin: 0 15px 25px 15px; }

    /* New profile - mobile */
    #profile-view > div { padding: 0 10px 100px !important; }
    #profile-view > div > div:first-child { border-radius: 16px !important; }
    #profile-view > div > div:first-child > div:first-child { height: 90px !important; }
    #profile-view > div > div:first-child > div:last-child { padding: 0 14px 18px !important; margin-top: -42px !important; }
    #profile-view #profile-img-display { width: 80px !important; height: 80px !important; border-radius: 14px !important; }
    #profile-view #profile-username { font-size: 1.15rem !important; }
    #profile-view .edit-trigger-btn { font-size: 0.72rem !important; padding: 7px 12px !important; }
    #profile-stats-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
    #profile-stats-grid > div { padding: 12px !important; gap: 10px !important; }
    #profile-stats-grid > div > div:first-child { width: 34px !important; height: 34px !important; min-width: 34px !important; font-size: 0.95rem !important; }
    #profile-stats-grid > div > div:last-child > div:last-child { font-size: 1.05rem !important; }
    #profile-cols-grid { grid-template-columns: 1fr !important; }
    #profile-view #profile-bio { color: #9ab0ba !important; }
}
/* ═══════════════════════════════════════
   PROFILE VIEW — PREMIUM REDESIGN
   ═══════════════════════════════════════ */
.pv-root { max-width: 980px; margin: 0 auto; padding: 0 16px 100px; }
#profile-view { padding: 0; }

/* ── HERO ── */
.pv-hero {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
}
.pv-hero-banner {
    height: 210px;
    background: #030610;
    position: relative;
    overflow: hidden;
}
.pv-hero-banner::before {
    content: '';
    position: absolute; inset: -20%;
    background:
        radial-gradient(ellipse at 20% 60%, rgba(0,220,255,0.28) 0%, transparent 45%),
        radial-gradient(ellipse at 75% 25%, rgba(160,0,255,0.22) 0%, transparent 45%),
        radial-gradient(ellipse at 55% 85%, rgba(0,80,255,0.18) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 70%, rgba(255,170,0,0.1) 0%, transparent 38%);
    animation: auroraShift 10s ease-in-out infinite;
}
.pv-hero-banner::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(3,6,16,0.9) 100%);
}
/* Decorative grid lines on banner */
.pv-hero-banner-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 1;
}
.pv-hero-body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 0 28px 26px;
    margin-top: -62px;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, transparent, rgba(8,10,20,0.95) 100%);
}
.pv-hero-left { display: flex; align-items: flex-end; gap: 20px; flex: 1; min-width: 0; }
.pv-hero-meta { padding-bottom: 6px; min-width: 0; flex: 1; }
.pv-hero-name-row { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
#profile-username {
    font-size: 1.75rem; font-weight: 900; color: #fff;
    margin: 0; letter-spacing: -0.8px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    text-shadow: 0 0 40px rgba(255,255,255,0.2);
}
.pv-verified-dot {
    width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(135deg, #00c8ff, #0077ff);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; box-shadow: 0 0 14px rgba(0,200,255,0.5);
}
#profile-bio {
    color: rgba(160,200,220,0.6);
    font-size: 0.85rem; margin: 0 0 12px; font-style: italic;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.pv-hero-actions { display: flex; gap: 8px; align-items: flex-start; flex-shrink: 0; padding-top: 10px; }
.pv-hbtn {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem; font-weight: 700;
    padding: 10px 16px; border-radius: 12px;
    cursor: pointer; display: flex; align-items: center; gap: 6px;
    transition: all 0.2s; font-family: inherit; white-space: nowrap;
    backdrop-filter: blur(8px);
}
.pv-hbtn:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.26); color: #fff; transform: translateY(-1px); }
.pv-hbtn--primary {
    background: linear-gradient(135deg, rgba(0,200,255,0.18), rgba(0,100,220,0.14));
    border-color: rgba(0,200,255,0.4); color: #00d4ff;
    box-shadow: 0 4px 18px rgba(0,200,255,0.12);
}
.pv-hbtn--primary:hover { background: linear-gradient(135deg, rgba(0,200,255,0.28), rgba(0,100,220,0.22)); box-shadow: 0 6px 24px rgba(0,200,255,0.2); }
.pv-hbtn--keys { border-color: rgba(16,185,129,0.35); color: #10e890; background: rgba(16,185,129,0.1); box-shadow: 0 4px 18px rgba(16,185,129,0.1); }

/* ── AVATAR ── */
.pv-avatar-wrap {
    position: relative; flex-shrink: 0;
}
.pv-avatar-wrap::before {
    content: '';
    position: absolute; inset: -4px;
    border-radius: 26px;
    background: linear-gradient(135deg, #00c8ff 0%, #7c3aed 33%, #d4af37 66%, #00c8ff 100%);
    background-size: 300% 300%;
    animation: avatarGradientSpin 3.5s linear infinite;
    z-index: 0;
}
.pv-avatar-wrap::after {
    content: '';
    position: absolute; inset: -12px;
    border-radius: 32px;
    background: radial-gradient(ellipse, rgba(0,200,255,0.25) 0%, transparent 70%);
    z-index: -1;
    animation: avatarPulse 3s ease-in-out infinite;
}
@keyframes auroraShift {
    0%   { transform: translateX(-15%) rotate(-5deg) scale(1.2); }
    50%  { transform: translateX(10%) rotate(5deg) scale(1.35); }
    100% { transform: translateX(-15%) rotate(-5deg) scale(1.2); }
}
@keyframes avatarGradientSpin {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes avatarPulse {
    0%,100% { opacity: 0.5; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}
#profile-img-display {
    position: relative; z-index: 1;
    width: 120px; height: 120px;
    border-radius: 22px;
    object-fit: cover;
    border: 3px solid #080a14;
    display: block;
    box-shadow: 0 8px 30px rgba(0,0,0,0.8);
}
#profile-rank-display {
    position: absolute; bottom: -11px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4af37, #f5e17a, #d4af37);
    color: #000; font-size: 0.56rem; font-weight: 900;
    padding: 4px 11px; border-radius: 10px; white-space: nowrap;
    box-shadow: 0 3px 12px rgba(212,175,55,0.5); z-index: 2;
    letter-spacing: 0.8px;
}

/* ── TAGS ── */
.pv-tags { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.pv-tag { font-size: 0.68rem; padding: 5px 11px; border-radius: 9px; font-weight: 700; display: flex; align-items: center; gap: 5px; }
.pv-tag-since { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); color: #777; }
.pv-tag-discord { background: rgba(88,101,242,0.12); border: 1px solid rgba(88,101,242,0.3); color: #7289da; cursor: pointer; transition: background 0.2s; }
.pv-tag-discord:hover { background: rgba(88,101,242,0.22); }

/* ── STATS GRID ── */
.pv-stats-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
.pv-chip {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; padding: 18px 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    cursor: default;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative; overflow: hidden;
    text-align: center;
}
.pv-chip::before {
    content: '';
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 0.25s;
}
.pv-chip:hover { transform: translateY(-4px); }
.pv-chip-ico {
    width: 44px; height: 44px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
    position: relative; z-index: 1;
}
.pv-chip-v { font-size: 1.1rem; font-weight: 900; color: #fff; line-height: 1.1; position: relative; z-index: 1; }
.pv-chip-l { font-size: 0.58rem; color: rgba(255,255,255,0.32); text-transform: uppercase; letter-spacing: 1.3px; font-weight: 700; margin-top: 1px; position: relative; z-index: 1; }

.pv-chip--green {
    border-color: rgba(46,204,113,0.2);
    box-shadow: 0 4px 24px rgba(46,204,113,0.08), inset 0 0 30px rgba(46,204,113,0.04);
}
.pv-chip--green:hover { border-color: rgba(46,204,113,0.4); box-shadow: 0 8px 32px rgba(46,204,113,0.18); }
.pv-chip--green .pv-chip-ico { background: rgba(46,204,113,0.15); box-shadow: 0 0 18px rgba(46,204,113,0.2); color: #2ecc71; }
.pv-chip--green .pv-chip-v { color: #2ecc71; text-shadow: 0 0 20px rgba(46,204,113,0.4); }

.pv-chip--gold {
    border-color: rgba(255,200,0,0.2);
    box-shadow: 0 4px 24px rgba(255,200,0,0.07), inset 0 0 30px rgba(255,200,0,0.03);
}
.pv-chip--gold:hover { border-color: rgba(255,200,0,0.4); box-shadow: 0 8px 32px rgba(255,200,0,0.15); }
.pv-chip--gold .pv-chip-ico { background: rgba(255,200,0,0.12); box-shadow: 0 0 18px rgba(255,200,0,0.18); color: #ffd700; }
.pv-chip--gold .pv-chip-v { color: #ffe033; text-shadow: 0 0 20px rgba(255,200,0,0.4); }

.pv-chip--blue {
    border-color: rgba(0,200,255,0.2);
    box-shadow: 0 4px 24px rgba(0,200,255,0.07), inset 0 0 30px rgba(0,200,255,0.03);
}
.pv-chip--blue:hover { border-color: rgba(0,200,255,0.4); box-shadow: 0 8px 32px rgba(0,200,255,0.16); }
.pv-chip--blue .pv-chip-ico { background: rgba(0,200,255,0.12); box-shadow: 0 0 18px rgba(0,200,255,0.2); }
.pv-chip--blue .pv-chip-v { color: #00e0ff; text-shadow: 0 0 20px rgba(0,200,255,0.4); }

.pv-chip--red {
    border-color: rgba(255,60,100,0.2);
    box-shadow: 0 4px 24px rgba(255,60,100,0.07), inset 0 0 30px rgba(255,60,100,0.03);
}
.pv-chip--red:hover { border-color: rgba(255,60,100,0.4); box-shadow: 0 8px 32px rgba(255,60,100,0.15); }
.pv-chip--red .pv-chip-ico { background: rgba(255,60,100,0.12); box-shadow: 0 0 18px rgba(255,60,100,0.18); color: #ff4466; }
.pv-chip--red .pv-chip-v { color: #ff6b88; text-shadow: 0 0 20px rgba(255,60,100,0.4); }

.pv-chip--amber {
    border-color: rgba(255,165,0,0.2);
    box-shadow: 0 4px 24px rgba(255,165,0,0.07), inset 0 0 30px rgba(255,165,0,0.03);
}
.pv-chip--amber:hover { border-color: rgba(255,165,0,0.4); box-shadow: 0 8px 32px rgba(255,165,0,0.15); }
.pv-chip--amber .pv-chip-ico { background: rgba(255,165,0,0.12); box-shadow: 0 0 18px rgba(255,165,0,0.18); color: #ffaa00; }
.pv-chip--amber .pv-chip-v { color: #ffbb22; text-shadow: 0 0 20px rgba(255,165,0,0.4); }

.pv-chip--purple {
    border-color: rgba(160,80,255,0.2);
    box-shadow: 0 4px 24px rgba(160,80,255,0.07), inset 0 0 30px rgba(160,80,255,0.03);
}
.pv-chip--purple:hover { border-color: rgba(160,80,255,0.4); box-shadow: 0 8px 32px rgba(160,80,255,0.15); }
.pv-chip--purple .pv-chip-ico { background: rgba(160,80,255,0.12); box-shadow: 0 0 18px rgba(160,80,255,0.18); color: #bb88ff; }
.pv-chip--purple .pv-chip-v { color: #cc88ff; text-shadow: 0 0 20px rgba(160,80,255,0.4); }

/* ── PUSH CARD ── */
.pv-push-card {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; padding: 16px 20px;
    background: rgba(0,200,255,0.04);
    border: 1px solid rgba(0,200,255,0.12);
    border-radius: 16px; margin-bottom: 16px;
}
.pv-push-icon { font-size: 1.3rem; }
.pv-push-toggle-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ── TABS ── */
.pv-tabs-nav {
    display: flex; gap: 4px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px; padding: 5px;
    margin-bottom: 16px;
}
.pv-tab-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 16px; border-radius: 12px;
    background: transparent; border: none;
    color: rgba(255,255,255,0.4); font-size: 0.82rem; font-weight: 700;
    cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.pv-tab-btn:hover { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.05); }
.pv-tab-btn.active {
    background: linear-gradient(135deg, rgba(0,200,255,0.14), rgba(0,120,200,0.1));
    color: #00d4ff;
    border: 1px solid rgba(0,200,255,0.2);
    box-shadow: 0 2px 14px rgba(0,200,255,0.1);
}
/* ── ORDER CARDS ── */
.pv-order-card {
    display: flex; align-items: center; gap: 14px;
    padding: 15px 18px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-left: 3px solid rgba(46,204,113,0.5);
    border-radius: 15px; margin-bottom: 9px;
    cursor: pointer; transition: all 0.18s ease;
    position: relative;
}
.pv-order-card::after {
    content: '›';
    position: absolute; right: 18px;
    font-size: 1.4rem; color: rgba(255,255,255,0.18);
    transition: color 0.2s, right 0.2s;
    line-height: 1;
}
.pv-order-card:hover {
    background: rgba(46,204,113,0.05);
    border-color: rgba(46,204,113,0.18);
    border-left-color: rgba(46,204,113,0.7);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transform: translateX(3px);
}
.pv-order-card:hover::after { color: rgba(46,204,113,0.6); right: 14px; }
.pv-order-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06); border-radius: 12px; flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.1); overflow: hidden;
}
.pv-order-info { flex: 1; min-width: 0; padding-right: 26px; }
.pv-order-name { font-size: 0.9rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pv-order-meta { display: flex; align-items: center; gap: 5px; margin-top: 4px; font-size: 0.7rem; color: rgba(255,255,255,0.32); flex-wrap: wrap; }
.pv-order-ref { font-family: monospace; color: #a78bfa; font-weight: 700; }
.pv-order-dot { color: rgba(255,255,255,0.15); }
.pv-order-right { text-align: right; flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.pv-order-amount { font-size: 1rem; font-weight: 900; color: #2ecc71; text-shadow: 0 0 14px rgba(46,204,113,0.3); }
.pv-order-status { font-size: 0.65rem; color: rgba(255,255,255,0.28); margin-top: 3px; }
.pv-order-status-badge {
    display: inline-block;
    font-size: 0.6rem; font-weight: 800;
    padding: 2px 8px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.pv-status-paid    { background: rgba(46,204,113,0.15); color: #2ecc71; border: 1px solid rgba(46,204,113,0.3); }
.pv-status-pending { background: rgba(245,197,24,0.15);  color: #f5c518; border: 1px solid rgba(245,197,24,0.3); }
.pv-status-rejected{ background: rgba(231,76,60,0.15);   color: #e74c3c; border: 1px solid rgba(231,76,60,0.3); }
.pv-status-refunded{ background: rgba(99,102,241,0.15);  color: #818cf8; border: 1px solid rgba(99,102,241,0.3); }

/* ── CARD COMPONENTS ── */
.pv-card-ico {
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; flex-shrink: 0;
}
.pv-card-ico--gold { background: rgba(255,215,0,0.1); border: 1px solid rgba(255,215,0,0.2); box-shadow: 0 0 16px rgba(255,200,0,0.12); }
.pv-card-ico--cyan { background: rgba(0,200,255,0.08); border: 1px solid rgba(0,200,255,0.18); box-shadow: 0 0 16px rgba(0,200,255,0.1); }
.pv-card-title { font-size: 0.92rem; font-weight: 800; color: #fff; }
.pv-card-sub { font-size: 0.68rem; color: rgba(255,255,255,0.38); margin-top: 2px; }

/* ── TRUSTPILOT ── */
.tp-widget-wrap {
    display: flex; justify-content: center; margin: 18px 0 14px;
}
.tp-widget-inner {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(0,182,122,0.3);
    border-radius: 20px; padding: 24px 40px;
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; backdrop-filter: blur(14px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,182,122,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
    min-width: 260px; max-width: 400px; width: 100%;
}
.tp-logo-row { display: flex; align-items: center; gap: 8px; }
.tp-star-svg { width: 24px; height: 24px; }
.tp-brand { font-size: 1.15rem; font-weight: 900; color: #fff; letter-spacing: -0.3px; }
.tp-stars-row { display: flex; gap: 4px; }
.tp-star { font-size: 1.65rem; color: #00b67a; line-height: 1; text-shadow: 0 0 14px rgba(0,182,122,0.7); }
.tp-score-row { display: flex; align-items: baseline; gap: 6px; }
.tp-score { font-size: 2.2rem; font-weight: 900; color: #fff; text-shadow: 0 0 20px rgba(255,255,255,0.2); }
.tp-score-label { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.tp-cta-btn {
    display: flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #00b67a, #008a5c);
    color: #fff; border: none; border-radius: 11px;
    padding: 11px 22px; font-size: 0.82rem; font-weight: 700;
    text-decoration: none; cursor: pointer;
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-top: 4px; box-shadow: 0 4px 18px rgba(0,182,122,0.3);
}
.tp-cta-btn:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,182,122,0.4); }

/* ── MOBILE ── */
@media (max-width: 700px) {
    .pv-root { padding: 0 10px 120px; }
    .pv-hero-banner { height: 150px; }
    .pv-hero-body { padding: 0 16px 20px; margin-top: -54px; gap: 14px; flex-wrap: wrap; }
    .pv-hero-left { gap: 14px; }
    .pv-hero-actions { width: 100%; justify-content: flex-end; padding-top: 0; gap: 7px; }
    #profile-img-display { width: 96px; height: 96px; border-radius: 18px; }
    .pv-avatar-wrap::before { border-radius: 20px; }
    #profile-username { font-size: 1.4rem; }
    .pv-stats-strip { grid-template-columns: repeat(3, 1fr); gap: 9px; }
    .pv-chip { padding: 14px 8px; }
    .pv-chip-ico { width: 36px; height: 36px; border-radius: 11px; font-size: 1.1rem; }
    .pv-chip-v { font-size: 0.92rem; }
    .pv-cols { grid-template-columns: 1fr; }
    .pv-ref-input-row { flex-direction: column; }
    .pv-copy-btn { width: 100%; padding: 12px; }
    .pv-edit-grid { grid-template-columns: 1fr; }
    .pv-pwd-row { flex-direction: column; }
    .pv-pwd-btn { width: 100%; min-height: 44px; }
    .pv-action-row { flex-direction: column; }
    .tp-widget-inner { padding: 20px 24px; }
}
@media (max-width: 400px) {
    .pv-stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ── PUSH TOGGLE INTERNALS ── */
.pv-toggle-label {
    position: relative; width: 50px; height: 28px; cursor: pointer;
}
.pv-toggle-label input { opacity: 0; width: 0; height: 0; position: absolute; }
#push-toggle-track {
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 28px;
    transition: background 0.3s, border-color 0.3s;
    border: 1px solid rgba(255,255,255,0.15);
}
#push-toggle-thumb {
    position: absolute; top: 4px; left: 4px;
    width: 20px; height: 20px;
    background: #fff; border-radius: 50%;
    transition: left 0.3s, background 0.3s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
#push-notif-toggle:checked ~ #push-toggle-track {
    background: rgba(255,215,0,0.35);
    border-color: rgba(255,215,0,0.55);
}
#push-notif-toggle:checked ~ #push-toggle-thumb {
    left: 26px;
    background: var(--gold-main);
}

/* Edit panel */
.pv-edit-panel {
    display: none;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px; padding: 24px; margin-bottom: 20px;
}
.pv-edit-title {
    color: #fff; margin: 0 0 20px;
    font-size: 0.95rem; font-weight: 800;
    display: flex; align-items: center; gap: 8px;
}
.pv-edit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.pv-edit-full { margin-bottom: 14px; }
.pv-edit-section-label {
    font-size: 0.65rem; color: rgba(255,255,255,0.28);
    text-transform: uppercase; letter-spacing: 1.4px; font-weight: 700;
    margin-bottom: 12px; border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 16px;
}
.pv-edit-field label {
    font-size: 0.68rem; color: rgba(255,255,255,0.35);
    display: block; margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: 0.8px;
}
.pv-edit-input {
    width: 100%; box-sizing: border-box;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 11px 14px;
    border-radius: 11px; outline: none; font-size: 0.88rem;
    transition: border-color 0.2s, background 0.2s;
    font-family: inherit;
}
.pv-edit-input:focus {
    border-color: rgba(255,215,0,0.4);
    background: rgba(255,215,0,0.03);
}
.pv-save-btn {
    width: 100%;
    background: linear-gradient(135deg,#d4af37,#f0d060);
    border: none; color: #000; font-weight: 800;
    padding: 13px; border-radius: 12px; cursor: pointer;
    font-size: 0.9rem; font-family: inherit;
    transition: filter 0.2s, transform 0.2s;
}
.pv-save-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* Partner + Security 2-col grid */
.pv-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.pv-card {
    border-radius: 22px; padding: 24px;
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease;
    position: relative; overflow: hidden;
}
.pv-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}
.pv-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.65); }
.pv-card--partner {
    background: linear-gradient(145deg,rgba(255,215,0,0.06),rgba(255,255,255,0.02));
    border: 1px solid rgba(255,215,0,0.15);
}
.pv-card--partner:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.65), 0 0 40px rgba(255,215,0,0.06); }
.pv-card--security {
    background: linear-gradient(145deg, rgba(255,0,85,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,0,85,0.14);
}
.pv-card--security:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.65), 0 0 40px rgba(255,0,85,0.06); }
.pv-card-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pv-card-title { color: #fff; margin: 0; font-size: 0.95rem; font-weight: 800; }
.pv-card-badge {
    padding: 3px 10px; border-radius: 8px;
    font-size: 0.7rem; color: #ccc;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.pv-card-badge--gold {
    background: rgba(255,215,0,0.08);
    border-color: rgba(255,215,0,0.22);
}
.pv-partner-desc { color: #bbb; font-size: 0.82rem; line-height: 1.6; margin: 0 0 12px; }
.pv-earnings-row {
    background: rgba(255,215,0,0.04);
    border: 1px solid rgba(255,215,0,0.13);
    border-radius: 11px; padding: 10px 14px;
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 14px;
}
.pv-earnings-label { font-size: 0.78rem; color: #aaa; }
.pv-ref-input-row { display: flex; gap: 8px; }
.pv-ref-input {
    flex: 1; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: #bbb; padding: 9px 12px;
    border-radius: 9px; font-size: 0.78rem;
    outline: none; font-family: inherit;
}
.pv-copy-btn {
    background: linear-gradient(135deg,#d4af37,#f5e17a);
    border: none; color: #000; font-weight: 800;
    padding: 0 14px; border-radius: 9px;
    cursor: pointer; font-size: 0.78rem; font-family: inherit;
    transition: filter 0.2s;
}
.pv-copy-btn:hover { filter: brightness(1.1); }

/* Security card specifics */
.pv-pwd-row { display: flex; gap: 8px; margin-bottom: 12px; }
.pv-pwd-input {
    flex: 1; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 10px 12px;
    border-radius: 9px; outline: none;
    font-size: 0.88rem; font-family: inherit;
    transition: border-color 0.2s;
}
.pv-pwd-input:focus { border-color: rgba(255,215,0,0.4); }
.pv-pwd-btn {
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--gold-main); font-weight: 800;
    padding: 0 18px; border-radius: 9px;
    cursor: pointer; font-size: 0.82rem; font-family: inherit;
    transition: background 0.2s, box-shadow 0.2s;
    white-space: nowrap; min-height: 44px;
}
.pv-pwd-btn:hover { background: rgba(255,215,0,0.18); box-shadow: 0 0 12px rgba(255,215,0,0.2); }
.pv-action-col { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 14px; }
.pv-action-btn {
    background: transparent; padding: 12px 14px; border-radius: 12px;
    cursor: pointer; font-size: 0.82rem; font-weight: 700;
    font-family: inherit; min-height: 44px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.pv-action-btn:hover { transform: translateY(-1px); }
.pv-action-btn--dsgvo { border: 1px solid rgba(255,215,0,0.25); color: var(--gold-main); background: rgba(255,215,0,0.04); }
.pv-action-btn--dsgvo:hover { background: rgba(255,215,0,0.09); box-shadow: 0 0 14px rgba(255,215,0,0.1); }
.pv-action-row { display: flex; gap: 8px; }
.pv-action-btn--logout { flex: 1; border: 1px solid rgba(255,255,255,0.15); color: #ccc; background: rgba(255,255,255,0.03); }
.pv-action-btn--logout:hover { background: rgba(255,255,255,0.08); }
.pv-action-btn--delete { flex: 1; background: rgba(255,0,85,0.08); border: 1px solid rgba(255,0,85,0.35); color: #ff4466; font-weight: 800; }
.pv-action-btn--delete:hover { background: rgba(255,0,85,0.18); box-shadow: 0 0 16px rgba(255,0,85,0.2); }

/* Member since footer card */
.pv-since {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 16px 20px;
    display: flex; align-items: center; gap: 14px;
}
.pv-since-icon {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.pv-since-lbl {
    font-size: 0.62rem; color: rgba(255,255,255,0.28);
    text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 3px;
}
.pv-since-val { font-size: 1rem; font-weight: 800; color: #fff; }

@keyframes pvTabIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.pv-tab-content { animation: pvTabIn 0.3s ease; }

/* ── Invoice / Orders List ─────────────────────────────── */
.pv-orders-header { margin-bottom: 18px; }
.pv-orders-title { font-size: 1.05rem; font-weight: 800; color: #fff; margin: 0 0 4px; }
.pv-orders-subtitle { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

.pv-orders-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 50px 20px;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
}
.pv-orders-spinner {
    width: 20px; height: 20px;
    border: 2px solid rgba(255,255,255,0.1);
    border-top-color: #a78bfa;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
.pv-orders-empty {
    text-align: center;
    padding: 50px 20px;
}
.pv-orders-empty-icon { font-size: 2.5rem; margin-bottom: 12px; }
.pv-orders-empty-text { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.pv-orders-empty-sub { font-size: 0.8rem; color: rgba(255,255,255,0.25); max-width: 280px; margin: 0 auto; }


/* ═══════════════════════════════════════
   PROFILE SHARE BUTTON
   ═══════════════════════════════════════ */
.pv-share-btn {
    background: linear-gradient(135deg, rgba(30,155,255,0.12), rgba(130,0,255,0.08));
    border: 1px solid rgba(30,155,255,0.28);
    color: #6ec6ff;
    font-size: 0.72rem; font-weight: 700;
    padding: 6px 11px; border-radius: 10px;
    cursor: pointer; flex-shrink: 0;
    transition: background 0.22s, transform 0.22s, border-color 0.22s;
    display: flex; align-items: center; gap: 5px;
    font-family: inherit;
    line-height: 1;
}
.pv-share-btn:hover {
    background: linear-gradient(135deg, rgba(30,155,255,0.28), rgba(130,0,255,0.18));
    border-color: rgba(30,155,255,0.55);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   PUBLIC PROFILE MODAL
   ═══════════════════════════════════════ */
.ppmod-overlay {
    position: fixed; inset: 0; z-index: 9000;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    animation: fadeIn 0.22s ease both;
}
.ppmod-card {
    position: relative;
    width: 100%; max-width: 400px;
    background: linear-gradient(145deg, rgba(10,14,26,0.98), rgba(6,9,18,0.99));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.04);
    animation: megaPopIn 0.38s cubic-bezier(0.22,1,0.36,1) both;
}
.ppmod-close {
    position: absolute; top: 14px; right: 14px; z-index: 10;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #aaa; border-radius: 50%;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.ppmod-close:hover { background: rgba(255,255,255,0.14); color: #fff; }

.ppmod-cover {
    height: 110px;
    background: linear-gradient(135deg, #00243a 0%, #001020 45%, #0d0025 100%);
    position: relative; overflow: hidden;
}
.ppmod-cover-aurora {
    position: absolute; inset: -40%;
    background: radial-gradient(ellipse at 30% 60%, rgba(0,200,255,0.2) 0%, transparent 55%),
                radial-gradient(ellipse at 75% 30%, rgba(130,0,255,0.15) 0%, transparent 50%);
    animation: auroraShift 9s ease-in-out infinite;
}
.ppmod-body {
    padding: 0 24px 28px;
    text-align: center;
    margin-top: -44px;
    position: relative;
}
.ppmod-avatar-wrap {
    display: inline-block; position: relative; margin-bottom: 12px;
}
.ppmod-avatar-wrap::before {
    content: '';
    position: absolute; inset: -3px;
    border-radius: 22px;
    background: linear-gradient(135deg, #1e9bff 0%, #9b59b6 50%, #d4af37 100%);
    z-index: 0;
}
.ppmod-avatar {
    position: relative; z-index: 1;
    width: 88px; height: 88px;
    border-radius: 18px;
    object-fit: cover;
    border: 3px solid rgba(8,12,20,0.98);
    display: block;
}
.ppmod-rank {
    position: absolute; bottom: -8px; left: 50%;
    transform: translateX(-50%); z-index: 2;
    background: linear-gradient(135deg,#d4af37,#f5e17a);
    color: #000; font-size: 0.58rem; font-weight: 900;
    padding: 2px 9px; border-radius: 9px;
    white-space: nowrap;
}
.ppmod-name {
    font-size: 1.4rem; font-weight: 900; color: #fff;
    margin: 8px 0 4px; letter-spacing: -0.4px;
}
.ppmod-bio {
    color: rgba(140,180,200,0.7); font-size: 0.82rem;
    font-style: italic; margin: 0 0 14px;
}
.ppmod-tags {
    display: flex; justify-content: center; gap: 8px;
    flex-wrap: wrap; margin-bottom: 20px;
}
.ppmod-tag {
    font-size: 0.68rem; padding: 4px 11px; border-radius: 8px; font-weight: 700;
}
.ppmod-tag-verified { background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.28); color: #2ecc71; }
.ppmod-tag-since    { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: #888; }

.ppmod-stats {
    display: flex; justify-content: center; gap: 12px;
    margin-bottom: 22px;
}
.ppmod-stat {
    flex: 1; max-width: 90px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px; padding: 14px 8px;
    text-align: center;
    transition: transform 0.22s, background 0.22s;
}
.ppmod-stat:hover { transform: translateY(-3px); background: rgba(255,255,255,0.06); }
.ppmod-stat-icon { font-size: 1.3rem; margin-bottom: 6px; }
.ppmod-stat-val { font-size: 1.15rem; font-weight: 900; color: #fff; margin-bottom: 3px; }
.ppmod-stat-lbl { font-size: 0.6rem; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }

.ppmod-share-btn {
    width: 100%;
    background: linear-gradient(135deg, rgba(30,155,255,0.15), rgba(130,0,255,0.1));
    border: 1px solid rgba(30,155,255,0.3);
    color: #6ec6ff; font-weight: 800; font-family: inherit;
    padding: 12px; border-radius: 13px; cursor: pointer;
    font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background 0.22s, border-color 0.22s, transform 0.22s;
}
.ppmod-share-btn:hover {
    background: linear-gradient(135deg, rgba(30,155,255,0.28), rgba(130,0,255,0.2));
    border-color: rgba(30,155,255,0.55);
    transform: translateY(-2px);
}

/* Clickable comment usernames */
.blog-comment-item-username.profile-link {
    cursor: pointer;
    transition: color 0.18s;
}
.blog-comment-item-username.profile-link:hover { color: #6ec6ff; }
.blog-comment-item-avatar.profile-link {
    cursor: pointer;
    transition: transform 0.22s, box-shadow 0.22s;
}
.blog-comment-item-avatar.profile-link:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(30,155,255,0.5);
}

/* ════════════════════════════════════════════════════════════
   PROFILE V2  (pv2-*)
   ════════════════════════════════════════════════════════════ */

/* ── Root wrapper ── */
.pv2-root {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 0 80px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── HERO ── */
.pv2-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.pv2-hero-bg, .pv2-hero-grid, .pv2-hero-glow {
    border-radius: 20px;
    overflow: hidden;
}
.pv2-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0b0f17 0%, #111827 50%, #12102a 100%);
    z-index: 0;
}
.pv2-hero-grid {
    position: absolute; inset: 0; z-index: 1; opacity: 0.12;
    background-image:
        linear-gradient(rgba(0,220,200,0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,220,200,0.3) 1px, transparent 1px);
    background-size: 36px 36px;
}
.pv2-hero-glow {
    position: absolute; top: -80px; left: -60px; z-index: 1;
    width: 360px; height: 360px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,220,200,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.pv2-hero-body {
    position: relative; z-index: 2;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 22px 0;
    flex-wrap: wrap;
}
.pv2-avatar-wrap {
    position: relative;
    flex-shrink: 0;
    padding-bottom: 18px;
}
.pv2-avatar-ring {
    position: absolute; inset: -5px;
    border-radius: 50%;
    background: conic-gradient(var(--pv2-rank-color, #00dcc8) 0% 75%, rgba(0,0,0,0.3) 75% 100%);
    z-index: 0;
    transition: background 0.6s;
    box-shadow: 0 0 20px var(--pv2-rank-shadow, rgba(0,220,200,0.35));
}
.pv2-avatar {
    width: 90px; height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0d1117;
    box-shadow: 0 4px 24px rgba(0,0,0,0.6);
    position: relative; z-index: 1;
    display: block;
}
.pv2-rank-pill {
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    background: var(--pv2-rank-color, #00dcc8);
    color: #000;
    font-size: 0.58rem; font-weight: 900;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 10;
    border: 2px solid #0d1117;
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.pv2-hero-meta {
    flex: 1; min-width: 0;
    padding-bottom: 14px;
}
.pv2-hero-name-row {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}
.pv2-hero-name-row h1 {
    margin: 0;
    font-size: 1.5rem; font-weight: 900;
    color: #fff; letter-spacing: 0.3px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 280px;
}
.pv2-verified {
    width: 20px; height: 20px;
    background: #4e9af1;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: #fff;
    box-shadow: 0 0 8px rgba(78,154,241,0.5);
}
.pv2-bio {
    font-size: 0.82rem; color: #8a9ab0;
    margin: 0 0 10px; font-style: italic;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 340px;
}
.pv2-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pv2-tag {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 10px; border-radius: 20px;
    font-size: 0.66rem; font-weight: 700; letter-spacing: 0.4px;
    background: rgba(255,255,255,0.05);
    color: #8a9ab0; border: 1px solid rgba(255,255,255,0.08);
}
.pv2-tag-since {
    color: #2ecc71; border-color: rgba(46,204,113,0.3);
    background: rgba(46,204,113,0.08);
}
.pv2-tag-discord {
    cursor: pointer; color: #7289da;
    border-color: rgba(114,137,218,0.3); background: rgba(114,137,218,0.08);
    transition: background 0.2s;
}
.pv2-tag-discord:hover { background: rgba(114,137,218,0.18); }

/* Share button – always absolute top-right of hero */
.pv2-share-btn {
    position: absolute; top: 14px; right: 14px; z-index: 10;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #c5c5c5; font-size: 0.76rem; font-weight: 700;
    cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.pv2-share-btn:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* Hero action buttons (Keys etc.) */
.pv2-hero-actions {
    display: flex; gap: 8px; align-items: center;
    padding-bottom: 14px; flex-shrink: 0; margin-left: auto;
}
.pv2-hbtn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #c5c5c5; font-size: 0.78rem; font-weight: 700;
    cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.pv2-hbtn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.pv2-hbtn--keys {
    background: rgba(245,197,24,0.1); border-color: rgba(245,197,24,0.3);
    color: #f5c518;
}
.pv2-hbtn--keys:hover { background: rgba(245,197,24,0.2); }

/* Rank progress bar – eigene Card außerhalb Hero */
.pv2-rank-bar-wrap {
    position: relative; z-index: 2;
    padding: 14px 20px 18px;
    background: linear-gradient(135deg, rgba(0,220,200,0.06) 0%, rgba(99,102,241,0.08) 100%);
    border: 1px solid rgba(0,220,200,0.15);
    border-radius: 18px;
    display: flex; flex-direction: column; gap: 6px;
    box-shadow: 0 4px 20px rgba(0,220,200,0.06);
}
.pv2-rank-labels {
    display: flex; justify-content: space-between; align-items: center;
}
.pv2-rank-cur {
    font-size: 0.82rem; font-weight: 900;
    color: var(--pv2-rank-color, #00dcc8);
    text-transform: uppercase; letter-spacing: 1.5px;
}
.pv2-rank-next { font-size: 0.7rem; color: #7a8a9a; }
.pv2-rank-track {
    height: 8px; border-radius: 6px;
    background: rgba(255,255,255,0.06); overflow: hidden;
}
.pv2-rank-fill {
    height: 100%; border-radius: 6px;
    background: linear-gradient(90deg, var(--pv2-rank-color, #00dcc8), var(--pv2-rank-next-color, #a855f7));
    width: 0%; transition: width 1s cubic-bezier(0.25,1,0.5,1);
    box-shadow: 0 0 10px var(--pv2-rank-shadow, rgba(0,220,200,0.4));
}
.pv2-rank-progress-text {
    font-size: 0.64rem; color: #5a6a7a; font-weight: 600;
}

/* ── STATS ROW ── */
.pv2-stats-wrap {
    position: relative;
}
.pv2-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.pv2-stat {
    background: #111318;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 14px 10px 12px;
    display: flex; flex-direction: column; gap: 5px;
    cursor: default;
    transition: border-color 0.2s, transform 0.15s;
    position: relative; overflow: hidden;
    text-align: center; align-items: center;
}
.pv2-stat::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--pv2-stat-color, #00dcc8);
    border-radius: 0 0 14px 14px; opacity: 0.8;
}
.pv2-stat:hover { border-color: rgba(255,255,255,0.16); transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
.pv2-stat--clickable { cursor: pointer; }
.pv2-stat-ico { font-size: 1.3rem; line-height: 1; }
.pv2-stat-val {
    font-size: 1.05rem; font-weight: 900;
    color: #fff; line-height: 1.1;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    width: 100%; text-align: center;
}
.pv2-stat-lbl { font-size: 0.58rem; color: #5a6a7a; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700; }

/* ── TRUST BADGES ── */
.pv2-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.pv2-trust-badge {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; text-align: center;
    background: #111318;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 14px 10px;
    transition: border-color 0.2s, transform 0.2s;
}
.pv2-trust-badge:hover { border-color: rgba(0,220,200,0.25); transform: translateY(-2px); }
.pv2-trust-ico-wrap {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,220,200,0.1);
    flex-shrink: 0;
}
#pv2-trust-stars .pv2-trust-ico-wrap { background: rgba(245,197,24,0.12); }
#pv2-trust-buyer .pv2-trust-ico-wrap { background: rgba(167,139,250,0.12); }
#pv2-trust-loyal .pv2-trust-ico-wrap { background: rgba(248,113,113,0.12); }
.pv2-trust-ico { width: 18px; height: 18px; color: #00dcc8; }
#pv2-trust-stars .pv2-trust-ico { color: #f5c518; }
#pv2-trust-buyer .pv2-trust-ico { color: #a78bfa; }
#pv2-trust-loyal .pv2-trust-ico { color: #f87171; }
.pv2-trust-text { display: flex; flex-direction: column; gap: 2px; }
.pv2-trust-title { font-size: 0.68rem; font-weight: 800; color: #e0e6f0; }
.pv2-trust-sub { font-size: 0.58rem; color: #4a5a6a; line-height: 1.3; }

/* ── PUSH CARD ── */
.pv2-push-card {
    background: #111318;
    border: 1px solid rgba(0,220,200,0.15);
    border-radius: 14px; padding: 14px 18px;
    display: flex; align-items: center; gap: 14px;
}
.pv2-push-ico {
    width: 40px; height: 40px; background: rgba(0,220,200,0.1);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 1.15rem; flex-shrink: 0;
}
.pv2-push-text { flex: 1; min-width: 0; }
.pv2-push-text strong { font-size: 0.85rem; color: #e5e5e5; font-weight: 800; display: block; margin-bottom: 2px; }
.pv2-push-text span { font-size: 0.68rem; color: #5a6a7a; }
.pv2-push-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.pv2-push-right span { font-size: 0.72rem; color: #5a6a7a; }

/* ── TABS NAV ── */
.pv2-tabs-nav {
    display: flex; gap: 4px;
    background: #0a0d14;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px; padding: 5px;
}
.pv2-tab-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
    padding: 10px 16px; border-radius: 10px; border: none;
    background: transparent; color: #5a6a7a;
    font-size: 0.8rem; font-weight: 700;
    cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.pv2-tab-btn:hover { color: #c5c5c5; background: rgba(255,255,255,0.04); }
.pv2-tab-btn.active {
    background: rgba(0,220,200,0.1); color: #00dcc8;
    border: 1px solid rgba(0,220,200,0.2);
}

/* ── TAB CONTENT ── */
.pv2-tab-content { display: none; }
.pv2-tab-content.pv2-active { display: block; }

/* ── SECTION TITLE ── */
.pv2-section-title {
    font-size: 0.72rem; font-weight: 800;
    color: #6a7a8a; text-transform: uppercase; letter-spacing: 1.5px;
    margin: 0 0 12px;
    display: flex; align-items: center; gap: 8px;
}
.pv2-section-title::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.05); }

/* ── CARD BASE ── */
.pv2-card {
    background: #111318; border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px; overflow: hidden;
}
.pv2-card-head {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pv2-card-ico {
    width: 38px; height: 38px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.pv2-card-ico--cyan { background: rgba(0,220,200,0.12); }
.pv2-card-ico--gold { background: rgba(245,197,24,0.12); }
.pv2-card-ico--red  { background: rgba(255,80,80,0.12); }
.pv2-card-ico--blue { background: rgba(80,140,255,0.12); }
.pv2-card-title { font-size: 0.9rem; font-weight: 800; color: #e5e5e5; }
.pv2-card-sub { font-size: 0.68rem; color: #5a6a7a; margin-top: 2px; }
.pv2-card-body { padding: 18px; }
.pv2-card-badge {
    margin-left: auto; flex-shrink: 0;
    font-size: 0.7rem; padding: 4px 10px; border-radius: 20px;
    background: rgba(245,197,24,0.1); color: #f5c518;
    border: 1px solid rgba(245,197,24,0.2); font-weight: 700;
}

/* ── PROFILE COMPLETENESS ── */
.pv2-comp-wrap { padding: 16px 18px; }
.pv2-comp-pct { font-size: 0.88rem; font-weight: 900; color: #00dcc8; }
.pv2-comp-track { height: 6px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; margin-bottom: 14px; }
.pv2-comp-fill {
    height: 100%; border-radius: 4px;
    background: linear-gradient(90deg, #00dcc8, #0099c8);
    transition: width 0.8s cubic-bezier(0.25,1,0.5,1); width: 0%;
}
.pv2-comp-items { display: flex; flex-wrap: wrap; gap: 8px; }
.pv2-comp-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.68rem; color: #5a6a7a;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px; padding: 5px 9px; transition: all 0.2s;
}
.pv2-comp-item.done { color: #00dcc8; background: rgba(0,220,200,0.07); border-color: rgba(0,220,200,0.2); }
.pv2-comp-item .ci-dot { width: 6px; height: 6px; border-radius: 50%; background: #2a3545; flex-shrink: 0; }
.pv2-comp-item.done .ci-dot { background: #00dcc8; }

/* ── EDIT FORM ── */
.pv2-edit-panel { background: #111318; border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 20px 18px; }
.pv2-edit-title { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 800; color: #e5e5e5; margin-bottom: 16px; }
.pv2-edit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.pv2-edit-full { grid-column: 1 / -1; }
.pv2-edit-section-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: #5a6a7a; margin: 10px 0; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.05); }
.pv2-edit-field label { display: block; font-size: 0.65rem; font-weight: 700; color: #5a6a7a; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 5px; }
.pv2-edit-input { width: 100%; box-sizing: border-box; padding: 9px 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; color: #e5e5e5; font-size: 0.82rem; transition: border-color 0.2s; outline: none; }
.pv2-edit-input:focus { border-color: rgba(0,220,200,0.4); }
.pv2-save-btn { margin-top: 14px; padding: 11px 24px; background: linear-gradient(135deg, #00dcc8, #0099c8); border: none; border-radius: 10px; color: #000; font-size: 0.84rem; font-weight: 900; cursor: pointer; transition: filter 0.2s; }
.pv2-save-btn:hover { filter: brightness(1.1); }

/* ── PARTNER CARD ── */
.pv2-partner-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.pv2-pstat { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 14px 12px; text-align: center; }
.pv2-pstat-val { font-size: 1.2rem; font-weight: 900; color: #fff; margin-bottom: 3px; }
.pv2-pstat-lbl { font-size: 0.62rem; color: #5a6a7a; text-transform: uppercase; letter-spacing: 0.8px; }
.pv2-partner-link-label { font-size: 0.65rem; color: #5a6a7a; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 6px; display: block; }
.pv2-ref-row { display: flex; gap: 8px; margin-bottom: 16px; }
.pv2-ref-input { flex: 1; padding: 10px 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; color: #c5c5c5; font-size: 0.78rem; outline: none; }
.pv2-copy-btn { padding: 10px 16px; background: rgba(0,220,200,0.12); border: 1px solid rgba(0,220,200,0.25); border-radius: 8px; color: #00dcc8; font-size: 0.72rem; font-weight: 800; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.pv2-copy-btn:hover { background: rgba(0,220,200,0.2); }
.pv2-how-steps { display: flex; flex-direction: column; gap: 8px; }
.pv2-how-step { display: flex; align-items: flex-start; gap: 12px; font-size: 0.78rem; color: #7a8a9a; }
.pv2-how-num { width: 24px; height: 24px; border-radius: 50%; background: rgba(0,220,200,0.12); color: #00dcc8; font-size: 0.7rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── SECURITY ── */
.pv2-sec-email { font-size: 0.75rem; color: #5a6a7a; margin-bottom: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pv2-pwd-row { display: flex; gap: 8px; margin-bottom: 10px; }
.pv2-pwd-input { flex: 1; padding: 9px 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; color: #e5e5e5; font-size: 0.82rem; outline: none; transition: border-color 0.2s; }
.pv2-pwd-input:focus { border-color: rgba(0,220,200,0.4); }
.pv2-pwd-btn { padding: 9px 16px; background: rgba(0,220,200,0.1); border: 1px solid rgba(0,220,200,0.25); border-radius: 8px; color: #00dcc8; font-size: 0.78rem; font-weight: 700; cursor: pointer; transition: background 0.2s; flex-shrink: 0; white-space: nowrap; }
.pv2-pwd-btn:hover { background: rgba(0,220,200,0.18); }
.pv2-action-btns { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.pv2-action-btn { width: 100%; padding: 10px 14px; border-radius: 8px; border: none; font-size: 0.78rem; font-weight: 700; cursor: pointer; transition: filter 0.2s; text-align: left; }
.pv2-action-btn--dsgvo { background: rgba(80,140,255,0.1); color: #5094ff; border: 1px solid rgba(80,140,255,0.2); }
.pv2-action-btn--dsgvo:hover { filter: brightness(1.15); }
.pv2-action-row { display: flex; gap: 8px; }
.pv2-action-btn--logout { flex: 1; background: rgba(255,255,255,0.05); color: #c5c5c5; border: 1px solid rgba(255,255,255,0.09); }
.pv2-action-btn--logout:hover { background: rgba(255,255,255,0.09); }
.pv2-action-btn--delete { flex: 1; background: rgba(255,70,70,0.08); color: #ff6464; border: 1px solid rgba(255,70,70,0.18); }
.pv2-action-btn--delete:hover { filter: brightness(1.15); }

/* ── MISC ── */
.pv2-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.pv2-since { display: flex; align-items: center; gap: 10px; margin-top: 10px; font-size: 0.75rem; color: #5a6a7a; padding: 10px 14px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; }
.pv2-since-ico { font-size: 1rem; }
.pv2-since-lbl { font-size: 0.63rem; color: #3a4a5a; text-transform: uppercase; letter-spacing: 0.8px; }
.pv2-since-val { font-size: 0.82rem; color: #8a9ab0; font-weight: 600; margin-top: 1px; }

/* ── Orders loading / empty ── */
.pv2-orders-loading { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 40px; color: #5a6a7a; font-size: 0.82rem; }
.pv2-orders-spinner { width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(0,220,200,0.15); border-top-color: #00dcc8; animation: pv2-spin 0.8s linear infinite; }
@keyframes pv2-spin { to { transform: rotate(360deg); } }
.pv2-orders-empty { text-align: center; padding: 50px 20px; color: #5a6a7a; }
.pv2-orders-empty-icon { font-size: 2.5rem; margin-bottom: 10px; opacity: 0.45; }
.pv2-orders-empty-text { font-size: 0.9rem; font-weight: 700; margin-bottom: 5px; color: #7a8a9a; }
.pv2-orders-empty-sub { font-size: 0.75rem; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
    .pv2-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .pv2-root { padding: 0 0 40px; gap: 10px; }

    /* Share button stays visible (already absolute) */
    .pv2-share-btn { padding: 6px 10px; font-size: 0.65rem; gap: 4px; top: 12px; right: 12px; }
    /* Hide keys button on mobile */
    .pv2-hero-actions { display: none !important; }

    /* Hero body: avatar left, meta right */
    .pv2-hero-body {
        flex-direction: row; align-items: flex-start;
        flex-wrap: nowrap;
        gap: 12px; padding: 14px 14px 22px 14px;
    }
    .pv2-avatar-wrap { flex-shrink: 0; padding-bottom: 22px; }
    .pv2-rank-pill { font-size: 0.54rem; padding: 2px 10px; bottom: 0; }
    .pv2-avatar { width: 60px; height: 60px; }
    .pv2-avatar-ring { inset: -3px; }
    .pv2-hero-meta {
        flex: 1; min-width: 0; align-self: flex-start;
        padding-bottom: 0; padding-top: 2px;
        padding-right: 75px;
    }
    .pv2-hero-name-row { margin-bottom: 2px; }
    .pv2-hero-name-row h1 { font-size: 1.05rem; max-width: none; }
    .pv2-bio { font-size: 0.73rem; max-width: none; margin-bottom: 6px; }
    .pv2-tag { font-size: 0.61rem; padding: 3px 8px; }

    /* Rang-Bereich – eigener Abschnitt auf Mobile */
    .pv2-rank-bar-wrap {
        margin: 0 0 4px;
        padding: 14px 16px 16px;
        background: linear-gradient(135deg, rgba(0,220,200,0.06) 0%, rgba(99,102,241,0.08) 100%);
        border: 1px solid rgba(0,220,200,0.18);
        border-radius: 16px;
        gap: 8px;
        box-shadow: 0 4px 20px rgba(0,220,200,0.07);
    }
    .pv2-rank-labels {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .pv2-rank-cur {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.8px;
        color: #00dcc8;
        text-transform: uppercase;
    }
    .pv2-rank-cur::before {
        content: '🏆';
        font-size: 0.85rem;
    }
    .pv2-rank-next { font-size: 0.62rem; color: rgba(160,175,220,0.6); text-align: right; }
    .pv2-rank-track { height: 7px; border-radius: 99px; }
    .pv2-rank-progress-text { font-size: 0.61rem; text-align: center; color: rgba(160,175,220,0.55); }

    /* Stats: horizontaler Scroll, 3 sichtbar gleichzeitig */
    .pv2-stats-wrap::after {
        content: '';
        position: absolute; top: 0; right: 0;
        width: 40px; height: 100%;
        background: linear-gradient(to right, transparent, #0a0d14);
        pointer-events: none; z-index: 1; border-radius: 0 14px 14px 0;
    }
    .pv2-stats {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
        padding-bottom: 4px;
    }
    .pv2-stats::-webkit-scrollbar { display: none; }
    .pv2-stat {
        flex: 0 0 calc(33.5% - 4px);
        scroll-snap-align: start;
        min-width: 80px;
        padding: 12px 8px 10px;
    }
    .pv2-stat-ico { font-size: 1.1rem; }
    .pv2-stat-val { font-size: 0.85rem; }
    .pv2-stat-lbl { font-size: 0.54rem; }

    /* Push card */
    .pv2-push-card { padding: 11px 13px; gap: 10px; }
    .pv2-push-ico { width: 34px; height: 34px; font-size: 0.95rem; }

    /* Tabs */
    .pv2-tabs-nav { gap: 3px; padding: 4px; }
    .pv2-tab-btn { padding: 9px 8px; font-size: 0.7rem; gap: 4px; }
    .pv2-tab-btn svg { width: 11px; height: 11px; }

    /* Cards */
    .pv2-card-head { padding: 12px 13px; }
    .pv2-card-body { padding: 13px; }
    .pv2-cols { grid-template-columns: 1fr; }
    .pv2-edit-grid { grid-template-columns: 1fr; }
    .pv2-partner-stats { gap: 7px; }
    .pv2-pstat { padding: 10px 8px; }
    .pv2-pstat-val { font-size: 0.95rem; }
    .pv2-edit-panel { padding: 14px 13px; }
    .pv2-since { padding: 8px 12px; }
    .pv2-pwd-row { flex-wrap: wrap; }
    .pv2-pwd-input { min-width: 0; flex: 1; }
    .pv2-pwd-btn { flex-shrink: 0; white-space: nowrap; }

    /* Sicherheitskarte Action-Buttons */
    .pv2-action-btns { gap: 7px; }
    .pv2-action-row { flex-direction: column; gap: 7px; }
    .pv2-action-btn--logout,
    .pv2-action-btn--delete { flex: none; width: 100%; box-sizing: border-box; }
}

@media (max-width: 480px) {
    .pv2-hero-body { column-gap: 10px; padding: 14px 12px 0; }
    .pv2-avatar { width: 60px; height: 60px; }
    .pv2-hero-name-row h1 { font-size: 0.95rem; }
    .pv2-tag { font-size: 0.57rem; padding: 2px 7px; }
    .pv2-hero-meta { padding-right: 70px; }
    .pv2-share-btn { top: 10px; right: 10px; padding: 6px 10px; font-size: 0.65rem; }

    /* Stats: stat-zellen noch etwas kleiner auf sehr kleinen Screens */
    .pv2-stat { flex: 0 0 calc(33.5% - 4px); padding: 10px 5px 9px; }
    .pv2-stat-ico { font-size: 0.95rem; }
    .pv2-stat-val { font-size: 0.72rem; }
    .pv2-stat-lbl { font-size: 0.5rem; letter-spacing: 0.3px; }

    /* Tabs ohne Icons */
    .pv2-tab-btn svg { display: none; }
    .pv2-tab-btn { padding: 8px 5px; font-size: 0.65rem; }

    /* Partner */
    .pv2-partner-stats { grid-template-columns: repeat(3, 1fr); gap: 5px; }
    .pv2-pstat-val { font-size: 0.82rem; }
    .pv2-pstat-lbl { font-size: 0.55rem; }

    /* Referral-Link */
    .pv2-ref-row { flex-direction: column; }
    .pv2-copy-btn { width: 100%; text-align: center; }

    /* Sicherheitskarte */
    .pv2-pwd-row { flex-direction: column; }
    .pv2-pwd-input { width: 100%; box-sizing: border-box; }
    .pv2-pwd-btn { width: 100%; text-align: center; }
    .pv2-action-btn { text-align: center; }
}


/* ══════════════════════════════════════════
   DISCORD CARD
══════════════════════════════════════════ */
.pv2-discord-card {
    border-color: rgba(88,101,242,0.2) !important;
}
.dc-status-pill {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 10px; border-radius: 20px; font-size: 0.68rem; font-weight: 700;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    color: #8a9ab0; white-space: nowrap; flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.dc-status-pill.is-linked {
    background: rgba(46,204,113,0.1); border-color: rgba(46,204,113,0.3); color: #2ecc71;
}
.dc-status-pill.is-unlinked {
    background: rgba(255,77,77,0.08); border-color: rgba(255,77,77,0.25); color: #ff6b6b;
}
.dc-status-dot {
    width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0;
}
.dc-status-dot.is-linked { animation: dc-dot-pulse 2s ease-in-out infinite; }
@keyframes dc-dot-pulse {
    0%,100% { opacity: 1; } 50% { opacity: 0.4; }
}
.dc-linked-box {
    display: flex; align-items: center; gap: 14px;
    background: linear-gradient(135deg, rgba(88,101,242,0.1), rgba(114,137,218,0.05));
    border: 1px solid rgba(88,101,242,0.25);
    border-radius: 14px; padding: 14px 16px; margin-bottom: 10px;
    box-shadow: 0 2px 12px rgba(88,101,242,0.08);
}
.dc-linked-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover; border: 2px solid rgba(88,101,242,0.5); flex-shrink: 0;
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 0 4px rgba(88,101,242,0.1);
}
.dc-linked-info { flex: 1; min-width: 0; }
.dc-linked-name {
    font-size: 0.92rem; font-weight: 800; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px;
}
.dc-linked-badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.68rem; font-weight: 700; color: #2ecc71;
    background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.2);
    border-radius: 20px; padding: 2px 8px;
}
.dc-unlink-btn {
    -webkit-appearance: none; appearance: none;
    background: rgba(255,77,77,0.08); border: 1px solid rgba(255,77,77,0.2);
    color: #ff6b6b; border-radius: 8px; padding: 7px 14px;
    font-size: 0.73rem; font-weight: 700; cursor: pointer; flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s; font-family: inherit;
}
.dc-unlink-btn:hover { background: rgba(255,77,77,0.18); border-color: rgba(255,77,77,0.35); }
.dc-warn-box {
    display: flex; align-items: flex-start; gap: 9px;
    background: rgba(240,165,0,0.07); border: 1px solid rgba(240,165,0,0.2);
    border-radius: 10px; padding: 10px 13px; margin-bottom: 12px;
    color: #f0b429; font-size: 0.76rem; line-height: 1.55;
}
.dc-warn-box svg { flex-shrink: 0; margin-top: 1px; opacity: 0.85; }
.dc-connect-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 13px 20px; border-radius: 12px;
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
    color: #fff; font-size: 0.9rem; font-weight: 800; font-family: inherit;
    border: 1px solid rgba(114,137,218,0.35);
    box-shadow: 0 4px 20px rgba(88,101,242,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    cursor: pointer; letter-spacing: 0.02em;
    transition: box-shadow 0.2s, transform 0.15s;
}
.dc-connect-btn:hover {
    box-shadow: 0 6px 30px rgba(88,101,242,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.dc-connect-btn:active { transform: translateY(0); box-shadow: 0 2px 10px rgba(88,101,242,0.3); }
.dc-hint {
    font-size: 0.75rem; color: #8a9ab0; line-height: 1.5; margin: 0;
}
.dc-spinner {
    width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.1); border-top-color: #7289da;
    animation: dc-spin 0.7s linear infinite;
}
@keyframes dc-spin { to { transform: rotate(360deg); } }
@media (max-width: 480px) {
    .dc-linked-box { padding: 10px 11px; gap: 9px; }
    .dc-linked-avatar { width: 38px; height: 38px; }
    .dc-linked-name { font-size: 0.82rem; }
    .dc-unlink-btn { padding: 6px 10px; font-size: 0.7rem; }
    .dc-status-pill { font-size: 0.62rem; padding: 3px 8px; }
    .dc-connect-btn { font-size: 0.82rem; padding: 11px 16px; }
}
