@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 #2EC4B6;
    transition: all 0.3s ease;
    margin-bottom: -130px;
}

.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;

}

/* Seek Slider Customization for Tailwind layout */
.seek-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
}

.seek-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #FF9F1C;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 159, 28, 0.5);
}

/* Volume Slider */
input[type=range].volume-slider {
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
}

input[type=range].volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: #2EC4B6;
    border-radius: 50%;
    cursor: pointer;
}

/* Carousel Scrollbar Hide */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}