@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&display=swap');

body {
    background-color: #020617;
    background-image:
        radial-gradient(circle at 50% 0%, #1e293b 0%, transparent 70%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    color: #e2e8f0;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

/* Scanline effect */
body::after {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

.glass-panel {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Tech Corners */
.tech-corners {
    position: relative;
}

.tech-corners::before,
.tech-corners::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #FF9F1C;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -60px;
    margin-top: -10px;
    /* Orange for Break-in Timer */
    transition: all 0.3s ease;
}

.tech-corners::before {
    top: -1px;
    left: -1px;
    border-right: 0;
    border-bottom: 0;
}

.tech-corners::after {
    bottom: -1px;
    right: -1px;
    border-left: 0;
    border-top: 0;
}

/* Progress ring */
.progress-ring__circle {
    transition: stroke-dashoffset 1s linear;
    transform: rotate(-90deg);
    transform-origin: 128px 128px;
}