:root {
    --bg: #030303;
    --panel: #0a0a0a;
    --neon: #00ff41;
    --gold: #ffd700;
    --accent: #f2f2f2;
    --dim: #555;
    --grid-line: rgba(255, 255, 255, 0.05);
    --font-mono: 'Space Mono', monospace;
    --font-head: 'Syncopate', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* HACKER SELECTION COLOR */
::selection {
    background: var(--neon);
    color: var(--bg);
    text-shadow: none;
}

body {
    background-color: var(--bg);
    color: var(--accent);
    font-family: var(--font-mono);
    line-height: 1.5;
    overflow-x: hidden;
    cursor: default;
}

/* ANIMATED BACKGROUND GRID */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background-image:
            linear-gradient(var(--grid-line) 1px, transparent 1px),
            linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0;
    animation: gridFadeIn 2s ease-out 0.5s forwards;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridFadeIn {
    to { opacity: 0.5; }
}

/* SCANLINE EFFECT */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(transparent, var(--neon), transparent);
    opacity: 0.2;
    animation: scan 12s linear infinite;
    pointer-events: none;
    z-index: 99;
}

@keyframes scan {
    0%, 100% { top: -10px; opacity: 0.2; }
    50% { opacity: 0.4; }
    100% { top: 100%; }
}

/* HUD NAVIGATION */
.hud-top {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ensure vertical alignment */
    padding: 15px 30px;
    background: rgba(3,3,3,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grid-line);
    z-index: 100;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(-100%);
    animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hud-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
}

.separator {
    color: var(--dim);
    margin: 0 5px;
}

/* CHESS BADGE STYLING */
.sys-stat-link {
    text-decoration: none;
    color: var(--accent); /* Matches normal text */
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sys-stat-link i {
    color: var(--dim); /* Dim icon by default */
    transition: color 0.3s ease;
}

.sys-stat-link:hover {
    color: var(--neon);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.6);
}

.sys-stat-link:hover i {
    color: var(--neon);
}

.elo-counter {
    font-weight: bold;
}

/* SYSTEM STATUS */
.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--neon);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 5px var(--neon);
    }
    50% {
        opacity: 0.5;
        box-shadow: 0 0 20px var(--neon);
    }
}

.status-text {
    animation: colorShift 3s ease-in-out infinite;
}

@keyframes colorShift {
    0%, 100% { color: var(--neon); }
    50% { color: var(--accent); }
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    text-decoration: none;
    color: var(--dim);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem; /* Slightly smaller than main hud */
}

.social-links a i {
    transition: transform 0.3s ease;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon);
    transition: width 0.3s ease;
}

.social-links a:hover {
    color: var(--neon);
}

.social-links a:hover i {
    transform: translateY(-2px);
}

.social-links a:hover::after {
    width: 100%;
}

/* LAYOUT */
.container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-divider {
    border-bottom: 1px solid var(--dim);
    line-height: 0.1em;
    margin: 80px 0 40px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-divider.revealed {
    opacity: 1;
    transform: scaleX(1);
}

.section-divider span {
    background: var(--bg);
    padding-right: 20px;
    color: var(--dim);
    font-size: 0.8rem;
    position: relative;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: none; }
    50% { text-shadow: 0 0 10px rgba(0, 255, 65, 0.3); }
}

/* PROFILE SECTION */
.profile-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 80px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.photo-frame {
    position: relative;
    padding: 10px;
    border: 1px solid var(--dim);
    transition: all 0.4s ease;
}

.photo-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--neon);
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.4s ease;
    pointer-events: none;
}

.photo-frame:hover::before {
    opacity: 1;
    transform: scale(1);
}

.img-container {
    width: 280px;
    height: 350px;
    overflow: hidden;
    position: relative;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.6s ease;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scan-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 40%, rgba(0, 255, 65, 0.1) 50%, transparent 60%);
    animation: photoScan 3s linear infinite;
    pointer-events: none;
}

@keyframes photoScan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.photo-frame:hover .img-container {
    filter: grayscale(0%);
}

.caption {
    margin-top: 10px;
    font-size: 0.7rem;
    color: var(--dim);
    border-top: 1px dashed var(--dim);
    padding-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.caption-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon), transparent);
    margin: 0 10px;
}

.profile-data {
    max-width: 600px;
}

/* NAME DECODING ANIMATION */
.name-section {
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
}

.name-section:hover .decode-status {
    color: var(--accent);
    transform: translateX(5px);
}

