.cyber-bg-container {
    background-image: url('../techno_bg.png');
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.7);
    transform: scale(1.05);
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hexagon-clip {
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
}

.bezel-input {
    clip-path: polygon(0 0, 95% 0, 100% 30%, 100% 100%, 5% 100%, 0 70%);
}

.glass-panel {
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.neon-text-premium {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(242, 127, 13, 0.2);
    background: linear-gradient(to bottom, #1a1c20, #000000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.1));
}

body {
    min-height: max(884px, 100dvh);
}

.neon-btn {
    font-size: 1.5rem;
    width: 75%;
    text-align: center;
    position: relative;
    cursor: pointer;
    border: #f27f0d 0.125em solid;
    padding: 0.5em 0;
    border-radius: 0.25em;
    color: #f27f0d;
    background: transparent;
    font-weight: 900;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    text-shadow: 
        0 0 .125em rgba(255,255,255,0.3),
        0 0 .3em #f27f0d;
    box-shadow: 
        inset 0 0 .3em 0 #f27f0d,
        0 0 .3em 0 #f27f0d;
    transition: all 0.2s ease-in-out;
}

.neon-btn::before {
    content: "";
    position: absolute;
    top: 140%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f27f0d;
    transform: 
        perspective(1.2em)
        rotateX(40deg) 
        scale(1.1, 0.35);
    filter: blur(1.2em);
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 100ms linear;
}

.neon-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f27f0d;
    box-shadow: 0 0 1.5em #f27f0d;
    z-index: -1;
    opacity: 0;
    transition: opacity 100ms linear;
}

.neon-btn:hover::after,
.neon-btn:focus::after {
    opacity: 1;
}

.neon-btn:hover, 
.neon-btn:focus {
    color: #0d1117;
    text-shadow: none;
    background: #f27f0d;
    box-shadow: 0 0 2.5em #f27f0d;
}

.neon-btn:hover::before,
.neon-btn:focus::before {
    opacity: 0.6;
}

.neon-btn:active {
    transform: scale(0.98);
}
