/**
 * CHOKYO Corporate Website - Products Page Specific Styles
 */

/* Glass panel for product showcase */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 102, 255, 0.1);
    box-shadow: 0 10px 40px -10px rgba(0, 102, 255, 0.05);
}

/* Tech badge style */
.tech-badge {
    font-family: 'Rajdhani', sans-serif;
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.3);
    color: #0066ff;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
}

/* Serial number decoration */
.serial-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 102, 255, 0.03);
    position: absolute;
    line-height: 1;
    z-index: 0;
    user-select: none;
}

/* Horizontal scan animation */
@keyframes scanHorizontal {
    0% {
        left: -10%;
    }
    100% {
        left: 110%;
    }
}

.animate-scan-horizontal {
    animation: scanHorizontal 4s linear infinite;
}

