/* DEV MODE STYLES */
.dev-mode-btn {
    position: fixed;
    bottom: 140px;
    right: 20px;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dev-mode-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    color: white;
}

.dev-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 20000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.dev-modal-content {
    background: #1e293b;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #3b82f6;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    width: 300px;
    font-family: 'Inter', sans-serif;
}

.dev-modal-input {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    background: #0f172a;
    border: 1px solid #334155;
    color: white;
    border-radius: 6px;
    text-align: center;
}

.dev-modal-btn {
    width: 100%;
    padding: 10px;
    background: #3b82f6;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    transition: background 0.2s;
}

.dev-modal-btn:hover {
    background: #2563eb;
}

.dev-reset-btn {
    width: 100%;
    padding: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.dev-reset-btn:hover {
    background: rgba(239, 68, 68, 0.2);
}
