/* Massive Hero Design */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

#hero-canvas {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.hero-ui-layer {
    position: relative;
    z-index: 5;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Let clicks pass to 3D scene */
}

.hero-title-wrapper {
    text-align: center;
    width: 100%;
    pointer-events: auto;
}

.massive-title {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 0.85;
    display: flex;
    flex-direction: column;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.massive-title .word-reveal {
    display: block;
    background: linear-gradient(to bottom, #ffffff, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transform: translateY(100px);
    opacity: 0;
}

.massive-title .outline-text {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
    -webkit-text-fill-color: transparent;
    background: none;
}

.hero-subtitle {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-family: var(--font-mono);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pulse-dot {
    width: 12px; height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
    animation: rapidPulse 1s infinite;
}

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

/* Holographic Profile Card */
.holo-profile-card {
    position: absolute;
    right: 5%;
    bottom: 10%;
    width: 220px;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.1) inset;
    transform: perspective(1000px) rotateY(-15deg);
    z-index: 10;
}

.holo-avatar {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--primary);
}

.holo-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: hue-rotate(180deg) brightness(1.2) contrast(1.5);
    opacity: 0.8;
}

.holo-scanline {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: scan 3s ease-in-out infinite alternate;
    opacity: 0.7;
}

@keyframes scan {
    0% { top: 0%; }
    100% { top: 100%; }
}

.holo-info {
    margin-top: 15px;
    font-family: var(--font-mono);
    text-align: center;
}

.holo-info h3 { color: var(--primary); font-size: 1.2rem; }
.holo-info p { color: var(--text-secondary); font-size: 0.8rem; }

/* Floating Achievement Cards */
.floating-achievements {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    pointer-events: auto;
}

.ach-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

.ach-icon {
    font-size: 1.5rem;
}

.ach-text span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.ach-text strong {
    font-size: 1.1rem;
    color: #fff;
}

/* System Status Indicators */
.system-status {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.led {
    width: 8px; height: 8px;
    border-radius: 50%;
}
.led.green { background: #00ff00; box-shadow: 0 0 10px #00ff00; }
.led.blue { background: #0088ff; box-shadow: 0 0 10px #0088ff; }
.led.purple { background: #aa00ff; box-shadow: 0 0 10px #aa00ff; }
.led.cyan { background: #00ffff; box-shadow: 0 0 10px #00ffff; }
