@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 246, 255, 0.5), 0 0 40px rgba(181, 55, 242, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 246, 255, 0.8), 0 0 60px rgba(181, 55, 242, 0.5); }
}
.glow-box {
    animation: glow 3s ease-in-out infinite;
}
.gradient-text {
    background: linear-gradient(135deg, #00f6ff 0%, #b537f2 50%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 246, 255, 0.3);
}

/* Bluescreen styles */
#bluescreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0078d7;
    z-index: 9999;
    padding: 60px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    overflow: auto;
}
#bluescreen.show {
    display: block;
}
.bsod-face {
    font-size: 120px;
    margin-bottom: 30px;
}
.bsod-text {
    font-size: 28px;
    margin-bottom: 20px;
}
.bsod-detail {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 40px;
}
.bsod-progress {
    font-size: 24px;
    margin-top: 60px;
}