.decode-status {
    font-size: 0.75rem;
    color: var(--neon);
    font-family: var(--font-head);
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.8s forwards;
    transition: all 0.3s ease;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.decode-status i {
    margin-right: 8px;
}

.decode-status.decrypting {
    color: #ffd700;
    animation: statusPulse 0.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.decode-status.decoded {
    color: var(--neon);
}

.decoded-name {
    font-family: var(--font-head);
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
    font-weight: 700;
}

/* SUB HEADER */
.sub-header {
    font-size: 1.2rem;
    color: var(--neon);
    margin-bottom: 40px;
    overflow: hidden;
}

.role-text,
.divider {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.role-text:nth-child(1) { animation: slideUp 0.6s ease-out 1.8s forwards; }
.divider { animation: slideUp 0.6s ease-out 1.95s forwards; }
.role-text:nth-child(3) { animation: slideUp 0.6s ease-out 2.1s forwards; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GPA DISPLAY WITH ENHANCED VISUALS */
.stats-row {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    padding: 30px 0;
}

.stat-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
}

.stat-box .label {
    font-size: 0.75rem;
    color: var(--dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.stat-box:hover .label {
    color: var(--neon);
}

.stat-box .label i {
    color: var(--neon);
}

.gpa-display {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--grid-line);
    padding: 25px;
    border-radius: 4px;
    min-height: 140px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-box:hover .gpa-display {
    border-color: var(--neon);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

/* Lock Overlay */
.gpa-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 10;
    transition: opacity 0.5s ease;
}

.gpa-lock-overlay i {
    font-size: 2rem;
    color: var(--dim);
    animation: fingerprint 2s ease-in-out infinite;
}

@keyframes fingerprint {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.gpa-lock-overlay span {
    font-size: 0.7rem;
    color: var(--dim);
    letter-spacing: 1px;
}

/* Particles */
.gpa-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--neon);
    border-radius: 50%;
    bottom: 0;
    animation: particleRise 2s ease-out forwards;
    opacity: 0;
}

@keyframes particleRise {
    0% {
        bottom: 0;
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
    }
}

.gpa-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 15px;
}

.gpa-value {
    font-size: 2.5rem;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--neon);
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    min-width: 100px;
}

.gpa-value.complete {
    animation: completePulse 0.8s ease-out;
}

@keyframes completePulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    }
    50% {
        transform: scale(1.15);
        text-shadow: 0 0 40px rgba(0, 255, 65, 1);
    }
}

.gpa-max {
    font-size: 1.2rem;
    color: var(--dim);
}

/* GPA Breakdown Segments */
.gpa-breakdown {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 4px;
    height: 8px;
}

.segment {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--grid-line);
    position: relative;
    overflow: hidden;
}

.segment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neon);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.segment.active::before {
    transform: scaleX(1);
}

.segment.active {
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

/* ACADEMIC TREE */
.academic-tree {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.award-spotlight {
    background: radial-gradient(circle at top right, rgba(0,255,65,0.08), transparent);
    border: 1px solid var(--neon);
    padding: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.award-spotlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,255,65,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;

    /* FIX: Allows clicks to pass through the background glow */
    pointer-events: none;
    z-index: 0;
}

.award-spotlight:hover::before {
    opacity: 1;
}

.award-spotlight:hover {
    background: radial-gradient(circle at top right, rgba(0,255,65,0.15), transparent);
    box-shadow: 0 10px 40px rgba(0,255,65,0.2);
    transform: translateY(-5px);
}

/* FIX: Ensure content sits above the background */
.spotlight-content {
    position: relative;
    z-index: 2;
}

.crown-icon {
    font-size: 3rem;
    color: var(--gold);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));

    /* FIX: Ensure icon sits above background */
    position: relative;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.spotlight-content .rank {
    font-family: var(--font-head);
    font-size: 0.8rem;
    color: var(--neon);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.spotlight-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.1;
}

.spotlight-content h3 a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed var(--neon);
    transition: all 0.3s ease;
}

