/* Custom Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Plus+Jakarta+Sans:wght@700&display=swap');

body {
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

/* Glassmorphism Components */
.glass-card, .glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(59, 130, 246, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

/* Form Inputs */
.otp-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    transition: all 0.2s ease;
}

.otp-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

/* Buttons */
.submit-btn {
    background-color: #ffffff;
    color: #000000;
    transition: transform 0.1s ease, opacity 0.2s ease;
}

.submit-btn:hover {
    opacity: 0.9;
}

.submit-btn:active {
    transform: scale(0.98);
}

.back-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* Header & Layout */
.header-bar {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    position: sticky;
    top: 0;
    width: 100%;
}

.deck-mask {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    height: calc(100vh - 50px);
}

.deck-mask iframe {
    position: absolute;
    top: -48px;
    left: 0;
    width: 100%;
    height: calc(100% + 48px);
    border: none;
}

/* Maintenance Specific */
.timer-font {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
}

.progress-bg {
    background: rgba(255, 255, 255, 0.05);
    height: 8px;
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transition: width 0.5s ease-out;
}