/* IAMCP Brand Guidelines Implementation */
/* Typography: Segoe UI for digital, Segoe Pro fallback */
@font-face {
    font-family: 'Segoe Pro';
    src: url('fonts/SegoePro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe Pro';
    src: url('fonts/SegoePro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* Neo-Brutalist Custom Styles */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border: 1px solid #d946ef;
}

::-webkit-scrollbar-thumb:hover {
    background: #d946ef;
}

/* Range Slider Styling */
input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border: 2px solid #d946ef;
    background: #000;
    cursor: pointer;
    margin-top: -8px;
    box-shadow: 4px 4px 0 #d946ef;
    transition: all 0.1s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #d946ef;
}

input[type=range]::-webkit-slider-thumb:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #d946ef;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #333;
    border: 1px solid #555;
}

input[type=range]:focus {
    outline: none;
}

/* Canvas Loading Overlay */
.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    border: 2px solid #d946ef;
    padding: 1rem 2rem;
    box-shadow: 4px 4px 0 #d946ef;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    color: #fff;
    z-index: 10;
}

.loading.hidden {
    display: none;
}

/* Utilities */
.text-stroke {
    -webkit-text-stroke: 1px #d946ef;
    color: transparent;
}

.text-stroke-white {
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}