/* Identity Section / Profile */
.identity-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.holo-portrait-container {
    position: relative;
    width: 300px; height: 400px;
    margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
}

.holo-base {
    position: absolute;
    bottom: -20px;
    width: 150px; height: 30px;
    background: radial-gradient(ellipse at center, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 50px var(--primary);
    animation: basePulse 2s infinite alternate;
}

@keyframes basePulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

.holo-projection {
    position: relative;
    width: 250px; height: 350px;
    mask-image: linear-gradient(to top, transparent 0%, black 20%, black 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 20%, black 100%);
}

.holo-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: hue-rotate(180deg) brightness(1.5) contrast(1.2) drop-shadow(0 0 20px var(--primary));
    opacity: 0.85;
}

.holo-scan-anim {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 20px;
    background: linear-gradient(to bottom, transparent, rgba(0, 217, 255, 0.8), transparent);
    animation: holoScan 4s linear infinite;
}

@keyframes holoScan {
    0% { top: -20px; }
    100% { top: 100%; }
}

.rotating-rings .ring {
    position: absolute;
    bottom: -10px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    transform: rotateX(75deg);
    pointer-events: none;
}
.rotating-rings .r1 { width: 180px; height: 180px; left: calc(50% - 90px); animation: spinRing 5s linear infinite; }
.rotating-rings .r2 { width: 220px; height: 220px; left: calc(50% - 110px); border-style: dashed; animation: spinRing 8s linear infinite reverse; }

@keyframes spinRing {
    100% { transform: rotateX(75deg) rotateZ(360deg); }
}

.identity-data {
    display: flex; flex-direction: column; gap: 2rem;
}

.data-block {
    background: rgba(255,255,255,0.02);
    border-left: 2px solid var(--primary);
    padding: 15px 25px;
    position: relative;
    overflow: hidden;
}

.data-block::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.data-block:hover::before { transform: translateX(0); }

.data-block .label {
    display: block; font-family: var(--font-mono); color: var(--primary); font-size: 0.8rem; margin-bottom: 5px; letter-spacing: 2px;
}

.data-block p { font-size: 1.1rem; color: #fff; line-height: 1.6; }
.data-block p.text-green { color: #00ff00; font-family: var(--font-mono); }
