body { font-family: 'Inter', sans-serif; background-color: #000000; }
        
.bg-name-container { animation: fadeInBackground 1.5s ease-out forwards; opacity: 0; }
@keyframes fadeInBackground { from { opacity: 0; transform: scale(1.05); } to { opacity: 1; transform: scale(1); } }
.bg-name {
    font-family: 'Arial Black', sans-serif; font-size: 14vw; line-height: 0.85; font-weight: 900;
    -webkit-text-stroke: 1.5px #dc2626; color: transparent; paint-order: stroke fill;
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.2); letter-spacing: -2px; text-transform: uppercase; font-style: italic;
}
.photo-container { animation: slideUpPhoto 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.8s forwards; opacity: 0; transform: translateY(100px); }
@keyframes slideUpPhoto { to { opacity: 1; transform: translateY(0); } }
.my-photo { max-height: 75vh; width: auto; }

.word-glitch { position: relative; display: inline-block; color: #dc2626; }
.word-glitch::before, .word-glitch::after {
    content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: black; opacity: 0;
}
.word-glitch::before { color: #ff0000; z-index: 1; animation: netrun-1 4s infinite; }
.word-glitch::after { color: #00ffff; z-index: 2; animation: netrun-2 4s infinite; }
@keyframes netrun-1 { 0%, 90%, 100% { opacity: 0; clip-path: inset(0); } 91% { opacity: 1; transform: translate(-10px, 4px); clip-path: inset(10% 0 70% 0); } 95% { opacity: 0; } }
@keyframes netrun-2 { 0%, 90%, 100% { opacity: 0; clip-path: inset(0); } 92% { opacity: 1; transform: translate(10px, -4px); clip-path: inset(20% 0 60% 0); } 96% { opacity: 0; } }

.column-transition { transition: all 0.8s cubic-bezier(0.85, 0, 0.15, 1); }
.expanded-full { position: fixed !important; inset: 0 !important; width: 100vw !important; height: 100vh !important; z-index: 100; flex-direction: column !important; }
.hidden-column { display: none !important; }
.pillar-front { transition: opacity 0.4s ease, transform 0.4s ease; }
.show-content .pillar-front { opacity: 0; transform: scale(0.8); pointer-events: none; }
.back-btn { opacity: 0; transition: opacity 0.5s ease 0.8s; }
.show-content .back-btn { opacity: 1; }

.skill-card { transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.skill-card:hover { transform: translateY(-10px) scale(1.05); box-shadow: 0 0 30px rgba(220, 38, 38, 0.15); border-color: #dc2626; }
.skills-grid-dense { display: grid; grid-template-columns: repeat(auto-fill, minmax(35px, 1fr)); gap: 1rem; }
.skill-icon-compact { width: 2rem; height: 2rem; filter: grayscale(1) opacity(0.6); transition: all 0.3s ease; }
.skill-card:hover .skill-icon-compact { filter: grayscale(0) opacity(1); transform: scale(1.2); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #dc2626; }

.fade-transition { transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.view-hidden { opacity: 0; transform: translateY(20px); pointer-events: none; position: absolute; width: 100%; visibility: hidden; }
.view-active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; visibility: visible; }

.game-thumb-card { 
    cursor: pointer; 
    border: 3px solid transparent; 
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    background-color: #000;
}
.game-thumb-card:hover { 
    border-color: #fff; 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6); 
    transform: translateY(-8px) scale(1.02); 
}
.game-thumb-card img { 
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease; 
    opacity: 0.85;
}
.game-thumb-card:hover img { 
    transform: scale(1.1); 
    opacity: 1;
}
.thumb-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
    transition: background 0.5s ease;
}
.game-thumb-card:hover .thumb-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}