.spotlight-content h3 a:hover {
    border-bottom: 1px solid var(--neon);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.spotlight-content .uni {
    color: var(--dim);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

.spotlight-content p {
    color: #ccc;
    font-size: 0.9rem;
}

/* DIRECTORY SYSTEM */
.directory-system {
    border-left: 1px solid var(--dim);
    padding-left: 40px;
}

.dir-header {
    color: var(--dim);
    font-size: 0.8rem;
    margin-bottom: 25px;
    font-family: var(--font-head);
}

.folder {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.folder.revealed {
    opacity: 1;
    transform: translateX(0);
}

.folder:nth-child(2) { transition-delay: 0.1s; }
.folder:nth-child(3) { transition-delay: 0.2s; }
.folder:nth-child(4) { transition-delay: 0.3s; }

.folder-name {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.folder-name:hover {
    color: var(--neon);
}

/* BLINKING UNDERSCORE CURSOR ON HOVER */
.folder-name:hover::after,
.cert-header:hover::after {
    content: '_';
    animation: blink 1s step-end infinite;
    color: var(--neon);
    margin-left: 5px;
}

.folder-name i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.folder-name:hover i {
    transform: scale(1.2);
}

.folder-sub {
    opacity: 0.5;
    font-size: 0.8em;
    margin-left: 10px;
}

.file-list {
    list-style: none;
    padding-left: 28px;
    border-left: 1px dashed #333;
    margin-left: 8px;
}

.file-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #888;
    position: relative;
    transition: all 0.3s ease;
    padding-left: 5px;
}

.file-list li:hover {
    color: var(--accent);
    padding-left: 10px;
}

.file-list li::before {
    content: '>';
    position: absolute;
    left: -15px;
    color: var(--dim);
    transition: color 0.3s ease;
}

.file-list li:hover::before {
    color: var(--neon);
}

.f-icon {
    color: var(--dim);
    margin-right: 8px;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.file-list li:hover .f-icon {
    color: var(--neon);
}

/* PRIMARY CERTIFICATIONS */
.cert-grid-centered {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cert-grid-centered .cert-card {
    width: 100%;
    max-width: 350px;
    flex: 1 1 300px;
}

.cert-card {
    border: 1px solid var(--grid-line);
    padding: 30px;
    background: var(--panel);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.cert-card.revealed {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.cert-card:nth-child(2) {
    transition-delay: 0.2s;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.8s ease;
}

.cert-card:hover::before {
    left: 100%;
}

.cert-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--dim);
    opacity: 0.2;
    transition: all 0.4s ease;
}

.cert-card:hover .cert-badge {
    opacity: 0.6;
    transform: rotate(360deg) scale(1.2);
    color: var(--neon);
}

.gold-border {
    border-color: var(--gold);
}

.gold-border .cert-badge {
    color: var(--gold);
}

.cert-card:hover {
    background: #111;
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.cert-header {
    font-size: 0.7rem;
    color: var(--dim);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cert-name {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #fff;
}

.cert-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cert-name a:hover {
    color: var(--neon);
}

.cert-meta {
    font-size: 0.75rem;
    color: #888;
}

.status-active {
    color: var(--neon);
    font-weight: 700;
}

/* TECHNICAL ARSENAL */
.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.arsenal-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255,255,255,0.02);
    padding: 25px;
    border: 1px solid #222;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-30px);
}

.arsenal-card.revealed {
    opacity: 1;
    transform: translateX(0);
}

.arsenal-card:nth-child(2) { transition-delay: 0.15s; }
.arsenal-card:nth-child(3) { transition-delay: 0.3s; }

.arsenal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0,255,65,0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.arsenal-card:hover .arsenal-glow {
    opacity: 1;
}

.arsenal-card:hover {
    border-color: var(--neon);
    background: rgba(0,255,65,0.05);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(0,255,65,0.1);
}

.a-icon {
    font-size: 1.8rem;
    color: var(--dim);
    margin-top: 3px;
    transition: all 0.4s ease;
}

.arsenal-card:hover .a-icon {
    color: var(--neon);
    transform: scale(1.1) rotate(5deg);
}

.a-info h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #ddd;
    transition: color 0.3s ease;
}

.arsenal-card:hover .a-info h4 {
    color: #fff;
}

.a-info h4 a {
    color: inherit;
    text-decoration: none;
}

.a-source {
    display: block;
    font-size: 0.75rem;
    color: var(--dim);
    margin-bottom: 5px;
    font-weight: 700;
}

.a-status {
    display: block;
    font-size: 0.7rem;
    color: #666;
    font-style: italic;
}

/* FOOTER */
.hud-footer {
    border-top: 1px solid var(--dim);
    padding: 40px;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: #050505;
    font-size: 0.8rem;
    color: var(--dim);
}

.status-blink {
    animation: blink 1.5s step-end infinite;
    color: var(--neon);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .profile-grid {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .academic-tree {
        grid-template-columns: 1fr;
    }

    .directory-system {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--dim);
        padding-top: 30px;
    }

    .decoded-name {
        font-size: 2.5rem;
    }

    .hud-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }

    .hud-left {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-links a {
        margin: 0 10px;
    }

    .hud-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .img-container {
        width: 100%;
        max-width: 280px;
    }

    .cert-card {
        max-width: 100%;
    }

    .arsenal-grid {
        grid-template-columns: 1fr;
    }

    .decoded-name {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .gpa-value {
        font-size: 2rem;
    }
}

.admin-tag {
    color: var(--neon);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
    animation: adminPulse 2s ease-in-out infinite;
}

@keyframes adminPulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 5px rgba(0, 255, 65, 0.5); }
    50% { opacity: 0.8; text-shadow: 0 0 15px rgba(0, 255, 65, 0.8); }
}

/* PREFERS REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    .scanline, .grid-overlay, .gpa-particles {
        display: none;
    }
    * {
        animation-duration: 0s !important;
        transition-duration: 0s !important;
    }
}